From 4e52cbd957d004777f18da52077f5db0122c345e Mon Sep 17 00:00:00 2001 From: Erica Fischer Date: Mon, 12 Feb 2024 10:58:49 -0800 Subject: [PATCH] Drop or retain whole multiplier clusters when dropping as needed (#198) * Prep to track conditions other than just "dropped" or "kept" * Count up instead of down * Drop or retain whole multiplier clusters based on their first feature * Calculate a global feature dropping sequence * Switch over to using the drop sequence for drop-fraction * Remove unused arguments for the old drop-fraction implementation * Fix copy-and-paste bugs, update tests * Properly incorporate feature_minzoom into the drop sequence, I hope * Rename drop_by to drop_sequence * See if sorting within clusters fixes filter stability between zooms * Remove very chatty debug print * Update changelog and version * Use named constants instead of numbers for feature dropping/keeping * Add comment to explain purpose and method of bit reversal --- CHANGELOG.md | 6 + mvt.hpp | 2 +- plugin.cpp | 4 +- serial.cpp | 15 +- serial.hpp | 11 +- .../-z0_-O200_--drop-fraction-as-needed.json | 378 +- tests/muni/out/-Z11_-z13_-M10000_-ad.json | 1650 +-- tests/muni/out/-Z11_-z13_-M10000_-pd.json | 852 +- ..._10_-M10000_--drop-smallest-as-needed.json | 11116 ++++++++-------- ..._-zg_-M5000_--drop-fraction-as-needed.json | 568 +- .../-ae_-zg_-M5000_--force-feature-limit.json | 328 +- ..._-M5000_--coalesce-fraction-as-needed.json | 646 +- ...n-points-multiplier_3_--order-by_NAME.json | 68 +- ...s-multiplier_3_--preserve-input-order.json | 68 +- text.cpp | 28 + text.hpp | 1 + tile.cpp | 382 +- unit.cpp | 6 + version.hpp | 2 +- write_json.cpp | 7 +- 20 files changed, 7238 insertions(+), 8900 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21786d896..5666c996e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 2.43.0 + +* Change -fraction-as-needed feature dropping to be consistent across tiles and zoom levels, and to follow the same pattern as point dropping by zoom level +* With -as-needed feature dropping, drop or retain entire multiplier clusters instead of individual features +* Sort the features within each multiplier cluster by its retention priority, for more consistency between zoom levels in filtered feature choice + # 2.42.0 * Improve tiling speed diff --git a/mvt.hpp b/mvt.hpp index 1d7dcbea2..b6d5dbbe7 100644 --- a/mvt.hpp +++ b/mvt.hpp @@ -54,7 +54,7 @@ struct mvt_feature { int /* mvt_geometry_type */ type = 0; unsigned long long id = 0; bool has_id = false; - bool dropped = false; + int dropped = 0; size_t seq = 0; // used for ordering in overzoom mvt_feature() { diff --git a/plugin.cpp b/plugin.cpp index f867dd3cf..73b682820 100644 --- a/plugin.cpp +++ b/plugin.cpp @@ -428,7 +428,9 @@ serial_feature parse_feature(json_pull *jp, int z, unsigned x, unsigned y, std:: json_object *dropped = json_hash_get(tippecanoe, "dropped"); if (dropped != NULL && dropped->type == JSON_TRUE) { - sf.dropped = true; + sf.dropped = FEATURE_DROPPED; // dropped + } else { + sf.dropped = FEATURE_KEPT; // kept } } diff --git a/serial.cpp b/serial.cpp index 04cc1eb3f..83f114496 100644 --- a/serial.cpp +++ b/serial.cpp @@ -709,7 +709,20 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf, std:: } } - if (additional[A_DROP_DENSEST_AS_NEEDED] || additional[A_COALESCE_DENSEST_AS_NEEDED] || additional[A_CLUSTER_DENSEST_AS_NEEDED] || additional[A_CALCULATE_FEATURE_DENSITY] || additional[A_DROP_SMALLEST_AS_NEEDED] || additional[A_COALESCE_SMALLEST_AS_NEEDED] || additional[A_INCREASE_GAMMA_AS_NEEDED] || additional[A_GENERATE_POLYGON_LABEL_POINTS] || sst->uses_gamma || cluster_distance != 0) { + if (additional[A_DROP_DENSEST_AS_NEEDED] || + additional[A_COALESCE_DENSEST_AS_NEEDED] || + additional[A_CLUSTER_DENSEST_AS_NEEDED] || + additional[A_CALCULATE_FEATURE_DENSITY] || + additional[A_DROP_SMALLEST_AS_NEEDED] || + additional[A_COALESCE_SMALLEST_AS_NEEDED] || + additional[A_DROP_FRACTION_AS_NEEDED] || + additional[A_COALESCE_FRACTION_AS_NEEDED] || + prevent[P_DYNAMIC_DROP] || + additional[A_INCREASE_GAMMA_AS_NEEDED] || + additional[A_GENERATE_POLYGON_LABEL_POINTS] || + sst->uses_gamma || + retain_points_multiplier > 1 || + cluster_distance != 0) { sf.index = bbox_index; } else { sf.index = 0; diff --git a/serial.hpp b/serial.hpp index ba30d8066..2d47f672d 100644 --- a/serial.hpp +++ b/serial.hpp @@ -89,9 +89,16 @@ struct serial_feature { // to be provided by frontends: long long bbox[4] = {0, 0, 0, 0}; - bool dropped = false; // was this feature dropped by rate? - drawvec edge_nodes; // what nodes at the tile edge were added during clipping? + drawvec edge_nodes; // what nodes at the tile edge were added during clipping? +#define FEATURE_DROPPED -1 +#define FEATURE_KEPT 0 + // <0: dropped + // 0: kept + // >0: sequence number of additional feature kept by retain-points-multiplier + int dropped = FEATURE_DROPPED; // was this feature dropped by rate? + + // unsigned long long drop_by; // dot-dropping priority bool reduced; // is polygon dust bool coalesced; // was coalesced from multiple features int line_detail; // current tile resolution being used for simplification diff --git a/tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json b/tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json index 03d9213fd..d9447d25e 100644 --- a/tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json +++ b/tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json @@ -9,389 +9,13 @@ "maxzoom": "0", "minzoom": "0", "name": "tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_as_needed\":811,\"feature_count_desired\":1000}]", +"strategies": "[{\"dropped_as_needed\":999,\"feature_count_desired\":1000}]", "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": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.966797, 0.966751 ] } } ] } ] } ] } diff --git a/tests/muni/out/-Z11_-z13_-M10000_-ad.json b/tests/muni/out/-Z11_-z13_-M10000_-ad.json index 5d327d2a6..c670d25b6 100644 --- a/tests/muni/out/-Z11_-z13_-M10000_-ad.json +++ b/tests/muni/out/-Z11_-z13_-M10000_-ad.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M10000_-ad.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4080,\"dropped_as_needed\":101,\"tile_size_desired\":10887},{\"dropped_by_rate\":2974,\"dropped_as_needed\":231,\"tile_size_desired\":10721},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4080,\"dropped_as_needed\":233,\"tile_size_desired\":10887},{\"dropped_by_rate\":2974,\"dropped_as_needed\":606,\"tile_size_desired\":10721},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -25,20 +25,16 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +, { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } -, { "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721068 ] } } -, { "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719711 ] } } @@ -61,9 +57,7 @@ , { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } -, -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , @@ -85,37 +79,35 @@ , { "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } -, { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } , +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713260 ] } } +, { "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } , { "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710273 ] } } , { "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } -, { "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714143 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714686 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708643 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +, { "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714754 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714143 ] } } -, { "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } , @@ -123,28 +115,20 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } -, -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } -, { "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712004 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.710477 ] } } -, { "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } -, { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } -, { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.713838 ] } } , +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +, { "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713193 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } @@ -159,12 +143,10 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } , { "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } -, { "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } ] } ] } @@ -173,6 +155,8 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } +, { "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483268, 37.832836 ] } } , { "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } @@ -185,105 +169,69 @@ , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803749 ] } } -, { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } -, { "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800324 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800324 ] } } , { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790693 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791168 ] } } -, { "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.800358 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805410 ] } } +, { "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805105 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799713 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796797 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } -, { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } -, -{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795848 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792728 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794152 ] } } , { "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } -, { "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512021, 37.779025 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } -, { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.771597 ] } } -, { "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } -, { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } -, { "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } -, { "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779568 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781875 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775905 ] } } -, { "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } -, { "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.780247 ] } } -, -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782214 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.780247 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484469, 37.778042 ] } } , @@ -293,93 +241,73 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +, { "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.764744 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488246, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758875 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755414 ] } } -, { "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492623, 37.753446 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765117 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480350, 37.765185 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765355 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761317 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757857 ] } } -, { "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.757755 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } , +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753955 ] } } +, { "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754124 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752903 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745573 ] } } -, { "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753106 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747542 ] } } -, { "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498975, 37.734136 ] } } -, { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495027, 37.751783 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } , +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744216 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742316 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494254, 37.738616 ] } } -, { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } , { "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746456 ] } } -, { "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733899 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } -, { "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } -, -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727111 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } , @@ -389,46 +317,38 @@ , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780518 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } -, { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782892 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.776787 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773055 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } , { "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783197 ] } } -, { "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780857 ] } } , { "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786046 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781061 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.775430 ] } } -, { "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774616 ] } } -, { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } , { "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765999 ] } } @@ -443,26 +363,18 @@ , { "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758196 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } -, { "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763726 ] } } -, { "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } -, { "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.782248 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787369 ] } } @@ -473,45 +385,31 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.775396 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } -, -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778754 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.778754 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778924 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773937 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774175 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785131 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779500 ] } } -, { "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } -, -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } -, { "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781061 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781535 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777804 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.774718 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773191 ] } } -, { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } -, -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.769324 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } , @@ -527,7 +425,7 @@ , { "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , { "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } , @@ -535,10 +433,10 @@ , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.761182 ] } } -, { "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } , +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.758230 ] } } +, { "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766474 ] } } @@ -551,6 +449,8 @@ , { "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } , +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +, { "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.762641 ] } } , { "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760469 ] } } @@ -565,6 +465,8 @@ , { "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } , +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748729 ] } } +, { "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748899 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749102 ] } } @@ -575,11 +477,9 @@ , { "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743130 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } -, { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740992 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } , @@ -587,30 +487,22 @@ , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751478 ] } } -, { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747881 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745777 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740211 ] } } -, { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741976 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734713 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , { "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471595, 37.734815 ] } } , { "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.731048 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731353 ] } } -, { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } @@ -621,17 +513,15 @@ , { "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719575 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } -, { "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } , @@ -645,7 +535,7 @@ , { "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445760, 37.750392 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } , { "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } , @@ -653,56 +543,42 @@ , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.746659 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } -, { "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738175 ] } } -, { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } +, { "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } , { "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } -, { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.751274 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749611 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } -, { "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } -, { "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } , { "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } -, { "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +, { "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.728502 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.731489 ] } } -, { "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723852 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } -, { "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } -, { "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } @@ -717,22 +593,12 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } -, -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } -, { "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733492 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } -, { "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723580 ] } } -, { "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } -, { "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.722392 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806359 ] } } @@ -743,35 +609,27 @@ , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805749 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805749 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800866 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.804834 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } -, { "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } , +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800459 ] } } +, { "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.790523 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796390 ] } } -, { "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793813 ] } } -, { "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793677 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422242, 37.790421 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } , @@ -781,14 +639,10 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } -, { "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.797441 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.802935 ] } } -, { "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.799883 ] } } , { "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800120 ] } } @@ -805,12 +659,12 @@ , { "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.790896 ] } } -, { "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789133 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795983 ] } } , +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +, { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796187 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.796560 ] } } @@ -831,61 +685,43 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801070 ] } } -, { "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805003 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801273 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793847 ] } } -, { "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.793236 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789133 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789472 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795712 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792931 ] } } -, -{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } -, { "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788183 ] } } -, { "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792287 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798967 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795407 ] } } -, { "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } -, { "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } -, -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793474 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792999 ] } } , @@ -895,6 +731,8 @@ , { "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } , +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789947 ] } } +, { "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789811 ] } } , { "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } @@ -903,39 +741,25 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.789675 ] } } -, { "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818497 ] } } -, -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } -, { "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810360 ] } } -, { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.787810 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784656 ] } } -, { "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778618 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } -, { "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , @@ -947,20 +771,16 @@ , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780789 ] } } -, { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.786860 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785809 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787200 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } , { "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } @@ -973,21 +793,15 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } -, { "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.774921 ] } } , { "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778483 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779161 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } -, { "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } , @@ -995,41 +809,25 @@ , { "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764710 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.766780 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } -, { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } , { "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } -, { "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768442 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764981 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765728 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.760639 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } -, { "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } -, -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } , @@ -1037,56 +835,36 @@ , { "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.786589 ] } } -, -{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } , { "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } , { "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787640 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786352 ] } } -, -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.786080 ] } } -, { "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.780450 ] } } , { "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.777940 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778924 ] } } -, { "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773462 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } -, -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783299 ] } } -, { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , { "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775430 ] } } -, -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } -, { "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } , { "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } -, { "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } -, { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } , { "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } @@ -1099,56 +877,42 @@ , { "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755889 ] } } -, { "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } , { "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } , { "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756160 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } -, { "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.768544 ] } } -, { "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764439 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763353 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395978, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754667 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } -, { "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760537 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757789 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755685 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746524 ] } } , { "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751885 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } -, { "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742791 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742146 ] } } -, { "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736343 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.740992 ] } } @@ -1165,6 +929,8 @@ , { "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748220 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } @@ -1177,12 +943,12 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } , +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.739295 ] } } +, { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744352 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738922 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } -, { "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740076 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } @@ -1203,35 +969,23 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724734 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725413 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732270 ] } } -, { "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728808 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } -, { "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734917 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.725855 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } -, { "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738379 ] } } , @@ -1247,18 +1001,16 @@ , { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745981 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } -, { "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736852 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.739736 ] } } -, { "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736309 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740110 ] } } +, { "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405591, 37.734238 ] } } @@ -1273,8 +1025,6 @@ , { "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.723377 ] } } -, { "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } @@ -1287,9 +1037,9 @@ , { "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } , @@ -1303,73 +1053,57 @@ , { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } -, { "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722630 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } -, { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383146, 37.743707 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } -, { "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377181, 37.732711 ] } } -, -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } -, { "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730233 ] } } , { "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368684, 37.725345 ] } } , +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +, { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } , { "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } , { "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778686 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784283 ] } } ] } ] } , @@ -1378,6 +1112,8 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } ] } ] } , @@ -1385,12 +1121,8 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832378 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527235, 37.832582 ] } } -, { "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527664, 37.829057 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830480 ] } } -, { "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831328 ] } } ] } ] } @@ -1399,12 +1131,12 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718709 ] } } +, { "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719643 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } -, { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719694 ] } } , { "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719049 ] } } @@ -1413,21 +1145,15 @@ , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } -, { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } -, { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } -, { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716231 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716520 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.714873 ] } } , @@ -1435,31 +1161,25 @@ , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711206 ] } } -, { "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.715009 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } , { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716706 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716774 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } -, { "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715009 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.716893 ] } } -, { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714058 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713753 ] } } , { "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.714109 ] } } , @@ -1471,62 +1191,42 @@ , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.714330 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467368, 37.712514 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714194 ] } } , { "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467110, 37.711648 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711410 ] } } -, { "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711631 ] } } , { "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714228 ] } } -, { "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711274 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713142 ] } } -, { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710120 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.715976 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.714839 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458870, 37.711478 ] } } -, { "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713277 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.713328 ] } } -, { "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711699 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706114 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710290 ] } } , { "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457068, 37.707353 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } -, { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716061 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } -, { "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452133, 37.714143 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714703 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.712514 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708660 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709611 ] } } @@ -1537,35 +1237,25 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716469 ] } } , +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716401 ] } } +, { "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.715671 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.714771 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } -, -{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438228, 37.711156 ] } } -, { "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.716095 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.714143 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710154 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713311 ] } } -, { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.712836 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.711699 ] } } -, -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434580, 37.709492 ] } } -, { "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708864 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } ] } ] } , @@ -1573,37 +1263,25 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788471 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } -, { "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } -, { "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509897, 37.779890 ] } } -, { "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512043, 37.779025 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.773208 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.775176 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773649 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771682 ] } } -, -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779992 ] } } -, { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505519, 37.782129 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504103, 37.781824 ] } } -, { "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504232, 37.781010 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.779551 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.779653 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502987, 37.781078 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505949, 37.775209 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.779653 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775345 ] } } , @@ -1613,13 +1291,11 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771580 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503288, 37.771614 ] } } -, { "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.771783 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779280 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510283, 37.767882 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.771783 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , @@ -1631,23 +1307,15 @@ , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760350 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760367 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760384 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505820, 37.760486 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758654 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505734, 37.756771 ] } } -, { "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505434, 37.754752 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760758 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760673 ] } } -, -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } , { "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781790 ] } } , @@ -1655,26 +1323,18 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779789 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.779806 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779738 ] } } -, { "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.779568 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783791 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490499, 37.783672 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779721 ] } } -, { "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781892 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.781841 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497194, 37.775769 ] } } -, { "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493074, 37.777686 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494576, 37.775888 ] } } @@ -1693,7 +1353,7 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785690 ] } } , @@ -1705,16 +1365,12 @@ , { "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.780247 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } -, { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482688, 37.780077 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.782214 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477496, 37.782282 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.780586 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.778042 ] } } @@ -1723,24 +1379,18 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776464 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774548 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483804, 37.772513 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776566 ] } } -, { "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480607, 37.772648 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } -, { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476509, 37.772835 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764557 ] } } -, { "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494705, 37.764744 ] } } , +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764727 ] } } +, { "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488267, 37.765032 ] } } , { "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.760825 ] } } @@ -1749,13 +1399,11 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495520, 37.758892 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761029 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757263 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755397 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495306, 37.753531 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492645, 37.753446 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761165 ] } } , @@ -1763,26 +1411,20 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } -, { "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486122, 37.765134 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.765100 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } -, { "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480371, 37.765185 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765372 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765372 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765202 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } -, { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761300 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.761453 ] } } @@ -1793,22 +1435,14 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753870 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } -, { "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761606 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761775 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761572 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.756008 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.757891 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753972 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476680, 37.756211 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476294, 37.754107 ] } } , { "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752784 ] } } @@ -1817,11 +1451,7 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752818 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753123 ] } } -, -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507536, 37.745438 ] } } -, -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505090, 37.747457 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749323 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504961, 37.745590 ] } } , @@ -1829,36 +1459,28 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500155, 37.753123 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498009, 37.753208 ] } } -, { "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499812, 37.747542 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497623, 37.747626 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504704, 37.741857 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504532, 37.741688 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } -, { "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505305, 37.738073 ] } } , { "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736122 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502601, 37.741807 ] } } -, { "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500198, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498052, 37.742112 ] } } -, { "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505348, 37.735528 ] } } , +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } +, { "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735002 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498953, 37.734120 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.728214 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499211, 37.731150 ] } } -, { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753327 ] } } @@ -1867,44 +1489,32 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745964 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.747762 ] } } -, { "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493331, 37.747830 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489040, 37.748000 ] } } -, { "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.747983 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } , +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494662, 37.744216 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494533, 37.742349 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742299 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494340, 37.742112 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494276, 37.738616 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736529 ] } } -, -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } -, { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487538, 37.742638 ] } } , +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742451 ] } } +, { "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748271 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484577, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483461, 37.748271 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } @@ -1913,7 +1523,7 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748712 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746473 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742672 ] } } , @@ -1921,12 +1531,10 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742876 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475607, 37.743011 ] } } -, { "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496765, 37.733899 ] } } , +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.733695 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734781 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } @@ -1935,18 +1543,14 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } -, { "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733950 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483933, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482173, 37.734289 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477367, 37.734747 ] } } -, { "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.728027 ] } } , { "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478483, 37.728061 ] } } @@ -1959,66 +1563,50 @@ , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718692 ] } } , +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721832 ] } } +, { "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481229, 37.720729 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480028, 37.726907 ] } } -, { "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725973 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475908, 37.727009 ] } } -, { "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476852, 37.725973 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719626 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473247, 37.784503 ] } } -, { "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } , { "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471101, 37.784452 ] } } -, { "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.782485 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471144, 37.782689 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780518 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468956, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470586, 37.780840 ] } } , { "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466810, 37.784622 ] } } , { "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785012 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468998, 37.782790 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780976 ] } } -, { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.776770 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472217, 37.776889 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472131, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.776990 ] } } -, { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.773191 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773038 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.777058 ] } } -, { "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775260 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.775023 ] } } @@ -2027,17 +1615,13 @@ , { "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784876 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784707 ] } } -, { "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785690 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783214 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462561, 37.783079 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.781128 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461145, 37.781044 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780874 ] } } , { "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786029 ] } } , @@ -2047,8 +1631,6 @@ , { "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454493, 37.784113 ] } } -, { "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.783740 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.783062 ] } } @@ -2067,7 +1649,7 @@ , { "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.773734 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777075 ] } } , @@ -2077,8 +1659,6 @@ , { "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.774599 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454150, 37.772954 ] } } -, { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765609 ] } } @@ -2095,18 +1675,16 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766084 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764099 ] } } -, { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763913 ] } } , +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } +, { "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.762081 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761911 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758111 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.761792 ] } } -, { "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.759129 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.756364 ] } } @@ -2115,14 +1693,14 @@ , { "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469513, 37.761979 ] } } , +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.758196 ] } } +, { "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.758400 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465951, 37.760232 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.758366 ] } } -, { "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465694, 37.756500 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765948 ] } } @@ -2133,16 +1711,10 @@ , { "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762725 ] } } -, -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762793 ] } } -, { "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.764998 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.763302 ] } } -, { "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763709 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } @@ -2151,32 +1723,22 @@ , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.754650 ] } } -, -{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.755397 ] } } -, { "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755295 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786504 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450244, 37.786708 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448270, 37.784978 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.782231 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787183 ] } } -, { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.785232 ] } } , +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784537 ] } } +, { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.784758 ] } } @@ -2187,8 +1749,6 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782977 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.777753 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449644, 37.778347 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.775413 ] } } @@ -2201,15 +1761,13 @@ , { "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.778754 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778754 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } , { "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.777262 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778907 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.776939 ] } } , @@ -2223,23 +1781,13 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774192 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } -, { "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785148 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.785249 ] } } -, -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785521 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.779500 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783367 ] } } -, { "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439215, 37.781603 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437670, 37.783621 ] } } -, -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , @@ -2251,13 +1799,11 @@ , { "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781078 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.783011 ] } } -, { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432392, 37.781518 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779280 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.781502 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777313 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779280 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440159, 37.777516 ] } } , @@ -2265,42 +1811,30 @@ , { "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777855 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438228, 37.776753 ] } } -, { "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441490, 37.774565 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440546, 37.770749 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.774718 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773174 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435181, 37.778144 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.775142 ] } } -, { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775413 ] } } -, { "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.771766 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } , { "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451746, 37.769307 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453334, 37.768238 ] } } -, { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450759, 37.769443 ] } } -, -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769884 ] } } -, { "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450202, 37.766830 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } +, { "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764591 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449901, 37.765931 ] } } @@ -2311,31 +1845,21 @@ , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769935 ] } } -, -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } -, { "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769002 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767136 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.767254 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.770206 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.770511 ] } } -, { "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767339 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447927, 37.766152 ] } } -, { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445867, 37.765134 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } -, -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765813 ] } } , { "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761674 ] } } , @@ -2347,30 +1871,22 @@ , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446125, 37.758942 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758654 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761945 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.761199 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761792 ] } } -, { "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.757789 ] } } -, { "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758213 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.756449 ] } } -, -{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442992, 37.753989 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } , { "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.768832 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766491 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438142, 37.766847 ] } } -, { "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } @@ -2381,31 +1897,25 @@ , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.767390 ] } } -, { "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.764269 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762454 ] } } -, { "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764490 ] } } +, { "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761606 ] } } , { "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760486 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.760622 ] } } -, { "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759027 ] } } , { "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.754040 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757399 ] } } -, -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755804 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , { "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435138, 37.760944 ] } } , @@ -2417,11 +1927,9 @@ , { "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.757636 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } -, { "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748661 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.750799 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748712 ] } } , @@ -2429,35 +1937,25 @@ , { "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748899 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745081 ] } } -, { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467668, 37.749086 ] } } , { "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752716 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.750697 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469428, 37.748984 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.749153 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741484 ] } } -, { "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743113 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470157, 37.743164 ] } } -, { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741518 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475264, 37.739193 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.741603 ] } } -, -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.741162 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.741009 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.741603 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.741009 ] } } , @@ -2465,12 +1963,8 @@ , { "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740873 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465651, 37.740924 ] } } -, { "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.740839 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738056 ] } } -, { "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.737853 ] } } , { "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.739668 ] } } @@ -2479,25 +1973,19 @@ , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750952 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.751698 ] } } -, { "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.751495 ] } } , { "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748169 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748271 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747898 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458656, 37.747100 ] } } -, -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } -, { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745285 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746371 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.740398 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745760 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740228 ] } } , @@ -2515,21 +2003,15 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.734713 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474492, 37.734781 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474792, 37.732117 ] } } , { "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473805, 37.731812 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734612 ] } } -, { "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471616, 37.734798 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.734306 ] } } , -{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.734917 ] } } -, -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474749, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.731625 ] } } , { "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474535, 37.731031 ] } } , @@ -2543,22 +2025,16 @@ , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.733152 ] } } -, { "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728383 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.727246 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721187 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.721238 ] } } -, { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.720967 ] } } , +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474320, 37.721323 ] } } +, { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719677 ] } } , { "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } @@ -2569,11 +2045,9 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.727212 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719728 ] } } -, { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735494 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459643, 37.734561 ] } } , @@ -2595,17 +2069,13 @@ , { "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462132, 37.720050 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460115, 37.720067 ] } } -, { "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724378 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.723767 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } -, { "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723462 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458055, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.720101 ] } } , @@ -2627,12 +2097,8 @@ , { "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752072 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444923, 37.749119 ] } } -, { "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442820, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.748034 ] } } -, { "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447755, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.747915 ] } } @@ -2649,29 +2115,23 @@ , { "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741722 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740822 ] } } -, { "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738192 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740195 ] } } , { "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450716, 37.738175 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741077 ] } } -, { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736784 ] } } -, { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.736614 ] } } , { "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752411 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442605, 37.749255 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.752784 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.750969 ] } } , { "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438357, 37.751105 ] } } , @@ -2685,20 +2145,14 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.751359 ] } } -, { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.751257 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } -, { "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749595 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748848 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } -, { "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744674 ] } } , { "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.748068 ] } } @@ -2725,13 +2179,11 @@ , { "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.739991 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } -, { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } , { "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.731608 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731608 ] } } , { "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , @@ -2739,8 +2191,6 @@ , { "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.728299 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731404 ] } } -, { "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.728485 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735511 ] } } @@ -2757,36 +2207,28 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723020 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.723122 ] } } -, { "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452991, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721934 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721968 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722952 ] } } -, { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721051 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720950 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720848 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } -, { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } -, { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } @@ -2799,35 +2241,23 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722817 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.720271 ] } } -, { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735002 ] } } -, -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731659 ] } } -, { "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731506 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727739 ] } } , { "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437155, 37.731387 ] } } -, { "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734459 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } -, { "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.733492 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.733593 ] } } , { "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442391, 37.725889 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442434, 37.725685 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433164, 37.729588 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441189, 37.727145 ] } } , @@ -2849,66 +2279,48 @@ , { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } -, { "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434280, 37.722409 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } -, { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767662 ] } } -, { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } -, { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } -, -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } -, { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } -, { "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435224, 37.762624 ] } } -, { "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458613, 37.748339 ] } } ] } ] } @@ -2921,8 +2333,6 @@ , { "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833599 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } -, { "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.832836 ] } } , { "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829429 ] } } @@ -2931,52 +2341,34 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.792083 ] } } -, { "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806563 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806071 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } -, { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.803596 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801019 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } -, -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797933 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456810, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456768, 37.801629 ] } } -, -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } -, { "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803766 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } -, -{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.801731 ] } } -, { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797882 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800748 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453935, 37.800527 ] } } -, { "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455094, 37.798238 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800341 ] } } -, { "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799120 ] } } , { "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.798052 ] } } -, { "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445223, 37.803630 ] } } , +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803766 ] } } +, { "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.803647 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.802833 ] } } @@ -2991,25 +2383,15 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443120, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.798883 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.799069 ] } } , { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.795898 ] } } -, { "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790710 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788963 ] } } -, { "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444236, 37.791185 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441833, 37.803070 ] } } -, -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } -, -{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437456, 37.800714 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439344, 37.800358 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , @@ -3017,15 +2399,13 @@ , { "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.805410 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } -, { "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.805122 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.799713 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436039, 37.799595 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.799713 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800951 ] } } , @@ -3035,18 +2415,16 @@ , { "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } -, { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } , +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +, { "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.791727 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791931 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788505 ] } } -, { "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436855, 37.795848 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794915 ] } } @@ -3055,45 +2433,33 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792202 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792711 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , { "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } -, { "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.789828 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , { "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.790099 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787183 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } -, { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } -, { "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } -, -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } ] } ] } , @@ -3101,12 +2467,12 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719711 ] } } +, { "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718845 ] } } -, { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } @@ -3115,16 +2481,8 @@ , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.715128 ] } } -, { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712836 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } -, { "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } @@ -3135,22 +2493,18 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422221, 37.713549 ] } } -, { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709814 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.708660 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712785 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710018 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711716 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } -, { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.712021 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } @@ -3167,15 +2521,13 @@ , { "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.710493 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709865 ] } } -, { "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419946, 37.708372 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.707132 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.706283 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } , { "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.709051 ] } } , @@ -3189,30 +2541,22 @@ , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712632 ] } } -, { "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.711444 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711342 ] } } -, { "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713210 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711885 ] } } -, { "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.716604 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.714669 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716265 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } -, { "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.712361 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712174 ] } } @@ -3223,9 +2567,9 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712225 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713549 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.711139 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.712021 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713549 ] } } , { "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398961, 37.711614 ] } } , @@ -3235,16 +2579,12 @@ , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.709526 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } -, { "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711206 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713379 ] } } -, { "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } @@ -3255,9 +2595,9 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.785996 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783011 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781518 ] } } , @@ -3267,36 +2607,30 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } , +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.764490 ] } } , { "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } -, -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.738175 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } -, { "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } , +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } +, { "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } -, { "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } -, { "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } , { "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } @@ -3307,13 +2641,9 @@ , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400634, 37.788624 ] } } -, -{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } -, { "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789201 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.786504 ] } } , @@ -3327,22 +2657,18 @@ , { "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.786114 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.785673 ] } } -, { "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.784808 ] } } -, -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.782400 ] } } -, { "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423851, 37.779687 ] } } , +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.783197 ] } } +, { "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.781942 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } @@ -3351,76 +2677,56 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } -, { "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776024 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.776244 ] } } -, -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777550 ] } } -, { "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.777092 ] } } -, { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773819 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424667, 37.770952 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773174 ] } } , { "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.772869 ] } } -, { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.785843 ] } } -, { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780196 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.780162 ] } } -, { "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.782638 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.780603 ] } } -, { "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780772 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.786555 ] } } -, -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } -, { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } , +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.785792 ] } } +, { "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } @@ -3431,8 +2737,6 @@ , { "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.783028 ] } } -, { "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.781078 ] } } , { "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } @@ -3449,9 +2753,7 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775515 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } -, -{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777703 ] } } , @@ -3459,32 +2761,22 @@ , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.774972 ] } } -, { "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.772801 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.772988 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.774209 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.773327 ] } } -, { "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.778788 ] } } , { "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.778500 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777228 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776125 ] } } -, -{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772123 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410762, 37.779178 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.771987 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.773886 ] } } -, { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } @@ -3499,52 +2791,32 @@ , { "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427242, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428873, 37.767780 ] } } -, { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.765694 ] } } -, { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , { "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } , { "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764727 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.770562 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } -, { "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } -, { "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.764625 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428401, 37.761470 ] } } -, -{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761182 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } , { "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759774 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428057, 37.757382 ] } } -, { "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426856, 37.757229 ] } } , { "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754786 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425911, 37.761385 ] } } -, -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421491, 37.759859 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.758739 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755550 ] } } -, { "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753395 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } @@ -3565,16 +2837,12 @@ , { "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.763828 ] } } -, { "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.768103 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769103 ] } } , { "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765304 ] } } -, { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765711 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764015 ] } } @@ -3583,7 +2851,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760656 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416985, 37.758925 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756584 ] } } , @@ -3595,18 +2863,16 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761860 ] } } -, { "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409904, 37.760367 ] } } , +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.755940 ] } } +, { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , { "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786504 ] } } , { "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785351 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.784266 ] } } -, { "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } , { "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.784520 ] } } @@ -3629,14 +2895,10 @@ , { "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785521 ] } } , -{ "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.783503 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784334 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.780738 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.782773 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } -, { "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } , { "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } @@ -3645,26 +2907,18 @@ , { "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.785962 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784639 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786335 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784639 ] } } , { "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.783994 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.783978 ] } } -, { "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.780433 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400849, 37.782146 ] } } -, { "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409217, 37.777923 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775718 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777143 ] } } -, { "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.772530 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } @@ -3683,24 +2937,16 @@ , { "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785741 ] } } -, { "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395313, 37.784520 ] } } -, -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.782434 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395012, 37.784096 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.783282 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394583, 37.779975 ] } } -, { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } -, { "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.781858 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } @@ -3709,12 +2955,8 @@ , { "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396643, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.776532 ] } } -, { "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775430 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.777279 ] } } -, { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.777177 ] } } , { "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.777092 ] } } @@ -3723,7 +2965,7 @@ , { "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776312 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776244 ] } } , { "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773157 ] } } , @@ -3737,39 +2979,35 @@ , { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772835 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } , { "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.765864 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.764218 ] } } -, { "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764557 ] } } , { "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.763302 ] } } , { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.770155 ] } } , +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769748 ] } } +, { "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.767458 ] } } , { "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } , { "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766152 ] } } -, { "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764863 ] } } -, { "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.764897 ] } } , { "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764931 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766220 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } , @@ -3777,19 +3015,13 @@ , { "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404196, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757500 ] } } -, { "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754141 ] } } -, { "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755872 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.754413 ] } } -, -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.761979 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.755414 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.754413 ] } } , { "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } , @@ -3801,54 +3033,38 @@ , { "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758009 ] } } , +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.756160 ] } } +, { "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } , { "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.754328 ] } } -, -{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.757331 ] } } -, { "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757263 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755770 ] } } -, { "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.754854 ] } } , +{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766661 ] } } +, { "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762420 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762624 ] } } -, { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391021, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766763 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769544 ] } } -, { "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.766576 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.762878 ] } } , { "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.764422 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764252 ] } } -, { "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.763353 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.762963 ] } } -, { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.761148 ] } } , { "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.760079 ] } } -, { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } -, { "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.754667 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.753446 ] } } @@ -3859,9 +3075,7 @@ , { "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757636 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755499 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391794, 37.757772 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.760537 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , @@ -3873,72 +3087,48 @@ , { "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.757585 ] } } -, { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387888, 37.755685 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } , { "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 37.749170 ] } } -, { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } -, { "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311, 37.751902 ] } } , { "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752038 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , { "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743588 ] } } , { "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.742808 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742095 ] } } -, { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742163 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } -, { "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.736326 ] } } , +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738905 ] } } +, { "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425740, 37.742010 ] } } , { "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.742163 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.742434 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.741009 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740839 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.742434 ] } } -, { "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425482, 37.739618 ] } } , -{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424281, 37.739821 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.739719 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.739380 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.737055 ] } } , { "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.736207 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.752360 ] } } -, { "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420504, 37.752055 ] } } , { "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752173 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750748 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749510 ] } } , { "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } @@ -3955,9 +3145,9 @@ , { "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.746235 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414196, 37.752598 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420290, 37.745081 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752445 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414196, 37.752598 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } , @@ -3971,12 +3161,12 @@ , { "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } , +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745319 ] } } +, { "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.748203 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739923 ] } } -, { "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418444, 37.739295 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.739092 ] } } @@ -3985,9 +3175,7 @@ , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741450 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.741823 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.738871 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.738922 ] } } , { "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.738260 ] } } , @@ -4001,7 +3189,7 @@ , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733339 ] } } , @@ -4015,39 +3203,31 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728468 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.728604 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735070 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.735426 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426083, 37.728553 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.728893 ] } } -, -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } -, { "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723105 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720135 ] } } , +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719694 ] } } +, { "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.721272 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.426984, 37.720899 ] } } -, { "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } -, { "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724734 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725074 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725430 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426040, 37.720390 ] } } , @@ -4055,24 +3235,16 @@ , { "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735783 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.735053 ] } } -, { "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.732287 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416728, 37.734968 ] } } -, { "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733271 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.728825 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734730 ] } } -, { "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.734663 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.734934 ] } } -, { "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733271 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.734900 ] } } @@ -4081,7 +3253,7 @@ , { "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726398 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725855 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , @@ -4089,68 +3261,48 @@ , { "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.723920 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.723241 ] } } -, { "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.722732 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } +, { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408960, 37.752750 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752818 ] } } -, { "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406256, 37.753242 ] } } -, { "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406085, 37.751630 ] } } -, { "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744708 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750714 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752106 ] } } , { "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750748 ] } } , { "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.742010 ] } } -, { "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.742842 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407801, 37.739685 ] } } -, { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738362 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.739855 ] } } -, { "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403338, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399004, 37.743928 ] } } -, -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.741484 ] } } -, { "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.739125 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400548, 37.739533 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398403, 37.752377 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } -, { "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } , +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.751257 ] } } +, { "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749018 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.749866 ] } } , { "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396257, 37.747338 ] } } -, { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745964 ] } } , { "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } @@ -4159,9 +3311,9 @@ , { "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737208 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398231, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.736088 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737208 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736835 ] } } , @@ -4171,14 +3323,10 @@ , { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.742434 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.739753 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.737870 ] } } -, { "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736326 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736292 ] } } @@ -4191,12 +3339,8 @@ , { "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.737921 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737632 ] } } -, { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.734238 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.732338 ] } } -, { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.733203 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732966 ] } } @@ -4205,26 +3349,20 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } , +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.727993 ] } } +, { "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.727433 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.734764 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } -, { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.727976 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403553, 37.727331 ] } } -, { "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727637 ] } } , { "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.730369 ] } } , { "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.726143 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.726669 ] } } -, { "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.723377 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.723733 ] } } @@ -4233,7 +3371,7 @@ , { "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.726907 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.720101 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.402995, 37.726364 ] } } , @@ -4241,26 +3379,18 @@ , { "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723869 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.723648 ] } } -, { "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721085 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720678 ] } } -, { "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.721442 ] } } , { "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } -, -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.731998 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392652, 37.735019 ] } } -, { "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734340 ] } } @@ -4271,21 +3401,11 @@ , { "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391343, 37.732406 ] } } -, -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732202 ] } } -, { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390163, 37.731693 ] } } -, { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392609, 37.729283 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.729198 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.729215 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728078 ] } } , @@ -4299,7 +3419,7 @@ , { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721119 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720780 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } , @@ -4309,8 +3429,6 @@ , { "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } -, { "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.727026 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } @@ -4319,61 +3437,43 @@ , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386730, 37.755397 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 37.753123 ] } } -, { "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749086 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386644, 37.745760 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } , { "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742536 ] } } , { "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383168, 37.743690 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } -, { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385871, 37.736597 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } -, { "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384112, 37.737700 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } -, { "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.735850 ] } } -, { "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387030, 37.731845 ] } } , { "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386601, 37.732355 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } -, -{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } -, { "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383082, 37.733237 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385614, 37.727348 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } -, { "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.734018 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381837, 37.733322 ] } } -, { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379906, 37.732490 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731625 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377160, 37.732711 ] } } , @@ -4397,8 +3497,6 @@ , { "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365186, 37.728587 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727348 ] } } -, { "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } @@ -4407,6 +3505,8 @@ , { "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } , +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } +, { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } @@ -4415,7 +3515,7 @@ { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775142 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } , { "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , @@ -4431,20 +3531,18 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } , +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } +, { "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } , { "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } -, { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792711 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790099 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806342 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } -, { "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805630 ] } } @@ -4459,16 +3557,14 @@ , { "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.807411 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807800 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807800 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.805732 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } -, { "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427843, 37.801816 ] } } @@ -4477,19 +3573,15 @@ , { "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.800849 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798204 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805156 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425354, 37.804834 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.804105 ] } } -, { "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424839, 37.802341 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423379, 37.803477 ] } } , @@ -4501,43 +3593,29 @@ , { "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797730 ] } } -, { "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793575 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796407 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } -, { "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.794898 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794779 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.795271 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.793830 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.793084 ] } } -, { "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.793694 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.793491 ] } } -, { "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.791151 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791371 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790438 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.792388 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } , @@ -4549,43 +3627,27 @@ , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.805325 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } -, -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.800171 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419131, 37.799171 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798340 ] } } -, { "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417500, 37.799323 ] } } -, { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.804952 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803782 ] } } -, { "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.802596 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.801833 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411878, 37.804952 ] } } -, { "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801222 ] } } -, { "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.799883 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.799018 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800103 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800375 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.799018 ] } } , { "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.800375 ] } } , @@ -4599,21 +3661,19 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795390 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794644 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793626 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794847 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.792863 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.793813 ] } } -, { "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.792948 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.790693 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789353 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.791829 ] } } , @@ -4625,16 +3685,10 @@ , { "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } -, -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } -, { "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.795983 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796204 ] } } -, { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796204 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411664, 37.795593 ] } } @@ -4643,25 +3697,17 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409990, 37.796560 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794576 ] } } -, { "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792677 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.793779 ] } } -, { "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412307, 37.791710 ] } } -, -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788844 ] } } -, { "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808224 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807258 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806614 ] } } , @@ -4669,18 +3715,12 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803698 ] } } -, { "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802986 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } -, -{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801765 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.800358 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800595 ] } } -, { "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.796780 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797594 ] } } @@ -4691,55 +3731,35 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406728, 37.796984 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405655, 37.797051 ] } } -, { "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805020 ] } } , { "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.802969 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.802155 ] } } -, { "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801256 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.799663 ] } } -, { "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.797781 ] } } -, { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400720, 37.798543 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796238 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.796729 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793830 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409432, 37.792948 ] } } -, -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407758, 37.793728 ] } } -, { "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407587, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } -, { "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404540, 37.793762 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792711 ] } } -, { "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } , { "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409132, 37.792304 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.792117 ] } } -, -{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } -, { "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407029, 37.789472 ] } } , @@ -4755,21 +3775,19 @@ , { "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.792931 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } , { "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793287 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.793270 ] } } -, { "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790913 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } , { "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788607 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790286 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.792287 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } , @@ -4779,16 +3797,10 @@ , { "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400634, 37.788624 ] } } -, { "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.798967 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797831 ] } } -, { "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396986, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793626 ] } } -, { "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792473 ] } } , { "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } @@ -4797,16 +3809,12 @@ , { "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793016 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396171, 37.793474 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793185 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796678 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.794830 ] } } -, { "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793626 ] } } , { "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } @@ -4815,51 +3823,35 @@ , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793694 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793457 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } -, { "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.792999 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791914 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789489 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } , -{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791829 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } -, { "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.790761 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.790574 ] } } -, { "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.789947 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789184 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392309, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789811 ] } } , { "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792711 ] } } , -{ "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392395, 37.791337 ] } } -, { "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792405 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790744 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.790472 ] } } , @@ -4867,16 +3859,14 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829836 ] } } -, { "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } , { "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374971, 37.823243 ] } } -, { "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373898, 37.823514 ] } } , +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829260 ] } } +, { "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369907, 37.825226 ] } } , { "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366946, 37.825311 ] } } @@ -4885,13 +3875,9 @@ , { "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821938 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366130, 37.819921 ] } } -, { "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813056 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370851, 37.813140 ] } } -, -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811801 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } , { "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363770, 37.811683 ] } } , @@ -4903,8 +3889,6 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } -, { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } @@ -4944,6 +3928,8 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } ] } ] } , diff --git a/tests/muni/out/-Z11_-z13_-M10000_-pd.json b/tests/muni/out/-Z11_-z13_-M10000_-pd.json index bbe5db31b..5eab06e82 100644 --- a/tests/muni/out/-Z11_-z13_-M10000_-pd.json +++ b/tests/muni/out/-Z11_-z13_-M10000_-pd.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M10000_-pd.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":7695,\"dropped_as_needed\":88,\"tile_size_desired\":10887},{\"dropped_by_rate\":4113,\"dropped_as_needed\":86,\"tile_size_desired\":10721},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":7695,\"dropped_as_needed\":212,\"tile_size_desired\":10887},{\"dropped_by_rate\":4113,\"dropped_as_needed\":225,\"tile_size_desired\":10721},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -197,6 +197,8 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } +, { "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483268, 37.832836 ] } } , { "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } @@ -209,105 +211,69 @@ , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803749 ] } } -, { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } -, { "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800324 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800324 ] } } , { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790693 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791168 ] } } -, { "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.800358 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805410 ] } } +, { "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805105 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799713 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796797 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } -, { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } -, -{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795848 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792728 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794152 ] } } , { "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } -, { "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512021, 37.779025 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } -, { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.771597 ] } } -, { "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } -, { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } -, { "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } -, { "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779568 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781875 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775905 ] } } -, { "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } -, { "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.780247 ] } } -, -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782214 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.780247 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484469, 37.778042 ] } } , @@ -317,93 +283,73 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +, { "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.764744 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488246, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758875 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755414 ] } } -, { "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492623, 37.753446 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765117 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480350, 37.765185 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765355 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761317 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757857 ] } } -, { "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.757755 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } , +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753955 ] } } +, { "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754124 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752903 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745573 ] } } -, { "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753106 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747542 ] } } -, { "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498975, 37.734136 ] } } -, { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495027, 37.751783 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } , +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744216 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742316 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494254, 37.738616 ] } } -, { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } , { "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746456 ] } } -, { "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733899 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } -, { "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } -, -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727111 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } , @@ -413,46 +359,38 @@ , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780518 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } -, { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782892 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.776787 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773055 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } , { "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783197 ] } } -, { "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780857 ] } } , { "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786046 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781061 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.775430 ] } } -, { "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774616 ] } } -, { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } , { "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765999 ] } } @@ -467,26 +405,18 @@ , { "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758196 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } -, { "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763726 ] } } -, { "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } -, { "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.782248 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787369 ] } } @@ -497,45 +427,31 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.775396 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } -, -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778754 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.778754 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778924 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773937 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774175 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785131 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779500 ] } } -, { "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } -, -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } -, { "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781061 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781535 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777804 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.774718 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773191 ] } } -, { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } -, -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.769324 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } , @@ -551,7 +467,7 @@ , { "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , { "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } , @@ -559,10 +475,10 @@ , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.761182 ] } } -, { "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } , +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.758230 ] } } +, { "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766474 ] } } @@ -575,6 +491,8 @@ , { "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } , +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +, { "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.762641 ] } } , { "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760469 ] } } @@ -589,6 +507,8 @@ , { "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } , +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748729 ] } } +, { "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748899 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749102 ] } } @@ -599,11 +519,9 @@ , { "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743130 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } -, { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740992 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } , @@ -611,30 +529,22 @@ , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751478 ] } } -, { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747881 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745777 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740211 ] } } -, { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741976 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734713 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , { "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471595, 37.734815 ] } } , { "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.731048 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731353 ] } } -, { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } @@ -645,17 +555,15 @@ , { "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719575 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } -, { "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } , @@ -669,7 +577,7 @@ , { "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445760, 37.750392 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } , { "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } , @@ -677,56 +585,42 @@ , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.746659 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } -, { "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738175 ] } } -, { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } +, { "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } , { "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } -, { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.751274 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749611 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } -, { "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } -, { "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } , { "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } -, { "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +, { "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.728502 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.731489 ] } } -, { "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723852 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } -, { "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } -, { "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } @@ -741,22 +635,12 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } -, -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } -, { "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733492 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } -, { "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723580 ] } } -, { "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } -, { "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.722392 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806359 ] } } @@ -767,35 +651,27 @@ , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805749 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805749 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800866 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.804834 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } -, { "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } , +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800459 ] } } +, { "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.790523 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796390 ] } } -, { "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793813 ] } } -, { "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793677 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422242, 37.790421 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } , @@ -805,14 +681,10 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } -, { "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.797441 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.802935 ] } } -, { "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.799883 ] } } , { "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800120 ] } } @@ -829,12 +701,12 @@ , { "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.790896 ] } } -, { "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789133 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795983 ] } } , +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +, { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796187 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.796560 ] } } @@ -855,61 +727,43 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801070 ] } } -, { "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805003 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801273 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793847 ] } } -, { "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.793236 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789133 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789472 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795712 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792931 ] } } -, -{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } -, { "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788183 ] } } -, { "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792287 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798967 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795407 ] } } -, { "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } -, { "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } -, -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793474 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792999 ] } } , @@ -919,6 +773,8 @@ , { "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } , +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789947 ] } } +, { "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789811 ] } } , { "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } @@ -927,39 +783,25 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.789675 ] } } -, { "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818497 ] } } -, -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } -, { "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810360 ] } } -, { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.787810 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784656 ] } } -, { "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778618 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } -, { "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , @@ -971,20 +813,16 @@ , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780789 ] } } -, { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.786860 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785809 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787200 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } , { "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } @@ -997,21 +835,15 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } -, { "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.774921 ] } } , { "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778483 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779161 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } -, { "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } , @@ -1019,41 +851,25 @@ , { "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764710 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.766780 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } -, { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } , { "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } -, { "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768442 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764981 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765728 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.760639 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } -, { "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } -, -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } , @@ -1061,56 +877,36 @@ , { "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.786589 ] } } -, -{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } , { "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } , { "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787640 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786352 ] } } -, -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.786080 ] } } -, { "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.780450 ] } } , { "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.777940 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778924 ] } } -, { "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773462 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } -, -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783299 ] } } -, { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , { "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775430 ] } } -, -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } -, { "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } , { "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } -, { "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } -, { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } , { "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } @@ -1123,56 +919,42 @@ , { "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755889 ] } } -, { "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } , { "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } , { "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756160 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } -, { "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.768544 ] } } -, { "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764439 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763353 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395978, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754667 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } -, { "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760537 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757789 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755685 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746524 ] } } , { "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751885 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } -, { "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742791 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742146 ] } } -, { "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736343 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.740992 ] } } @@ -1189,6 +971,8 @@ , { "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748220 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } @@ -1201,12 +985,12 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } , +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.739295 ] } } +, { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744352 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738922 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } -, { "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740076 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } @@ -1227,35 +1011,23 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724734 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725413 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732270 ] } } -, { "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728808 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } -, { "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734917 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.725855 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } -, { "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738379 ] } } , @@ -1271,18 +1043,16 @@ , { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745981 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } -, { "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736852 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.739736 ] } } -, { "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736309 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740110 ] } } +, { "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405591, 37.734238 ] } } @@ -1297,8 +1067,6 @@ , { "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.723377 ] } } -, { "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } @@ -1311,9 +1079,9 @@ , { "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } , @@ -1327,73 +1095,57 @@ , { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } -, { "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722630 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } -, { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383146, 37.743707 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } -, { "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377181, 37.732711 ] } } -, -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } -, { "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730233 ] } } , { "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368684, 37.725345 ] } } , +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +, { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } , { "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } , { "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778686 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784283 ] } } ] } ] } , @@ -1625,37 +1377,25 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788471 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } -, { "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } -, { "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509897, 37.779890 ] } } -, { "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512043, 37.779025 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.773208 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.775176 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773649 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771682 ] } } -, -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779992 ] } } -, { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505519, 37.782129 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504103, 37.781824 ] } } -, { "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504232, 37.781010 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.779551 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.779653 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502987, 37.781078 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505949, 37.775209 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.779653 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775345 ] } } , @@ -1665,13 +1405,11 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771580 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503288, 37.771614 ] } } -, { "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.771783 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779280 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510283, 37.767882 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.771783 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , @@ -1683,23 +1421,15 @@ , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760350 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760367 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760384 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505820, 37.760486 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758654 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505734, 37.756771 ] } } -, { "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505434, 37.754752 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760758 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760673 ] } } -, -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } , { "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781790 ] } } , @@ -1707,26 +1437,18 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779789 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.779806 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779738 ] } } -, { "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.779568 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783791 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490499, 37.783672 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779721 ] } } -, { "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781892 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.781841 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497194, 37.775769 ] } } -, { "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493074, 37.777686 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494576, 37.775888 ] } } @@ -1745,7 +1467,7 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785690 ] } } , @@ -1757,16 +1479,12 @@ , { "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.780247 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } -, { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482688, 37.780077 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.782214 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477496, 37.782282 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.780586 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.778042 ] } } @@ -1775,24 +1493,18 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776464 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774548 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483804, 37.772513 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776566 ] } } -, { "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480607, 37.772648 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } -, { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476509, 37.772835 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764557 ] } } -, { "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494705, 37.764744 ] } } , +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764727 ] } } +, { "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488267, 37.765032 ] } } , { "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.760825 ] } } @@ -1801,13 +1513,11 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495520, 37.758892 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761029 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757263 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755397 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495306, 37.753531 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492645, 37.753446 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761165 ] } } , @@ -1815,26 +1525,20 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } -, { "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486122, 37.765134 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.765100 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } -, { "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480371, 37.765185 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765372 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765372 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765202 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } -, { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761300 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.761453 ] } } @@ -1845,22 +1549,14 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753870 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } -, { "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761606 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761775 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761572 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.756008 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.757891 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753972 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476680, 37.756211 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476294, 37.754107 ] } } , { "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752784 ] } } @@ -1869,11 +1565,7 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752818 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753123 ] } } -, -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507536, 37.745438 ] } } -, -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505090, 37.747457 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749323 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504961, 37.745590 ] } } , @@ -1881,36 +1573,28 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500155, 37.753123 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498009, 37.753208 ] } } -, { "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499812, 37.747542 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497623, 37.747626 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504704, 37.741857 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504532, 37.741688 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } -, { "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505305, 37.738073 ] } } , { "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736122 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502601, 37.741807 ] } } -, { "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500198, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498052, 37.742112 ] } } -, { "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505348, 37.735528 ] } } , +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } +, { "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735002 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498953, 37.734120 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.728214 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499211, 37.731150 ] } } -, { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753327 ] } } @@ -1919,44 +1603,32 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745964 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.747762 ] } } -, { "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493331, 37.747830 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489040, 37.748000 ] } } -, { "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.747983 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } , +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494662, 37.744216 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494533, 37.742349 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742299 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494340, 37.742112 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494276, 37.738616 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736529 ] } } -, -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } -, { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487538, 37.742638 ] } } , +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742451 ] } } +, { "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748271 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484577, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483461, 37.748271 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } @@ -1965,7 +1637,7 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748712 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746473 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742672 ] } } , @@ -1973,12 +1645,10 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742876 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475607, 37.743011 ] } } -, { "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496765, 37.733899 ] } } , +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.733695 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734781 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } @@ -1987,18 +1657,14 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } -, { "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733950 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483933, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482173, 37.734289 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477367, 37.734747 ] } } -, { "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.728027 ] } } , { "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478483, 37.728061 ] } } @@ -2011,66 +1677,50 @@ , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718692 ] } } , +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721832 ] } } +, { "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481229, 37.720729 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480028, 37.726907 ] } } -, { "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725973 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475908, 37.727009 ] } } -, { "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476852, 37.725973 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719626 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473247, 37.784503 ] } } -, { "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } , { "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471101, 37.784452 ] } } -, { "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.782485 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471144, 37.782689 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780518 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468956, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470586, 37.780840 ] } } , { "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466810, 37.784622 ] } } , { "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785012 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468998, 37.782790 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780976 ] } } -, { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.776770 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472217, 37.776889 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472131, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.776990 ] } } -, { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.773191 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773038 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.777058 ] } } -, { "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775260 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.775023 ] } } @@ -2079,17 +1729,13 @@ , { "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784876 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784707 ] } } -, { "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785690 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783214 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462561, 37.783079 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.781128 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461145, 37.781044 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780874 ] } } , { "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786029 ] } } , @@ -2099,8 +1745,6 @@ , { "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454493, 37.784113 ] } } -, { "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.783740 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.783062 ] } } @@ -2119,7 +1763,7 @@ , { "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.773734 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777075 ] } } , @@ -2129,8 +1773,6 @@ , { "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.774599 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454150, 37.772954 ] } } -, { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765609 ] } } @@ -2147,18 +1789,16 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766084 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764099 ] } } -, { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763913 ] } } , +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } +, { "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.762081 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761911 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758111 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.761792 ] } } -, { "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.759129 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.756364 ] } } @@ -2167,14 +1807,14 @@ , { "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469513, 37.761979 ] } } , +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.758196 ] } } +, { "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.758400 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465951, 37.760232 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.758366 ] } } -, { "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465694, 37.756500 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765948 ] } } @@ -2185,16 +1825,10 @@ , { "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762725 ] } } -, -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762793 ] } } -, { "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.764998 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.763302 ] } } -, { "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763709 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } @@ -2203,32 +1837,22 @@ , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.754650 ] } } -, -{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.755397 ] } } -, { "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755295 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786504 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450244, 37.786708 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448270, 37.784978 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.782231 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787183 ] } } -, { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.785232 ] } } , +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784537 ] } } +, { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.784758 ] } } @@ -2239,8 +1863,6 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782977 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.777753 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449644, 37.778347 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.775413 ] } } @@ -2253,15 +1875,13 @@ , { "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.778754 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778754 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } , { "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.777262 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778907 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.776939 ] } } , @@ -2275,23 +1895,13 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774192 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } -, { "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785148 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.785249 ] } } -, -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785521 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.779500 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783367 ] } } -, { "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439215, 37.781603 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437670, 37.783621 ] } } -, -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , @@ -2303,13 +1913,11 @@ , { "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781078 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.783011 ] } } -, { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432392, 37.781518 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779280 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.781502 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777313 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779280 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440159, 37.777516 ] } } , @@ -2317,42 +1925,30 @@ , { "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777855 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438228, 37.776753 ] } } -, { "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441490, 37.774565 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440546, 37.770749 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.774718 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773174 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435181, 37.778144 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.775142 ] } } -, { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775413 ] } } -, { "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.771766 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } , { "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451746, 37.769307 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453334, 37.768238 ] } } -, { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450759, 37.769443 ] } } -, -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769884 ] } } -, { "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450202, 37.766830 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } +, { "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764591 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449901, 37.765931 ] } } @@ -2363,31 +1959,21 @@ , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769935 ] } } -, -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } -, { "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769002 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767136 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.767254 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.770206 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.770511 ] } } -, { "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767339 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447927, 37.766152 ] } } -, { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445867, 37.765134 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } -, -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765813 ] } } , { "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761674 ] } } , @@ -2399,30 +1985,22 @@ , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446125, 37.758942 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758654 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761945 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.761199 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761792 ] } } -, { "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.757789 ] } } -, { "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758213 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.756449 ] } } -, -{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442992, 37.753989 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } , { "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.768832 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766491 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438142, 37.766847 ] } } -, { "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } @@ -2433,31 +2011,25 @@ , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.767390 ] } } -, { "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.764269 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762454 ] } } -, { "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764490 ] } } +, { "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761606 ] } } , { "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760486 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.760622 ] } } -, { "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759027 ] } } , { "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.754040 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757399 ] } } -, -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755804 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , { "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435138, 37.760944 ] } } , @@ -2469,11 +2041,9 @@ , { "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.757636 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } -, { "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748661 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.750799 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748712 ] } } , @@ -2481,35 +2051,25 @@ , { "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748899 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745081 ] } } -, { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467668, 37.749086 ] } } , { "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752716 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.750697 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469428, 37.748984 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.749153 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741484 ] } } -, { "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743113 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470157, 37.743164 ] } } -, { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741518 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475264, 37.739193 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.741603 ] } } -, -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.741162 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.741009 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.741603 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.741009 ] } } , @@ -2517,12 +2077,8 @@ , { "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740873 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465651, 37.740924 ] } } -, { "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.740839 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738056 ] } } -, { "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.737853 ] } } , { "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.739668 ] } } @@ -2531,25 +2087,19 @@ , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750952 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.751698 ] } } -, { "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.751495 ] } } , { "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748169 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748271 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747898 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458656, 37.747100 ] } } -, -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } -, { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745285 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746371 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.740398 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745760 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740228 ] } } , @@ -2567,21 +2117,15 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.734713 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474492, 37.734781 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474792, 37.732117 ] } } , { "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473805, 37.731812 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734612 ] } } -, { "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471616, 37.734798 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.734306 ] } } , -{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.734917 ] } } -, -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474749, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.731625 ] } } , { "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474535, 37.731031 ] } } , @@ -2595,22 +2139,16 @@ , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.733152 ] } } -, { "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728383 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.727246 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721187 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.721238 ] } } -, { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.720967 ] } } , +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474320, 37.721323 ] } } +, { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719677 ] } } , { "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } @@ -2621,11 +2159,9 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.727212 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719728 ] } } -, { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735494 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459643, 37.734561 ] } } , @@ -2647,17 +2183,13 @@ , { "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462132, 37.720050 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460115, 37.720067 ] } } -, { "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724378 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.723767 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } -, { "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723462 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458055, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.720101 ] } } , @@ -2679,12 +2211,8 @@ , { "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752072 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444923, 37.749119 ] } } -, { "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442820, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.748034 ] } } -, { "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447755, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.747915 ] } } @@ -2701,29 +2229,23 @@ , { "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741722 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740822 ] } } -, { "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738192 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740195 ] } } , { "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450716, 37.738175 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741077 ] } } -, { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736784 ] } } -, { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.736614 ] } } , { "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752411 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442605, 37.749255 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.752784 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.750969 ] } } , { "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438357, 37.751105 ] } } , @@ -2737,20 +2259,14 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.751359 ] } } -, { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.751257 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } -, { "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749595 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748848 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } -, { "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744674 ] } } , { "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.748068 ] } } @@ -2777,13 +2293,11 @@ , { "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.739991 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } -, { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } , { "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.731608 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731608 ] } } , { "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , @@ -2791,8 +2305,6 @@ , { "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.728299 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731404 ] } } -, { "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.728485 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735511 ] } } @@ -2809,36 +2321,28 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723020 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.723122 ] } } -, { "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452991, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721934 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721968 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722952 ] } } -, { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721051 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720950 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720848 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } -, { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } -, { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } @@ -2851,35 +2355,23 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722817 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.720271 ] } } -, { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735002 ] } } -, -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731659 ] } } -, { "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731506 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727739 ] } } , { "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437155, 37.731387 ] } } -, { "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734459 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } -, { "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.733492 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.733593 ] } } , { "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442391, 37.725889 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442434, 37.725685 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433164, 37.729588 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441189, 37.727145 ] } } , @@ -2901,66 +2393,48 @@ , { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } -, { "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434280, 37.722409 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } -, { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767662 ] } } -, { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } -, { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } -, -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } -, { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } -, { "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435224, 37.762624 ] } } -, { "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458613, 37.748339 ] } } ] } ] } diff --git a/tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json b/tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json index 7de3781d7..3b5a59bdf 100644 --- a/tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json +++ b/tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "10", "minzoom": "0", "name": "tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":4591},{\"dropped_by_rate\":4591},{\"dropped_by_rate\":4561},{\"dropped_by_rate\":4511},{\"dropped_by_rate\":4401},{\"dropped_by_rate\":4121},{\"dropped_by_rate\":3411},{\"dropped_by_rate\":1650},{\"dropped_by_rate\":10,\"dropped_as_needed\":1879,\"tile_size_desired\":68538},{\"dropped_as_needed\":3966,\"tile_size_desired\":72665},{\"dropped_as_needed\":4632,\"tile_size_desired\":67958}]", +"strategies": "[{\"dropped_by_rate\":4591},{\"dropped_by_rate\":4591},{\"dropped_by_rate\":4561},{\"dropped_by_rate\":4511},{\"dropped_by_rate\":4401},{\"dropped_by_rate\":4121},{\"dropped_by_rate\":3411},{\"dropped_by_rate\":1650},{\"dropped_by_rate\":1607,\"dropped_as_needed\":308,\"tile_size_desired\":68538},{\"dropped_by_rate\":2354,\"dropped_as_needed\":1577,\"tile_size_desired\":72665},{\"dropped_as_needed\":4632,\"tile_size_desired\":67958}]", "tippecanoe_decisions": "{\"basezoom\":10,\"droprate\":2.5,\"retain_points_multiplier\":10}", "type": "overlay", "version": "2" @@ -10190,8177 +10190,8115 @@ , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 99 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.459450, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.459450, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } -, -{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.724022 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.372246, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.372246, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.705825 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.705825 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.705825 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.536354, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.532234, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.829040 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833921 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.829582 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801646 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.536354, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.532234, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.529488, 37.821718 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833921 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.829582 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.804630 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave", "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.804630 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.508202, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.508202, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.772886 ] } } , { "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764201 ] } } , { "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "California St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } -, -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773700 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773157 ] } } , { "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784554 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.785368 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } -, -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765287 ] } } -, -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764201 ] } } -, -{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST", "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.763116 ] } } -, -{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.765287 ] } } -, -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.765830 ] } } -, -{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST", "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Market St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.459450, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.459450, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "6 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "6 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.752801 ] } } -, -{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.751172 ] } } -, -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748458 ] } } -, -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746829 ] } } -, -{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751987 ] } } , { "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.808428 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.807885 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.808428 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.808428 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street", "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.804630 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804088 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY", "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St. & Beale St.", "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way", "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826870 ] } } +{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.373276, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.376366, 37.825514 ] } } +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St.", "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823345 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.823887 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.371559, 37.824430 ] } } +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.827141 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.366753, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.816022 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821989 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.364006, 37.820633 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.376366, 37.825514 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823345 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.823887 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821989 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813310 ] } } , -{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811683 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.364006, 37.820633 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811411 ] } } , -{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 13th St", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 13th St", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis street & Powell street", "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street", "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "101 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } , { "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.752530 ] } } -, -{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue", "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753073 ] } } -, -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } -, -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751172 ] } } -, -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.751715 ] } } -, -{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue", "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.750629 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750901 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.372246, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.372246, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.705825 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.705825 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.705825 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } , { "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } -, -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710714 ] } } , { "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , { "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784283 ] } } ] } ] } , @@ -18392,7 +18330,7 @@ , { "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } , @@ -18400,37 +18338,43 @@ , { "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.822260 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821989 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813310 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811683 ] } } , { "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.820633 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.820633 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } , { "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811411 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , { "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } , @@ -18467,2898 +18411,2972 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 198 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } , { "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722528 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724429 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724429 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727688 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719269 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719269 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , { "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } -, -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , { "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705689 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714924 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.706776 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715739 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715467 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.706504 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 197 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832294 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832294 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.536182, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.536182, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832429 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831616 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831616 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.527599, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.527599, 37.829040 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821853 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.523136, 37.831345 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833785 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833514 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833514 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833514 ] } } , -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829446 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798798 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796628 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771393 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747236 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.498760, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.499447, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743707 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.498760, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738006 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.490864, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.490864, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.485714, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.461681, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.461681, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754566 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754566 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778177 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774107 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778177 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778177 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.763251 ] } } , { "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756466 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } , { "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754566 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.757551 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750494 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754566 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750494 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750765 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.473354, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.736376 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738006 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743978 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.743435 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741535 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729860 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733118 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743435 ] } } +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.806393 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.808563 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.808021 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.808021 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807750 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807750 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.797984 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804495 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.807343 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797170 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795000 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794728 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.375164, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828091 ] } } +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826870 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.375164, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.376194, 37.825379 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.376194, 37.825379 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823209 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823209 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.824023 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.824023 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829175 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829175 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825108 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825108 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.371731, 37.816022 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.816158 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.371731, 37.816022 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822396 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811818 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811818 ] } } , -{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820768 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820768 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.787132 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755108 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.783876 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766508 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766508 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.757687 ] } } , { "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749408 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.747236 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.747236 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.743978 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746150 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730131 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740449 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.385807, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.736919 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.735833 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740449 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.385807, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714924 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715739 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715467 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767187 ] } } ] } ] } , diff --git a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json index 77a4a3ee5..705e84903 100644 --- a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_as_needed\":164,\"tile_size_desired\":39241},{\"dropped_as_needed\":187,\"tile_size_desired\":25163},{\"dropped_as_needed\":190,\"tiny_polygons\":1,\"tile_size_desired\":21214},{\"dropped_as_needed\":181,\"tile_size_desired\":10758},{\"dropped_as_needed\":147,\"tile_size_desired\":6601},{\"tiny_polygons\":2}]", +"strategies": "[{\"dropped_as_needed\":165,\"tile_size_desired\":39241},{\"dropped_as_needed\":189,\"tile_size_desired\":25163},{\"dropped_as_needed\":187,\"tiny_polygons\":1,\"tile_size_desired\":21214},{\"dropped_as_needed\":179,\"tile_size_desired\":10758},{\"dropped_as_needed\":146,\"tile_size_desired\":6601},{\"tiny_polygons\":2}]", "tippecanoe_decisions": "{\"basezoom\":0,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" @@ -18,29 +18,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.830078, 20.303418 ], [ -155.214844, 19.973349 ], [ -154.775391, 19.476950 ], [ -155.654297, 18.895893 ], [ -155.917969, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.830078, 19.973349 ], [ -155.830078, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.005859, 20.797201 ], [ -156.445312, 20.550509 ], [ -156.708984, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -156.796875, 21.043491 ], [ -157.324219, 21.125498 ], [ -157.236328, 21.207459 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -158.027344, 21.698265 ], [ -157.675781, 21.289374 ], [ -158.115234, 21.289374 ], [ -158.291016, 21.616579 ], [ -158.027344, 21.698265 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.345703, 22.187405 ], [ -159.345703, 21.943046 ], [ -159.433594, 21.861499 ], [ -159.785156, 22.105999 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -94.833984, 49.382373 ], [ -94.658203, 48.864715 ], [ -94.306641, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.791016, 48.283193 ], [ -89.560547, 47.989922 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.283193 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.619261 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.437857 ], [ -84.375000, 46.437857 ], [ -84.111328, 46.498392 ], [ -84.111328, 46.255847 ], [ -83.847656, 46.134170 ], [ -83.583984, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.583984, 45.828799 ], [ -82.529297, 45.336702 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.244141, 42.358544 ], [ -78.925781, 42.875964 ], [ -79.189453, 43.452919 ], [ -78.750000, 43.644026 ], [ -76.816406, 43.644026 ], [ -76.464844, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.367188, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.890008 ], [ -69.960938, 46.679594 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.159840 ], [ -68.203125, 47.338823 ], [ -67.763672, 47.040182 ], [ -67.763672, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.027344, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.488281, 41.836828 ], [ -70.048828, 41.771312 ], [ -70.224609, 42.163403 ], [ -69.873047, 41.902277 ], [ -69.960938, 41.640078 ], [ -72.861328, 41.244772 ], [ -73.740234, 40.913513 ], [ -72.246094, 41.112469 ], [ -71.982422, 40.913513 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.916016, 40.780541 ], [ -74.267578, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.707187 ], [ -74.882812, 38.959409 ], [ -74.970703, 39.164141 ], [ -75.498047, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.754083 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.025391, 37.230328 ], [ -75.761719, 37.926868 ], [ -76.201172, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.685510 ], [ -76.289062, 38.065392 ], [ -76.992188, 38.272689 ], [ -76.289062, 37.926868 ], [ -76.289062, 36.949892 ], [ -75.937500, 36.879621 ], [ -75.761719, 35.532226 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.046875, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.189453, 33.137551 ], [ -80.332031, 32.472695 ], [ -81.298828, 31.428663 ], [ -81.474609, 30.751278 ], [ -81.298828, 30.069094 ], [ -80.507812, 28.459033 ], [ -80.507812, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.799891 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.165173 ], [ -81.298828, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.880859, 27.916767 ], [ -82.617188, 28.536275 ], [ -82.968750, 29.075375 ], [ -83.671875, 29.916852 ], [ -84.111328, 30.069094 ], [ -85.078125, 29.611670 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.372875 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.372875 ], [ -89.560547, 30.145127 ], [ -89.384766, 29.916852 ], [ -89.472656, 29.458731 ], [ -89.208984, 29.305561 ], [ -89.384766, 29.152161 ], [ -89.736328, 29.305561 ], [ -90.175781, 29.152161 ], [ -90.878906, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.460938, 29.535230 ], [ -93.251953, 29.764377 ], [ -94.658203, 29.458731 ], [ -95.625000, 28.767659 ], [ -96.591797, 28.304381 ], [ -97.119141, 27.839076 ], [ -97.382812, 27.371767 ], [ -97.382812, 26.667096 ], [ -97.119141, 25.878994 ], [ -97.558594, 25.878994 ], [ -99.052734, 26.352498 ], [ -99.492188, 27.527758 ], [ -100.107422, 28.071980 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.764377 ], [ -102.480469, 29.764377 ], [ -103.095703, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.414062, 29.535230 ], [ -105.029297, 30.675715 ], [ -106.523438, 31.728167 ], [ -108.281250, 31.728167 ], [ -108.281250, 31.353637 ], [ -111.005859, 31.353637 ], [ -114.785156, 32.546813 ], [ -114.697266, 32.694866 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.388672, 33.724340 ], [ -118.476562, 34.016242 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.585938, 34.597042 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.519531, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.837891, 39.774769 ], [ -124.365234, 40.313043 ], [ -124.189453, 41.112469 ], [ -124.189453, 41.967659 ], [ -124.541016, 42.747012 ], [ -124.101562, 43.707594 ], [ -123.925781, 45.521744 ], [ -124.101562, 46.860191 ], [ -124.716797, 48.166085 ], [ -124.541016, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.338823 ], [ -122.871094, 48.980217 ], [ -95.185547, 48.980217 ], [ -95.185547, 49.382373 ], [ -94.833984, 49.382373 ] ] ], [ [ [ -156.621094, 71.357067 ], [ -155.039062, 71.159391 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.902268 ], [ -152.226562, 70.815812 ], [ -152.226562, 70.612614 ], [ -150.732422, 70.436799 ], [ -149.677734, 70.524897 ], [ -147.656250, 70.199994 ], [ -145.722656, 70.110485 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.140364 ], [ -142.031250, 69.839622 ], [ -140.976562, 69.718107 ], [ -140.976562, 60.326948 ], [ -140.009766, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.904646 ], [ -136.494141, 59.445075 ], [ -135.439453, 59.800634 ], [ -134.912109, 59.265881 ], [ -133.330078, 58.401712 ], [ -131.748047, 56.559482 ], [ -129.990234, 55.924586 ], [ -129.990234, 55.279115 ], [ -130.517578, 54.826008 ], [ -131.044922, 55.178868 ], [ -131.923828, 55.478853 ], [ -132.275391, 56.365250 ], [ -133.505859, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.493694 ], [ -139.833984, 59.534318 ], [ -142.558594, 60.064840 ], [ -143.964844, 60.020952 ], [ -145.898438, 60.457218 ], [ -147.128906, 60.887700 ], [ -148.183594, 60.673179 ], [ -148.007812, 59.977005 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.355596 ], [ -151.699219, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.716198 ], [ -150.380859, 61.015725 ], [ -150.644531, 61.270233 ], [ -151.875000, 60.716198 ], [ -152.578125, 60.064840 ], [ -153.984375, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.124320 ], [ -156.269531, 57.421294 ], [ -156.533203, 56.992883 ], [ -158.115234, 56.462490 ], [ -158.466797, 55.973798 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.627996 ], [ -163.037109, 54.673831 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.572062 ], [ -162.861328, 55.329144 ], [ -161.806641, 55.875311 ], [ -160.576172, 56.022948 ], [ -160.048828, 56.413901 ], [ -158.642578, 56.992883 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.562995 ], [ -157.587891, 58.309489 ], [ -157.060547, 58.904646 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.768200 ], [ -159.082031, 58.401712 ], [ -159.697266, 58.950008 ], [ -159.960938, 58.585436 ], [ -160.312500, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.265881 ], [ -161.894531, 59.623325 ], [ -162.509766, 59.977005 ], [ -163.828125, 59.800634 ], [ -164.619141, 60.283408 ], [ -165.322266, 60.500525 ], [ -165.322266, 61.058285 ], [ -166.113281, 61.480760 ], [ -165.761719, 62.062733 ], [ -164.882812, 62.633770 ], [ -164.531250, 63.154355 ], [ -163.740234, 63.233627 ], [ -163.037109, 63.074866 ], [ -162.246094, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.751953, 63.782486 ], [ -160.927734, 64.206377 ], [ -161.542969, 64.396938 ], [ -160.751953, 64.774125 ], [ -161.367188, 64.774125 ], [ -162.421875, 64.548440 ], [ -162.773438, 64.320872 ], [ -163.564453, 64.548440 ], [ -164.970703, 64.434892 ], [ -166.464844, 64.699105 ], [ -166.816406, 65.072130 ], [ -168.134766, 65.658275 ], [ -166.728516, 66.089364 ], [ -164.443359, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.722541 ], [ -163.740234, 67.101656 ], [ -164.443359, 67.609221 ], [ -165.410156, 68.040461 ], [ -166.728516, 68.366801 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -163.125000, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.894531, 70.318738 ], [ -160.927734, 70.436799 ], [ -159.082031, 70.902268 ], [ -158.115234, 70.815812 ], [ -156.621094, 71.357067 ] ] ], [ [ [ -153.193359, 57.984808 ], [ -152.578125, 57.891497 ], [ -152.138672, 57.610107 ], [ -153.017578, 57.136239 ], [ -153.984375, 56.752723 ], [ -154.511719, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.193359, 57.984808 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.430860 ], [ -168.662109, 63.312683 ], [ -168.750000, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.312683 ], [ -171.826172, 63.391522 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.370429 ], [ -165.673828, 60.283408 ], [ -165.585938, 59.888937 ], [ -166.201172, 59.756395 ], [ -167.431641, 60.196156 ], [ -166.464844, 60.370429 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.293564 ], [ -7.998047, 41.771312 ], [ -7.382812, 41.771312 ], [ -7.294922, 41.902277 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.376809 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.313043 ], [ -7.031250, 40.178873 ], [ -7.031250, 39.707187 ], [ -7.470703, 39.639538 ], [ -7.119141, 39.027719 ], [ -7.382812, 38.341656 ], [ -7.031250, 38.065392 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.090240 ], [ -7.822266, 36.809285 ], [ -8.349609, 36.949892 ], [ -8.876953, 36.879621 ], [ -8.789062, 37.649034 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.341656 ], [ -9.492188, 38.754083 ], [ -9.404297, 39.368279 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -9.052734, 41.902277 ], [ -8.261719, 42.293564 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.683528 ], [ -8.701172, 25.878994 ], [ -11.953125, 25.958045 ], [ -11.953125, 23.402765 ], [ -12.832031, 23.322080 ], [ -13.095703, 22.755921 ], [ -12.919922, 21.289374 ], [ -16.875000, 21.371244 ], [ -17.050781, 20.961440 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.589844, 21.861499 ], [ -14.238281, 22.350076 ], [ -13.886719, 23.725012 ], [ -12.480469, 24.766785 ], [ -12.041016, 26.037042 ], [ -11.689453, 26.115986 ], [ -11.425781, 26.902477 ], [ -10.546875, 26.980829 ], [ -9.755859, 26.824071 ], [ -9.404297, 27.059126 ], [ -8.789062, 27.137368 ], [ -8.789062, 27.683528 ], [ -8.701172, 27.683528 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.837891, 1.406109 ], [ -77.871094, 0.790990 ], [ -77.695312, 0.790990 ], [ -77.431641, 0.439449 ], [ -76.552734, 0.263671 ], [ -76.289062, 0.439449 ], [ -75.410156, -0.175781 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.581830 ], [ -76.640625, -2.635789 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.565474 ], [ -79.189453, -4.915833 ], [ -79.628906, -4.477856 ], [ -80.068359, -4.302591 ], [ -80.419922, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.156250, -3.864255 ], [ -80.332031, -3.425692 ], [ -79.804688, -2.635789 ], [ -79.980469, -2.196727 ], [ -80.332031, -2.723583 ], [ -80.947266, -2.284551 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -79.980469, 0.351560 ], [ -80.068359, 0.790990 ], [ -78.837891, 1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.554564 ], [ -13.798828, 12.125264 ], [ -13.710938, 11.781325 ], [ -14.414062, 11.523088 ], [ -14.677734, 11.523088 ], [ -15.117188, 11.005904 ], [ -15.644531, 11.436955 ], [ -16.083984, 11.523088 ], [ -16.699219, 12.382928 ], [ -15.556641, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.977614 ], [ 9.931641, 54.572062 ], [ 10.986328, 54.367759 ], [ 10.898438, 54.007769 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.470038 ], [ 13.623047, 54.059388 ], [ 14.150391, 53.748711 ], [ 14.326172, 53.225768 ], [ 14.062500, 52.961875 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.727028 ], [ 15.029297, 51.124213 ], [ 14.589844, 51.013755 ], [ 14.326172, 51.124213 ], [ 14.062500, 50.903033 ], [ 13.359375, 50.736455 ], [ 13.007812, 50.457504 ], [ 12.216797, 50.289339 ], [ 12.480469, 49.553726 ], [ 13.623047, 48.864715 ], [ 13.271484, 48.400032 ], [ 12.919922, 48.283193 ], [ 13.007812, 47.635784 ], [ 12.919922, 47.457809 ], [ 12.656250, 47.694974 ], [ 12.128906, 47.694974 ], [ 11.425781, 47.517201 ], [ 10.546875, 47.576526 ], [ 10.371094, 47.279229 ], [ 9.931641, 47.576526 ], [ 9.580078, 47.517201 ], [ 8.525391, 47.813155 ], [ 8.349609, 47.635784 ], [ 7.470703, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.679688, 49.210420 ], [ 6.152344, 49.439557 ], [ 6.240234, 49.894634 ], [ 6.064453, 50.120578 ], [ 6.152344, 50.792047 ], [ 5.976562, 51.835778 ], [ 6.591797, 51.835778 ], [ 6.855469, 52.214339 ], [ 7.119141, 53.120405 ], [ 6.943359, 53.488046 ], [ 7.119141, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.007769 ], [ 8.613281, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.316406, 54.826008 ], [ 9.931641, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ], [ -51.855469, 4.565474 ], [ -51.679688, 4.127285 ], [ -52.558594, 2.547988 ], [ -52.910156, 2.108899 ], [ -53.437500, 2.021065 ], [ -53.525391, 2.372369 ], [ -53.789062, 2.372369 ], [ -54.052734, 2.108899 ], [ -54.492188, 2.284551 ], [ -54.052734, 3.601142 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ] ] ], [ [ [ 2.548828, 51.124213 ], [ 2.636719, 50.792047 ], [ 3.164062, 50.792047 ], [ 4.306641, 49.894634 ], [ 4.833984, 50.007739 ], [ 5.712891, 49.553726 ], [ 6.152344, 49.439557 ], [ 6.679688, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.470703, 47.635784 ], [ 7.207031, 47.457809 ], [ 6.767578, 47.517201 ], [ 6.767578, 47.279229 ], [ 6.064453, 46.739861 ], [ 6.064453, 46.255847 ], [ 6.503906, 46.437857 ], [ 6.855469, 46.012224 ], [ 6.767578, 45.706179 ], [ 7.119141, 45.336702 ], [ 6.767578, 45.026950 ], [ 7.031250, 44.276671 ], [ 7.558594, 44.150681 ], [ 7.470703, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.570312, 43.389082 ], [ 3.076172, 43.068888 ], [ 2.988281, 42.488302 ], [ 1.845703, 42.358544 ], [ 0.703125, 42.811522 ], [ 0.351562, 42.553080 ], [ -1.494141, 43.004647 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.012224 ], [ -2.197266, 47.040182 ], [ -2.988281, 47.576526 ], [ -4.482422, 47.931066 ], [ -4.570312, 48.690960 ], [ -3.251953, 48.922499 ], [ -1.582031, 48.632909 ], [ -1.933594, 49.781264 ], [ -0.966797, 49.325122 ], [ 1.318359, 50.120578 ], [ 1.669922, 50.958427 ], [ 2.548828, 51.124213 ] ] ], [ [ [ 9.404297, 43.004647 ], [ 9.580078, 42.163403 ], [ 9.228516, 41.376809 ], [ 8.789062, 41.574361 ], [ 8.525391, 42.228517 ], [ 8.789062, 42.617791 ], [ 9.404297, 43.004647 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.248047, 43.516689 ], [ 19.599609, 43.197167 ], [ 20.302734, 42.875964 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.488302 ], [ 19.775391, 42.682435 ], [ 19.335938, 42.163403 ], [ 19.335938, 41.902277 ], [ 18.457031, 42.488302 ], [ 18.720703, 43.197167 ], [ 19.248047, 43.516689 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.498392 ], [ 17.666016, 45.951150 ], [ 18.457031, 45.767523 ], [ 18.808594, 45.890008 ], [ 19.423828, 45.213004 ], [ 18.984375, 44.840291 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.213004 ], [ 16.523438, 45.213004 ], [ 16.347656, 45.026950 ], [ 15.996094, 45.213004 ], [ 15.732422, 44.840291 ], [ 16.435547, 44.024422 ], [ 17.314453, 43.452919 ], [ 17.666016, 43.004647 ], [ 18.544922, 42.617791 ], [ 18.457031, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.962891, 43.197167 ], [ 15.996094, 43.516689 ], [ 15.205078, 44.213710 ], [ 15.380859, 44.339565 ], [ 14.941406, 44.715514 ], [ 14.941406, 45.089036 ], [ 14.238281, 45.213004 ], [ 13.974609, 44.777936 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.460131 ], [ 14.414062, 45.460131 ], [ 14.589844, 45.644768 ], [ 14.941406, 45.460131 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.706179 ], [ 15.644531, 45.828799 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.498392 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.630859, 48.224673 ], [ 26.894531, 48.107431 ], [ 28.125000, 46.800059 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.460131 ], [ 28.652344, 45.274886 ], [ 29.179688, 45.460131 ], [ 29.619141, 45.274886 ], [ 29.619141, 45.026950 ], [ 29.179688, 44.840291 ], [ 28.828125, 44.902578 ], [ 28.564453, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.246094, 44.150681 ], [ 26.103516, 43.961191 ], [ 25.576172, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.500000, 44.402392 ], [ 22.675781, 44.590467 ], [ 22.500000, 44.715514 ], [ 22.148438, 44.465151 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.151053 ], [ 20.917969, 45.398450 ], [ 20.742188, 45.706179 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 22.060547, 47.694974 ], [ 23.115234, 48.107431 ], [ 24.433594, 47.989922 ], [ 24.873047, 47.754098 ], [ 25.224609, 47.872144 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.630859, 48.224673 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.706179 ], [ 20.917969, 45.398450 ], [ 21.445312, 45.151053 ], [ 21.533203, 44.777936 ], [ 22.148438, 44.465151 ], [ 22.500000, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.500000, 44.402392 ], [ 22.675781, 44.213710 ], [ 22.412109, 44.024422 ], [ 22.500000, 43.644026 ], [ 23.027344, 43.197167 ], [ 22.587891, 42.875964 ], [ 22.412109, 42.553080 ], [ 22.587891, 42.488302 ], [ 22.412109, 42.293564 ], [ 21.533203, 42.228517 ], [ 21.796875, 42.682435 ], [ 21.621094, 42.682435 ], [ 20.830078, 43.261206 ], [ 20.654297, 43.197167 ], [ 20.478516, 42.875964 ], [ 20.214844, 42.811522 ], [ 20.302734, 42.875964 ], [ 19.599609, 43.197167 ], [ 19.248047, 43.516689 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.024422 ], [ 19.160156, 44.402392 ], [ 19.335938, 44.840291 ], [ 18.984375, 44.840291 ], [ 19.423828, 45.213004 ], [ 18.808594, 45.890008 ], [ 19.599609, 46.195042 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.054628 ], [ 9.492188, 0.966751 ], [ 9.316406, 1.142502 ], [ 9.667969, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.580391 ], [ 42.363281, 43.197167 ], [ 43.769531, 42.747012 ], [ 43.945312, 42.553080 ], [ 44.560547, 42.682435 ], [ 45.439453, 42.488302 ], [ 45.791016, 42.098222 ], [ 46.406250, 41.836828 ], [ 46.142578, 41.705729 ], [ 46.669922, 41.178654 ], [ 46.494141, 41.046217 ], [ 45.966797, 41.112469 ], [ 45.175781, 41.442726 ], [ 45.000000, 41.244772 ], [ 43.593750, 41.112469 ], [ 42.626953, 41.574361 ], [ 41.572266, 41.508577 ], [ 41.660156, 41.967659 ], [ 41.484375, 42.617791 ], [ 40.869141, 43.004647 ], [ 40.341797, 43.133061 ], [ 39.990234, 43.452919 ], [ 40.078125, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 23.402765 ], [ 23.818359, 19.559790 ], [ 23.906250, 15.623037 ], [ 23.027344, 15.707663 ], [ 22.324219, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.752725 ], [ 22.324219, 13.410994 ], [ 21.972656, 12.554564 ], [ 22.324219, 12.640338 ], [ 22.500000, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.350797 ], [ 22.851562, 11.178402 ], [ 22.236328, 11.005904 ], [ 21.708984, 10.574222 ], [ 21.005859, 9.449062 ], [ 20.039062, 9.015302 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.885147 ], [ 16.699219, 7.536764 ], [ 16.259766, 7.710992 ], [ 16.083984, 7.536764 ], [ 15.292969, 7.449624 ], [ 15.468750, 7.710992 ], [ 14.941406, 8.754795 ], [ 14.501953, 8.928487 ], [ 13.974609, 9.535749 ], [ 14.150391, 10.055403 ], [ 14.589844, 9.882275 ], [ 15.468750, 9.968851 ], [ 14.941406, 10.919618 ], [ 14.853516, 12.211180 ], [ 14.501953, 12.897489 ], [ 14.589844, 13.325485 ], [ 13.974609, 13.325485 ], [ 13.974609, 14.008696 ], [ 13.535156, 14.349548 ], [ 13.974609, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.895114 ], [ 15.644531, 19.973349 ], [ 15.908203, 20.385825 ], [ 15.468750, 20.715015 ], [ 15.468750, 21.043491 ], [ 15.117188, 21.289374 ], [ 14.853516, 22.836946 ], [ 15.820312, 23.402765 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.328125, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.591797, 25.244696 ], [ 51.416016, 24.607069 ], [ 51.152344, 24.527135 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 50.976562, 26.037042 ], [ 51.328125, 26.115986 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.501953, 12.897489 ], [ 14.853516, 12.211180 ], [ 14.941406, 10.919618 ], [ 15.468750, 9.968851 ], [ 14.589844, 9.882275 ], [ 14.150391, 10.055403 ], [ 13.974609, 9.535749 ], [ 14.501953, 8.928487 ], [ 14.941406, 8.754795 ], [ 15.468750, 7.710992 ], [ 14.765625, 6.402648 ], [ 14.501953, 6.227934 ], [ 14.501953, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 2.986927 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.196727 ], [ 9.667969, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.964844, 3.864255 ], [ 8.701172, 4.390229 ], [ 8.525391, 4.477856 ], [ 8.789062, 5.441022 ], [ 9.228516, 6.402648 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.013668 ], [ 10.458984, 7.013668 ], [ 11.074219, 6.664608 ], [ 11.777344, 7.013668 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.589844, 12.125264 ], [ 14.150391, 12.468760 ], [ 14.238281, 12.811801 ], [ 14.501953, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.871094, 35.460670 ], [ 78.925781, 34.307144 ], [ 78.837891, 33.504759 ], [ 79.189453, 32.990236 ], [ 79.189453, 32.472695 ], [ 78.486328, 32.620870 ], [ 78.750000, 31.503629 ], [ 81.123047, 30.221102 ], [ 80.507812, 29.764377 ], [ 80.068359, 28.767659 ], [ 83.320312, 27.371767 ], [ 84.638672, 27.215556 ], [ 85.253906, 26.745610 ], [ 87.187500, 26.431228 ], [ 88.066406, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.066406, 27.449790 ], [ 88.154297, 27.839076 ], [ 88.769531, 28.071980 ], [ 88.857422, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 92.021484, 26.824071 ], [ 92.109375, 27.449790 ], [ 91.669922, 27.761330 ], [ 92.460938, 27.916767 ], [ 93.427734, 28.613459 ], [ 94.570312, 29.305561 ], [ 95.361328, 28.998532 ], [ 96.152344, 29.458731 ], [ 96.591797, 28.844674 ], [ 96.240234, 28.381735 ], [ 97.294922, 28.226970 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.683528 ], [ 97.119141, 27.059126 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.185547, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.570312, 24.686952 ], [ 94.130859, 23.885838 ], [ 93.339844, 24.046464 ], [ 93.251953, 23.079732 ], [ 93.076172, 22.674847 ], [ 93.164062, 22.268764 ], [ 92.636719, 22.024546 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.483401 ], [ 91.494141, 24.046464 ], [ 91.933594, 24.126702 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 89.912109, 25.244696 ], [ 89.824219, 25.958045 ], [ 89.384766, 26.037042 ], [ 88.593750, 26.431228 ], [ 88.242188, 25.799891 ], [ 88.945312, 25.244696 ], [ 88.330078, 24.846565 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.206890 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 89.033203, 22.024546 ], [ 88.857422, 21.698265 ], [ 87.011719, 21.534847 ], [ 87.011719, 20.715015 ], [ 86.484375, 20.138470 ], [ 85.078125, 19.476950 ], [ 83.935547, 18.312811 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.551962 ], [ 80.771484, 15.961329 ], [ 80.332031, 15.876809 ], [ 80.068359, 15.114553 ], [ 80.244141, 12.983148 ], [ 79.892578, 12.039321 ], [ 79.892578, 10.314919 ], [ 79.365234, 10.314919 ], [ 78.925781, 9.535749 ], [ 79.189453, 9.188870 ], [ 78.310547, 8.928487 ], [ 77.958984, 8.233237 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.761719, 11.350797 ], [ 74.882812, 12.726084 ], [ 74.443359, 14.604847 ], [ 73.564453, 15.961329 ], [ 72.861328, 19.228177 ], [ 72.861328, 20.385825 ], [ 72.597656, 21.371244 ], [ 71.191406, 20.797201 ], [ 70.488281, 20.879343 ], [ 69.169922, 22.105999 ], [ 69.609375, 22.431340 ], [ 69.345703, 22.836946 ], [ 68.203125, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.312500, 25.720735 ], [ 70.136719, 26.509905 ], [ 69.521484, 26.902477 ], [ 70.576172, 27.994401 ], [ 71.806641, 27.916767 ], [ 72.861328, 28.998532 ], [ 73.476562, 29.993002 ], [ 74.443359, 30.977609 ], [ 74.443359, 31.728167 ], [ 75.234375, 32.249974 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.307144 ], [ 74.267578, 34.741612 ], [ 75.761719, 34.524661 ], [ 76.904297, 34.669359 ], [ 77.871094, 35.460670 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 23.402765 ], [ 23.818359, 19.559790 ], [ 23.906250, 15.623037 ], [ 23.027344, 15.707663 ], [ 22.324219, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.752725 ], [ 22.324219, 13.410994 ], [ 21.972656, 12.554564 ], [ 22.324219, 12.640338 ], [ 22.500000, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.350797 ], [ 22.851562, 11.178402 ], [ 22.236328, 11.005904 ], [ 21.708984, 10.574222 ], [ 21.005859, 9.449062 ], [ 20.039062, 9.015302 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.885147 ], [ 16.699219, 7.536764 ], [ 16.259766, 7.710992 ], [ 16.083984, 7.536764 ], [ 15.292969, 7.449624 ], [ 15.468750, 7.710992 ], [ 14.941406, 8.754795 ], [ 14.501953, 8.928487 ], [ 13.974609, 9.535749 ], [ 14.150391, 10.055403 ], [ 14.589844, 9.882275 ], [ 15.468750, 9.968851 ], [ 14.941406, 10.919618 ], [ 14.853516, 12.211180 ], [ 14.501953, 12.897489 ], [ 14.589844, 13.325485 ], [ 13.974609, 13.325485 ], [ 13.974609, 14.008696 ], [ 13.535156, 14.349548 ], [ 13.974609, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.895114 ], [ 15.644531, 19.973349 ], [ 15.908203, 20.385825 ], [ 15.468750, 20.715015 ], [ 15.468750, 21.043491 ], [ 15.117188, 21.289374 ], [ 14.853516, 22.836946 ], [ 15.820312, 23.402765 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.488281, 5.441022 ], [ 115.312500, 4.302591 ], [ 114.873047, 4.390229 ], [ 114.697266, 4.039618 ], [ 114.169922, 4.565474 ], [ 115.488281, 5.441022 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.175612 ], [ 40.429688, 31.877558 ], [ 41.923828, 31.203405 ], [ 44.736328, 29.152161 ], [ 47.460938, 28.998532 ], [ 47.724609, 28.536275 ], [ 48.427734, 28.536275 ], [ 48.779297, 27.683528 ], [ 49.306641, 27.449790 ], [ 49.482422, 27.137368 ], [ 50.185547, 26.667096 ], [ 50.097656, 25.958045 ], [ 50.273438, 25.641526 ], [ 50.800781, 24.766785 ], [ 51.152344, 24.527135 ], [ 51.416016, 24.607069 ], [ 52.031250, 22.998852 ], [ 55.019531, 22.512557 ], [ 55.195312, 22.674847 ], [ 55.634766, 22.024546 ], [ 55.019531, 19.973349 ], [ 52.031250, 18.979026 ], [ 49.130859, 18.646245 ], [ 48.164062, 18.145852 ], [ 47.460938, 17.140790 ], [ 47.021484, 16.972741 ], [ 46.757812, 17.308688 ], [ 46.406250, 17.224758 ], [ 45.175781, 17.392579 ], [ 43.769531, 17.308688 ], [ 43.417969, 17.560247 ], [ 43.154297, 17.056785 ], [ 43.242188, 16.636192 ], [ 42.802734, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.363281, 17.056785 ], [ 42.275391, 17.476432 ], [ 41.748047, 17.811456 ], [ 41.220703, 18.646245 ], [ 40.957031, 19.476950 ], [ 40.253906, 20.138470 ], [ 39.814453, 20.303418 ], [ 39.111328, 21.289374 ], [ 39.023438, 22.593726 ], [ 38.496094, 23.725012 ], [ 38.056641, 24.046464 ], [ 37.441406, 24.287027 ], [ 36.914062, 25.641526 ], [ 36.650391, 25.799891 ], [ 36.210938, 26.588527 ], [ 35.156250, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.980469, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.840644 ], [ 37.529297, 29.993002 ], [ 37.705078, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.503629 ], [ 39.023438, 32.026706 ], [ 39.199219, 32.175612 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.538376 ], [ 30.322266, -15.876809 ], [ 31.201172, -15.876809 ], [ 31.816406, -16.299051 ], [ 32.343750, -16.383391 ], [ 32.871094, -16.720385 ], [ 32.871094, -17.978733 ], [ 32.607422, -19.394068 ], [ 32.783203, -19.725342 ], [ 32.695312, -20.303418 ], [ 32.519531, -20.385825 ], [ 32.255859, -21.125498 ], [ 31.201172, -22.268764 ], [ 30.673828, -22.187405 ], [ 30.322266, -22.268764 ], [ 29.443359, -22.105999 ], [ 28.828125, -21.616579 ], [ 28.037109, -21.453069 ], [ 27.685547, -20.879343 ], [ 27.685547, -20.468189 ], [ 27.333984, -20.385825 ], [ 26.191406, -19.311143 ], [ 25.224609, -17.727759 ], [ 27.070312, -17.978733 ], [ 28.476562, -16.467695 ], [ 28.828125, -16.383391 ], [ 28.916016, -16.045813 ], [ 29.531250, -15.623037 ], [ 30.234375, -15.538376 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.332031, 5.528511 ], [ 35.859375, 5.353521 ], [ 35.859375, 4.740675 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.144531, 3.601142 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.781250, 4.214943 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.108899 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.814453, -3.688855 ], [ 39.638672, -4.390229 ], [ 39.199219, -4.653080 ], [ 37.792969, -3.688855 ], [ 37.705078, -3.074695 ], [ 33.925781, -0.966751 ], [ 33.925781, 0.087891 ], [ 35.068359, 1.933227 ], [ 34.453125, 3.513421 ], [ 34.013672, 4.214943 ], [ 35.332031, 5.528511 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.635789 ], [ 144.580078, -3.864255 ], [ 145.810547, -4.915833 ], [ 145.986328, -5.441022 ], [ 147.656250, -6.053161 ], [ 147.919922, -6.577303 ], [ 146.953125, -6.751896 ], [ 147.216797, -7.362467 ], [ 148.095703, -8.059230 ], [ 148.710938, -9.102097 ], [ 149.326172, -9.102097 ], [ 149.238281, -9.535749 ], [ 150.029297, -9.709057 ], [ 149.765625, -9.882275 ], [ 150.820312, -10.314919 ], [ 150.732422, -10.574222 ], [ 150.029297, -10.660608 ], [ 149.765625, -10.401378 ], [ 147.919922, -10.141932 ], [ 146.601562, -8.928487 ], [ 146.074219, -8.059230 ], [ 144.755859, -7.623887 ], [ 143.261719, -8.233237 ], [ 143.437500, -9.015302 ], [ 142.646484, -9.362353 ], [ 142.031250, -9.188870 ], [ 141.064453, -9.102097 ], [ 140.976562, -2.635789 ] ] ], [ [ [ 152.138672, -4.127285 ], [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.878332 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.359375, -5.703448 ], [ 148.359375, -5.441022 ], [ 149.326172, -5.615986 ], [ 149.853516, -5.528511 ], [ 150.029297, -5.003394 ], [ 150.117188, -5.003394 ], [ 150.205078, -5.528511 ], [ 150.820312, -5.441022 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.138672, -4.127285 ] ] ], [ [ [ 154.687500, -5.003394 ], [ 154.775391, -5.353521 ], [ 156.005859, -6.577303 ], [ 155.917969, -6.839170 ], [ 155.566406, -6.926427 ], [ 155.126953, -6.577303 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.178482 ], [ 154.687500, -5.003394 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.250209 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.841797, -4.740675 ], [ 152.402344, -3.776559 ], [ 151.347656, -3.074695 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.088462 ], [ -43.330078, -80.027655 ], [ -44.912109, -80.342262 ], [ -46.494141, -80.589727 ], [ -48.427734, -80.830907 ], [ -50.449219, -81.024916 ], [ -52.822266, -80.969904 ], [ -54.140625, -80.632740 ], [ -53.964844, -80.223588 ], [ -51.855469, -79.951265 ], [ -50.976562, -79.608215 ], [ -49.921875, -78.819036 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.042864 ], [ -60.117188, -80.997452 ], [ -62.226562, -80.858875 ], [ -64.511719, -80.928426 ], [ -65.742188, -80.589727 ], [ -66.269531, -80.253391 ], [ -64.072266, -80.297927 ], [ -61.875000, -80.386396 ], [ -60.644531, -79.624056 ] ] ], [ [ [ -57.832031, -63.273182 ], [ -57.216797, -63.509375 ], [ -57.568359, -63.860036 ], [ -58.623047, -64.168107 ], [ -59.062500, -64.358931 ], [ -59.765625, -64.206377 ], [ -60.644531, -64.320872 ], [ -62.050781, -64.811557 ], [ -62.490234, -65.109148 ], [ -62.666016, -65.476508 ], [ -62.578125, -65.874725 ], [ -62.138672, -66.196009 ], [ -62.841797, -66.407955 ], [ -63.720703, -66.513260 ], [ -65.478516, -67.575717 ], [ -65.654297, -67.941650 ], [ -65.302734, -68.366801 ], [ -64.775391, -68.688521 ], [ -63.984375, -68.911005 ], [ -63.193359, -69.224997 ], [ -62.753906, -69.626510 ], [ -62.314453, -70.377854 ], [ -61.787109, -70.728979 ], [ -61.523438, -71.102543 ], [ -61.347656, -72.019729 ], [ -60.732422, -73.175897 ], [ -60.820312, -73.701948 ], [ -61.347656, -74.116047 ], [ -61.962891, -74.449358 ], [ -63.281250, -74.566736 ], [ -64.335938, -75.253057 ], [ -65.830078, -75.628632 ], [ -67.236328, -75.802118 ], [ -69.785156, -76.226907 ], [ -70.576172, -76.639226 ], [ -72.246094, -76.679785 ], [ -74.003906, -76.639226 ], [ -75.585938, -76.720223 ], [ -77.255859, -76.720223 ], [ -76.904297, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.267578, -77.561042 ], [ -73.652344, -77.915669 ], [ -74.794922, -78.224513 ], [ -76.464844, -78.116408 ], [ -77.958984, -78.384855 ], [ -78.046875, -79.187834 ], [ -76.816406, -79.512662 ], [ -76.640625, -79.889737 ], [ -75.322266, -80.253391 ], [ -73.212891, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.321593 ], [ -65.742188, -81.479293 ], [ -63.281250, -81.748454 ], [ -59.677734, -82.379147 ], [ -58.710938, -82.842440 ], [ -58.183594, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.613281, -82.261699 ], [ -51.503906, -82.009169 ], [ -49.746094, -81.723188 ], [ -47.285156, -81.710526 ], [ -44.824219, -81.848756 ], [ -42.802734, -82.082145 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.361287 ], [ -38.232422, -81.334844 ], [ -34.365234, -80.900669 ], [ -30.058594, -80.589727 ], [ -28.564453, -80.342262 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.639874 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.302640 ], [ -33.662109, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.088462 ], [ -35.771484, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.655346 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.679785 ], [ -25.488281, -76.289542 ], [ -23.906250, -76.247817 ], [ -22.500000, -76.100796 ], [ -20.039062, -75.672197 ], [ -17.490234, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.380859, -74.116047 ], [ -16.435547, -73.873717 ], [ -16.083984, -73.453473 ], [ -15.468750, -73.150440 ], [ -13.271484, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.019729 ], [ -10.986328, -71.552741 ], [ -10.283203, -71.272595 ], [ -9.140625, -71.328950 ], [ -8.613281, -71.663663 ], [ -7.382812, -71.691293 ], [ -7.382812, -71.328950 ], [ -6.855469, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.413177 ], [ -4.306641, -71.469124 ], [ -1.757812, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.878906, -71.300793 ], [ 1.845703, -71.130988 ], [ 4.130859, -70.844673 ], [ 5.185547, -70.612614 ], [ 6.240234, -70.466207 ], [ 7.119141, -70.259452 ], [ 7.734375, -69.900118 ], [ 8.525391, -70.140364 ], [ 9.492188, -70.020587 ], [ 10.810547, -70.844673 ], [ 11.953125, -70.641769 ], [ 12.392578, -70.259452 ], [ 13.447266, -69.960439 ], [ 14.765625, -70.020587 ], [ 15.117188, -70.407348 ], [ 15.908203, -70.020587 ], [ 17.050781, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.900118 ], [ 21.445312, -70.080562 ], [ 21.884766, -70.407348 ], [ 22.587891, -70.699951 ], [ 23.642578, -70.524897 ], [ 27.070312, -70.466207 ], [ 29.179688, -70.199994 ], [ 30.058594, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.992188, -69.657086 ], [ 32.783203, -69.380313 ], [ 33.310547, -68.847665 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.332031, -69.005675 ], [ 36.123047, -69.256149 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.534518 ], [ 38.671875, -69.778952 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.957031, -68.942607 ], [ 41.923828, -68.592487 ], [ 44.121094, -68.269387 ], [ 46.494141, -67.609221 ], [ 47.460938, -67.709445 ], [ 48.955078, -67.101656 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.976562, -66.513260 ], [ 52.646484, -66.053716 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.982270 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.687784 ], [ 58.710938, -67.272043 ], [ 59.941406, -67.407487 ], [ 61.435547, -67.941650 ], [ 62.402344, -68.007571 ], [ 63.193359, -67.809245 ], [ 64.072266, -67.407487 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.941650 ], [ 68.906250, -67.941650 ], [ 69.697266, -68.974164 ], [ 69.697266, -69.224997 ], [ 69.521484, -69.687618 ], [ 68.554688, -69.930300 ], [ 67.851562, -70.318738 ], [ 67.939453, -70.699951 ], [ 69.082031, -70.670881 ], [ 68.906250, -71.074056 ], [ 67.939453, -71.856229 ], [ 68.730469, -72.154890 ], [ 69.873047, -72.262310 ], [ 71.015625, -72.100944 ], [ 71.894531, -71.328950 ], [ 73.125000, -70.728979 ], [ 73.828125, -69.869892 ], [ 74.531250, -69.778952 ], [ 75.585938, -69.748551 ], [ 77.607422, -69.472969 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.334376 ], [ 80.947266, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.089844, -67.373698 ], [ 82.792969, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.693359, -67.101656 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.857422, -66.964476 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.238062 ], [ 91.582031, -67.101656 ], [ 93.515625, -67.204032 ], [ 94.218750, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.800781, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.701172, -67.101656 ], [ 99.755859, -67.238062 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.982270 ], [ 106.171875, -66.930060 ], [ 108.105469, -66.964476 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.642578, -65.874725 ], [ 114.345703, -66.089364 ], [ 115.576172, -66.687784 ], [ 116.718750, -66.652977 ], [ 117.421875, -66.930060 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.272043 ], [ 120.849609, -67.204032 ], [ 122.343750, -66.548263 ], [ 123.222656, -66.478208 ], [ 125.156250, -66.722541 ], [ 126.123047, -66.548263 ], [ 127.001953, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.978516, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.730626 ], [ 135.087891, -65.293468 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.018018 ], [ 136.582031, -66.791909 ], [ 137.460938, -66.964476 ], [ 140.800781, -66.826520 ], [ 143.085938, -66.791909 ], [ 145.458984, -66.930060 ], [ 146.162109, -67.238062 ], [ 145.986328, -67.609221 ], [ 146.689453, -67.908619 ], [ 148.798828, -68.399180 ], [ 152.490234, -68.879358 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.917969, -69.162558 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.697266, -69.990535 ], [ 160.839844, -70.229744 ], [ 161.542969, -70.583418 ], [ 162.685547, -70.728979 ], [ 166.113281, -70.757966 ], [ 167.343750, -70.844673 ], [ 168.398438, -70.959697 ], [ 170.507812, -71.413177 ], [ 171.210938, -71.691293 ], [ 171.123047, -72.100944 ], [ 170.595703, -72.448792 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.824820 ], [ 167.343750, -74.164085 ], [ 166.113281, -74.378513 ], [ 165.673828, -74.775843 ], [ 164.267578, -75.453071 ], [ 163.564453, -76.247817 ], [ 163.476562, -76.700019 ], [ 163.476562, -77.059116 ], [ 164.091797, -77.466028 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.188586 ], [ 166.640625, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.234375, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.806641, -79.154810 ], [ 160.927734, -79.734281 ], [ 160.751953, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.281717 ], [ 161.630859, -81.685144 ], [ 162.509766, -82.057893 ], [ 163.740234, -82.390794 ], [ 166.640625, -83.026219 ], [ 168.925781, -83.339153 ], [ 169.365234, -83.829945 ], [ 172.265625, -84.043447 ], [ 173.232422, -84.414502 ], [ 175.957031, -84.160849 ], [ 180.000000, -84.714152 ], [ 180.087891, -84.722243 ], [ 180.966797, -84.142939 ], [ 182.724609, -84.457112 ], [ 183.955078, -84.097922 ], [ 184.130859, -84.115970 ], [ 185.625000, -84.532994 ], [ 187.031250, -84.079819 ], [ 187.031250, -85.622069 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.310902 ], [ -186.767578, -84.414502 ], [ -184.042969, -84.160849 ], [ -180.000000, -84.714152 ], [ -179.912109, -84.722243 ], [ -179.033203, -84.142939 ], [ -177.275391, -84.457112 ], [ -176.044922, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.375000, -84.532994 ], [ -172.880859, -84.061661 ], [ -169.980469, -83.886366 ], [ -166.992188, -84.566386 ], [ -164.179688, -84.826305 ], [ -162.597656, -85.051129 ], [ -161.894531, -85.141284 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.908203, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.316708 ], [ -143.173828, -85.051129 ], [ -143.085938, -85.043541 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.532994 ], [ -150.029297, -84.293450 ], [ -150.908203, -83.905058 ], [ -153.544922, -83.686615 ], [ -153.369141, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.841797, -82.045740 ], [ -154.511719, -81.773644 ], [ -155.302734, -81.413933 ], [ -156.796875, -81.106811 ], [ -154.423828, -81.160996 ], [ -152.138672, -80.997452 ], [ -150.644531, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.216797, -80.675559 ], [ -146.425781, -80.342262 ], [ -146.777344, -79.920548 ], [ -149.501953, -79.351472 ], [ -151.611328, -79.302640 ], [ -153.369141, -79.154810 ], [ -155.302734, -79.071812 ], [ -156.005859, -78.699106 ], [ -157.236328, -78.384855 ], [ -158.027344, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.851562, -76.980149 ], [ -156.972656, -77.293202 ], [ -155.302734, -77.196176 ], [ -153.720703, -77.059116 ], [ -152.929688, -77.504119 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.710938, -76.900709 ], [ -147.656250, -76.578159 ], [ -146.074219, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.737303 ], [ -146.162109, -75.386696 ], [ -144.931641, -75.208245 ], [ -144.316406, -75.541113 ], [ -142.822266, -75.342282 ], [ -141.679688, -75.095633 ], [ -140.185547, -75.073010 ], [ -138.867188, -74.959392 ], [ -135.175781, -74.307353 ], [ -133.769531, -74.449358 ], [ -132.275391, -74.307353 ], [ -130.957031, -74.472903 ], [ -129.550781, -74.449358 ], [ -128.232422, -74.331108 ], [ -125.419922, -74.519889 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.519889 ], [ -119.707031, -74.472903 ], [ -118.652344, -74.188052 ], [ -117.509766, -74.019543 ], [ -116.191406, -74.235878 ], [ -115.048828, -74.067866 ], [ -113.906250, -73.726595 ], [ -113.291016, -74.019543 ], [ -112.939453, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.425777 ], [ -110.039062, -74.798906 ], [ -108.720703, -74.913708 ], [ -107.578125, -75.185789 ], [ -106.171875, -75.118222 ], [ -104.853516, -74.959392 ], [ -103.359375, -74.982183 ], [ -100.634766, -75.297735 ], [ -100.107422, -74.867889 ], [ -101.250000, -74.188052 ], [ -102.568359, -74.116047 ], [ -103.095703, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.764065 ], [ -101.601562, -72.816074 ], [ -100.283203, -72.764065 ], [ -99.140625, -72.919635 ], [ -98.085938, -73.201317 ], [ -97.646484, -73.553302 ], [ -96.328125, -73.627789 ], [ -92.460938, -73.175897 ], [ -91.406250, -73.403338 ], [ -90.087891, -73.327858 ], [ -89.208984, -72.554498 ], [ -88.417969, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.099413 ], [ -85.166016, -73.478485 ], [ -83.847656, -73.528399 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.683594, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.277344, -73.528399 ], [ -77.958984, -73.428424 ], [ -76.904297, -73.627789 ], [ -76.201172, -73.971078 ], [ -74.882812, -73.873717 ], [ -72.861328, -73.403338 ], [ -68.906250, -72.996909 ], [ -67.939453, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.236328, -71.635993 ], [ -68.466797, -70.110485 ], [ -68.554688, -69.718107 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.412109, -68.138852 ], [ -67.763672, -67.339861 ], [ -67.236328, -66.861082 ], [ -66.093750, -66.196009 ], [ -64.599609, -65.585720 ], [ -64.160156, -65.183030 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.586185 ], [ -61.435547, -64.282760 ], [ -60.732422, -64.091408 ], [ -59.853516, -63.937372 ], [ -59.150391, -63.704722 ], [ -58.623047, -63.391522 ], [ -57.832031, -63.273182 ] ] ], [ [ [ -163.125000, -78.224513 ], [ -161.279297, -78.384855 ], [ -160.224609, -78.699106 ], [ -159.521484, -79.038437 ], [ -159.169922, -79.496652 ], [ -161.103516, -79.639874 ], [ -162.421875, -79.286313 ], [ -163.037109, -78.870048 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.224513 ] ] ], [ [ [ -122.431641, -73.327858 ], [ -119.882812, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.267578, -73.824820 ], [ -120.234375, -74.091974 ], [ -121.640625, -74.019543 ], [ -122.607422, -73.652545 ], [ -122.431641, -73.327858 ] ] ], [ [ [ -126.562500, -73.252045 ], [ -124.013672, -73.873717 ], [ -125.947266, -73.726595 ], [ -127.265625, -73.453473 ], [ -126.562500, -73.252045 ] ] ], [ [ [ -101.689453, -71.718882 ], [ -100.458984, -71.856229 ], [ -98.964844, -71.938158 ], [ -97.910156, -72.073911 ], [ -96.767578, -71.965388 ], [ -96.240234, -72.528130 ], [ -96.943359, -72.448792 ], [ -98.173828, -72.475276 ], [ -99.404297, -72.448792 ], [ -100.810547, -72.501722 ], [ -101.777344, -72.315785 ], [ -102.304688, -71.883578 ], [ -101.689453, -71.718882 ] ] ], [ [ [ -70.224609, -68.879358 ], [ -69.697266, -69.256149 ], [ -68.466797, -70.959697 ], [ -68.291016, -71.413177 ], [ -68.818359, -72.181804 ], [ -69.960938, -72.315785 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.894531, -72.100944 ], [ -74.179688, -72.369105 ], [ -74.970703, -72.073911 ], [ -74.970703, -71.663663 ], [ -73.916016, -71.272595 ], [ -73.212891, -71.159391 ], [ -72.070312, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.718750, -69.503765 ], [ -71.191406, -69.037142 ], [ -70.224609, -68.879358 ] ] ] ] } } ] } ] } , @@ -48,7 +46,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.379883, 3.513421 ], [ -64.423828, 3.118576 ], [ -64.248047, 2.504085 ], [ -63.413086, 2.416276 ], [ -63.369141, 2.196727 ], [ -64.072266, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.346680, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.313477, 0.703107 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.240640 ], [ -67.456055, 2.591889 ], [ -67.807617, 2.811371 ], [ -67.324219, 3.337954 ], [ -67.324219, 3.513421 ], [ -64.379883, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.643063 ], [ -68.642578, -54.876607 ], [ -66.972656, -54.901882 ], [ -67.280273, -55.304138 ], [ -68.159180, -55.603178 ], [ -68.642578, -55.578345 ], [ -69.213867, -55.503750 ], [ -69.960938, -55.203953 ], [ -71.015625, -55.053203 ], [ -72.246094, -54.495568 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.828125, -53.041213 ], [ -72.421875, -53.722717 ], [ -71.103516, -54.085173 ], [ -70.576172, -53.618579 ], [ -70.268555, -52.935397 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.082031, -18.271086 ], [ -68.950195, -18.979026 ], [ -68.422852, -19.394068 ], [ -68.774414, -20.385825 ], [ -68.203125, -21.493964 ], [ -67.807617, -22.877440 ], [ -67.104492, -22.755921 ], [ -66.972656, -22.998852 ], [ -67.324219, -24.006326 ], [ -68.422852, -24.527135 ], [ -68.378906, -26.194877 ], [ -68.598633, -26.509905 ], [ -68.291016, -26.902477 ], [ -68.994141, -27.527758 ], [ -69.653320, -28.459033 ], [ -70.004883, -29.382175 ], [ -69.916992, -30.334954 ], [ -70.532227, -31.353637 ], [ -70.092773, -33.100745 ], [ -69.829102, -33.284620 ], [ -69.829102, -34.198173 ], [ -70.400391, -35.173808 ], [ -70.356445, -35.995785 ], [ -71.103516, -36.668419 ], [ -71.103516, -37.579413 ], [ -70.795898, -38.548165 ], [ -71.411133, -38.925229 ], [ -71.894531, -40.847060 ], [ -71.762695, -42.065607 ], [ -72.158203, -42.261049 ], [ -71.894531, -43.421009 ], [ -71.455078, -43.802819 ], [ -71.806641, -44.213710 ], [ -71.323242, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.542969, -45.552525 ], [ -71.938477, -46.890232 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.253941 ], [ -72.641602, -48.864715 ], [ -73.432617, -49.325122 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.290039, -50.680797 ], [ -72.333984, -51.426614 ], [ -71.894531, -51.998410 ], [ -69.477539, -52.133488 ], [ -68.554688, -52.295042 ], [ -69.477539, -52.295042 ], [ -69.960938, -52.536273 ], [ -70.839844, -52.908902 ], [ -71.015625, -53.826597 ], [ -71.411133, -53.852527 ], [ -72.553711, -53.540307 ], [ -73.696289, -52.829321 ], [ -74.926758, -52.268157 ], [ -75.278320, -51.618017 ], [ -74.970703, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.724545 ], [ -74.135742, -46.950262 ], [ -75.629883, -46.649436 ], [ -74.707031, -45.767523 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.465151 ], [ -72.729492, -42.391009 ], [ -73.388672, -42.130821 ], [ -73.696289, -43.357138 ], [ -74.311523, -43.229195 ], [ -73.696289, -39.943436 ], [ -73.212891, -39.266284 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.160317 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.496456 ], [ -71.850586, -33.906896 ], [ -71.455078, -32.435613 ], [ -71.674805, -30.902225 ], [ -71.367188, -30.107118 ], [ -71.499023, -28.844674 ], [ -70.883789, -27.644606 ], [ -70.708008, -25.720735 ], [ -70.092773, -21.412162 ], [ -70.180664, -19.766704 ], [ -70.356445, -18.354526 ], [ -69.873047, -18.104087 ], [ -69.609375, -17.560247 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.075195, 3.513421 ], [ -52.558594, 2.504085 ], [ -52.954102, 2.108899 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.328460 ], [ -53.789062, 2.372369 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.723583 ], [ -54.052734, 3.513421 ], [ -52.075195, 3.513421 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.669922, -77.832589 ], [ -45.175781, -78.043795 ], [ -43.901367, -78.481780 ], [ -43.505859, -79.088462 ], [ -43.374023, -79.512662 ], [ -43.330078, -80.027655 ], [ -44.868164, -80.342262 ], [ -46.494141, -80.596909 ], [ -48.383789, -80.830907 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.969904 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.223588 ], [ -51.855469, -79.951265 ], [ -50.976562, -79.616138 ], [ -49.921875, -78.810511 ], [ -48.647461, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.832589 ] ] ], [ [ [ -169.936523, -83.886366 ], [ -167.036133, -84.570546 ], [ -164.179688, -84.826305 ], [ -162.553711, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -183.515625, -85.345325 ], [ -183.515625, -84.227529 ], [ -181.713867, -84.474065 ], [ -180.000000, -84.714152 ], [ -179.956055, -84.722243 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.825195, -84.115970 ], [ -174.375000, -84.532994 ], [ -173.100586, -84.115970 ], [ -172.880859, -84.061661 ], [ -169.936523, -83.886366 ] ] ], [ [ [ -157.763672, -85.345325 ], [ -155.170898, -85.100168 ], [ -150.952148, -85.295131 ], [ -150.556641, -85.345325 ], [ -157.763672, -85.345325 ] ] ], [ [ [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.085938, -85.039743 ], [ -142.910156, -84.570546 ], [ -146.821289, -84.532994 ], [ -150.073242, -84.297818 ], [ -150.908203, -83.905058 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.454537 ], [ -152.841797, -82.039656 ], [ -154.511719, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.160996 ], [ -152.094727, -81.004326 ], [ -150.644531, -81.334844 ], [ -148.886719, -81.045460 ], [ -147.216797, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.928236 ], [ -148.051758, -79.655668 ], [ -149.545898, -79.359590 ], [ -151.567383, -79.302640 ], [ -153.369141, -79.163075 ], [ -155.346680, -79.063478 ], [ -155.961914, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.890745 ], [ -157.895508, -76.990046 ], [ -156.972656, -77.302864 ], [ -155.346680, -77.205912 ], [ -153.764648, -77.068954 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.399095 ], [ -149.985352, -77.186434 ], [ -148.754883, -76.910665 ], [ -147.612305, -76.578159 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.737303 ], [ -146.206055, -75.375605 ], [ -144.887695, -75.208245 ], [ -144.316406, -75.541113 ], [ -142.778320, -75.342282 ], [ -141.635742, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.970791 ], [ -135.219727, -74.307353 ], [ -134.428711, -74.366675 ], [ -133.725586, -74.437572 ], [ -132.275391, -74.307353 ], [ -130.913086, -74.484662 ], [ -129.550781, -74.461134 ], [ -128.232422, -74.319235 ], [ -125.419922, -74.519889 ], [ -124.013672, -74.484662 ], [ -121.069336, -74.519889 ], [ -119.707031, -74.484662 ], [ -118.696289, -74.188052 ], [ -117.465820, -74.031637 ], [ -116.235352, -74.247813 ], [ -115.004883, -74.067866 ], [ -113.950195, -73.714276 ], [ -113.291016, -74.031637 ], [ -112.939453, -74.378513 ], [ -112.280273, -74.718037 ], [ -111.269531, -74.425777 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.913708 ], [ -107.578125, -75.185789 ], [ -106.127930, -75.129504 ], [ -104.897461, -74.947983 ], [ -103.359375, -74.993566 ], [ -101.997070, -75.129504 ], [ -100.634766, -75.297735 ], [ -100.107422, -74.867889 ], [ -100.766602, -74.543330 ], [ -101.250000, -74.188052 ], [ -102.524414, -74.104015 ], [ -103.095703, -73.738905 ], [ -103.666992, -72.620252 ], [ -102.919922, -72.751039 ], [ -101.601562, -72.816074 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.328125, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.289993 ], [ -92.460938, -73.163173 ], [ -91.406250, -73.403338 ], [ -90.087891, -73.327858 ], [ -89.208984, -72.554498 ], [ -88.417969, -73.009755 ], [ -87.275391, -73.188612 ], [ -86.000977, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.661133, -73.640171 ], [ -81.474609, -73.849286 ], [ -80.683594, -73.478485 ], [ -80.288086, -73.124945 ], [ -79.277344, -73.515935 ], [ -77.915039, -73.415885 ], [ -76.904297, -73.640171 ], [ -76.201172, -73.971078 ], [ -74.882812, -73.873717 ], [ -73.872070, -73.652545 ], [ -72.817383, -73.403338 ], [ -71.630859, -73.264704 ], [ -70.224609, -73.150440 ], [ -68.950195, -73.009755 ], [ -67.939453, -72.790088 ], [ -67.368164, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.236328, -71.635993 ], [ -68.466797, -70.110485 ], [ -68.554688, -69.718107 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.958391 ], [ -67.587891, -68.544315 ], [ -67.412109, -68.155209 ], [ -67.719727, -67.322924 ], [ -67.236328, -66.878345 ], [ -66.049805, -66.213739 ], [ -65.390625, -65.892680 ], [ -64.555664, -65.603878 ], [ -64.160156, -65.164579 ], [ -63.632812, -64.904910 ], [ -63.017578, -64.642704 ], [ -62.050781, -64.586185 ], [ -61.435547, -64.263684 ], [ -60.688477, -64.072200 ], [ -59.897461, -63.956673 ], [ -59.150391, -63.704722 ], [ -58.579102, -63.391522 ], [ -57.832031, -63.273182 ], [ -57.216797, -63.528971 ], [ -57.612305, -63.860036 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.600586, -64.301822 ], [ -62.006836, -64.792848 ], [ -62.490234, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.578125, -65.856756 ], [ -62.138672, -66.196009 ], [ -62.797852, -66.425537 ], [ -63.764648, -66.495740 ], [ -64.863281, -67.152898 ], [ -65.522461, -67.575717 ], [ -65.654297, -67.958148 ], [ -65.302734, -68.366801 ], [ -64.775391, -68.672544 ], [ -63.940430, -68.911005 ], [ -63.193359, -69.224997 ], [ -62.797852, -69.626510 ], [ -62.270508, -70.377854 ], [ -61.787109, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.382410 ], [ -60.996094, -72.777081 ], [ -60.688477, -73.163173 ], [ -60.820312, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.962891, -74.437572 ], [ -63.281250, -74.578426 ], [ -63.764648, -74.925142 ], [ -64.335938, -75.264239 ], [ -65.874023, -75.639536 ], [ -67.192383, -75.791336 ], [ -69.785156, -76.226907 ], [ -70.620117, -76.639226 ], [ -72.202148, -76.669656 ], [ -73.959961, -76.639226 ], [ -75.541992, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.108231 ], [ -75.410156, -77.283532 ], [ -74.267578, -77.551572 ], [ -73.652344, -77.906466 ], [ -74.750977, -78.224513 ], [ -76.508789, -78.125454 ], [ -77.915039, -78.376004 ], [ -78.002930, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.889737 ], [ -75.366211, -80.260828 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.004883, -81.004326 ], [ -68.203125, -81.314959 ], [ -65.698242, -81.472780 ], [ -63.237305, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.677734, -82.373317 ], [ -58.710938, -82.847913 ], [ -58.227539, -83.220882 ], [ -56.997070, -82.864308 ], [ -53.613281, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.746094, -81.729511 ], [ -47.285156, -81.710526 ], [ -44.824219, -81.848756 ], [ -42.802734, -82.082145 ], [ -42.143555, -81.653308 ], [ -40.781250, -81.354684 ], [ -38.232422, -81.334844 ], [ -34.365234, -80.907616 ], [ -32.299805, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.261777 ], [ -31.640625, -79.302640 ], [ -33.662109, -79.456522 ], [ -35.639648, -79.456522 ], [ -35.903320, -79.080140 ], [ -35.771484, -78.340533 ], [ -35.332031, -78.125454 ], [ -33.881836, -77.888038 ], [ -32.211914, -77.655346 ], [ -29.794922, -77.068954 ], [ -28.872070, -76.669656 ], [ -27.509766, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.906250, -76.237366 ], [ -22.456055, -76.100796 ], [ -21.225586, -75.909504 ], [ -19.995117, -75.672197 ], [ -17.534180, -75.129504 ], [ -16.655273, -74.787379 ], [ -15.688477, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.873717 ], [ -16.127930, -73.465984 ], [ -15.468750, -73.150440 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.283203, -71.258480 ], [ -9.096680, -71.328950 ], [ -8.613281, -71.663663 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.328950 ], [ -6.855469, -70.931004 ], [ -5.800781, -71.031249 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.032227, -71.286699 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 3.515625, -70.931004 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ] ] ], [ [ [ -163.125000, -78.224513 ], [ -161.235352, -78.376004 ], [ -160.224609, -78.690491 ], [ -159.477539, -79.046790 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.421875, -79.278140 ], [ -163.037109, -78.929273 ], [ -163.081055, -78.870048 ], [ -163.696289, -78.595299 ], [ -163.125000, -78.224513 ] ] ], [ [ [ -122.387695, -73.327858 ], [ -121.201172, -73.503461 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.837058 ], [ -120.234375, -74.091974 ], [ -121.640625, -74.007440 ], [ -122.607422, -73.652545 ], [ -122.387695, -73.327858 ] ] ], [ [ [ -126.562500, -73.252045 ], [ -124.013672, -73.873717 ], [ -125.903320, -73.738905 ], [ -127.265625, -73.465984 ], [ -126.562500, -73.252045 ] ] ], [ [ [ -101.689453, -71.718882 ], [ -100.415039, -71.856229 ], [ -98.964844, -71.938158 ], [ -97.866211, -72.073911 ], [ -96.767578, -71.951778 ], [ -96.196289, -72.514931 ], [ -96.987305, -72.448792 ], [ -98.217773, -72.488504 ], [ -99.448242, -72.448792 ], [ -100.766602, -72.501722 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.897238 ], [ -101.689453, -71.718882 ] ] ], [ [ [ -60.600586, -79.631968 ], [ -59.589844, -80.042864 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.865854 ], [ -64.467773, -80.921494 ], [ -65.742188, -80.589727 ], [ -65.742188, -80.546518 ], [ -66.269531, -80.253391 ], [ -64.028320, -80.297927 ], [ -61.875000, -80.393732 ], [ -61.127930, -79.981891 ], [ -60.600586, -79.631968 ] ] ], [ [ [ -70.268555, -68.879358 ], [ -69.741211, -69.256149 ], [ -69.477539, -69.626510 ], [ -68.730469, -70.510241 ], [ -68.466797, -70.959697 ], [ -68.334961, -71.413177 ], [ -68.510742, -71.801410 ], [ -68.774414, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.059570, -72.501722 ], [ -72.377930, -72.488504 ], [ -71.894531, -72.087432 ], [ -74.179688, -72.369105 ], [ -74.970703, -72.073911 ], [ -75.014648, -71.663663 ], [ -73.916016, -71.272595 ], [ -73.212891, -71.145195 ], [ -72.070312, -71.187754 ], [ -71.762695, -70.685421 ], [ -71.718750, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.037142 ], [ -70.268555, -68.879358 ] ] ] ] } } ] } ] } , @@ -56,19 +56,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.262197 ], [ -155.214844, 19.973349 ], [ -154.819336, 19.518375 ], [ -155.522461, 19.103648 ], [ -155.698242, 18.895893 ], [ -155.917969, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.683970 ], [ -155.830078, 19.973349 ], [ -155.917969, 20.179724 ], [ -155.874023, 20.262197 ] ] ], [ [ [ -156.621094, 21.002471 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.756114 ], [ -156.093750, 20.632784 ], [ -156.401367, 20.591652 ], [ -156.708984, 20.920397 ], [ -156.621094, 21.002471 ] ] ], [ [ [ -157.236328, 21.207459 ], [ -156.752930, 21.166484 ], [ -156.796875, 21.084500 ], [ -157.324219, 21.084500 ], [ -157.236328, 21.207459 ] ] ], [ [ [ -158.027344, 21.698265 ], [ -157.631836, 21.330315 ], [ -157.719727, 21.248422 ], [ -158.115234, 21.330315 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.698265 ] ] ], [ [ [ -159.345703, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.785156, 22.065278 ], [ -159.609375, 22.228090 ], [ -159.345703, 22.228090 ] ] ], [ [ [ -94.833984, 49.382373 ], [ -94.658203, 48.835797 ], [ -94.350586, 48.661943 ], [ -92.592773, 48.458352 ], [ -91.625977, 48.136767 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.252930, 48.019324 ], [ -88.374023, 48.312428 ], [ -84.858398, 46.890232 ], [ -84.770508, 46.649436 ], [ -84.550781, 46.528635 ], [ -84.594727, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.155273, 46.498392 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.103709 ], [ -83.627930, 46.103709 ], [ -83.452148, 45.981695 ], [ -83.583984, 45.828799 ], [ -82.529297, 45.336702 ], [ -82.133789, 43.580391 ], [ -82.441406, 42.972502 ], [ -83.100586, 42.065607 ], [ -83.144531, 41.967659 ], [ -83.012695, 41.836828 ], [ -82.705078, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.298828, 42.195969 ], [ -80.244141, 42.358544 ], [ -78.925781, 42.875964 ], [ -79.013672, 43.261206 ], [ -79.189453, 43.452919 ], [ -78.706055, 43.612217 ], [ -76.816406, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.809122 ], [ -74.882812, 44.995883 ], [ -71.499023, 44.995883 ], [ -71.411133, 45.243953 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.679594 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.339565 ], [ -70.136719, 43.675818 ], [ -70.795898, 42.875964 ], [ -70.839844, 42.326062 ], [ -70.488281, 41.804078 ], [ -70.092773, 41.771312 ], [ -70.180664, 42.130821 ], [ -69.873047, 41.934977 ], [ -69.960938, 41.640078 ], [ -70.620117, 41.475660 ], [ -71.103516, 41.508577 ], [ -71.850586, 41.310824 ], [ -72.861328, 41.211722 ], [ -73.696289, 40.946714 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.913513 ], [ -73.344727, 40.613952 ], [ -74.003906, 40.613952 ], [ -73.959961, 40.747257 ], [ -74.267578, 40.480381 ], [ -73.959961, 40.413496 ], [ -74.179688, 39.707187 ], [ -74.926758, 38.925229 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.232253 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.025391, 37.265310 ], [ -75.717773, 37.926868 ], [ -76.245117, 38.307181 ], [ -76.333008, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.238180 ], [ -76.289062, 37.926868 ], [ -76.245117, 36.949892 ], [ -75.981445, 36.914764 ], [ -75.717773, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.387695, 34.524661 ], [ -78.046875, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.057617, 33.504759 ], [ -79.189453, 33.174342 ], [ -80.288086, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.428663 ], [ -81.474609, 30.713504 ], [ -81.298828, 30.031055 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.459033 ], [ -80.551758, 28.033198 ], [ -80.068359, 26.863281 ], [ -80.112305, 25.799891 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.694336, 25.878994 ], [ -82.705078, 27.488781 ], [ -82.836914, 27.877928 ], [ -82.661133, 28.536275 ], [ -82.924805, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.410782 ], [ -87.539062, 30.259067 ], [ -88.417969, 30.372875 ], [ -89.165039, 30.297018 ], [ -89.604492, 30.145127 ], [ -89.428711, 29.878755 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.305561 ], [ -89.428711, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.175781, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.688053 ], [ -92.504883, 29.535230 ], [ -93.208008, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.581055, 28.729130 ], [ -96.591797, 28.304381 ], [ -97.119141, 27.839076 ], [ -97.382812, 27.371767 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.194877 ], [ -97.119141, 25.878994 ], [ -97.514648, 25.839449 ], [ -99.008789, 26.352498 ], [ -99.316406, 26.824071 ], [ -99.536133, 27.527758 ], [ -100.107422, 28.110749 ], [ -100.942383, 29.382175 ], [ -101.645508, 29.764377 ], [ -102.480469, 29.764377 ], [ -103.095703, 28.960089 ], [ -103.930664, 29.267233 ], [ -104.458008, 29.573457 ], [ -105.029297, 30.637912 ], [ -106.127930, 31.391158 ], [ -106.523438, 31.765537 ], [ -108.237305, 31.765537 ], [ -108.237305, 31.353637 ], [ -111.005859, 31.316101 ], [ -114.829102, 32.509762 ], [ -114.741211, 32.731841 ], [ -117.114258, 32.546813 ], [ -117.290039, 33.063924 ], [ -117.949219, 33.614619 ], [ -118.388672, 33.724340 ], [ -118.520508, 34.016242 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.452218 ], [ -120.629883, 34.597042 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.544577 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.099983 ], [ -123.706055, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.313043 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.707594 ], [ -123.881836, 45.521744 ], [ -124.101562, 46.860191 ], [ -124.409180, 47.724545 ], [ -124.672852, 48.195387 ], [ -124.584961, 48.370848 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.166085 ], [ -122.827148, 49.009051 ], [ -95.141602, 49.009051 ], [ -95.141602, 49.382373 ], [ -94.833984, 49.382373 ] ] ], [ [ [ -156.577148, 71.357067 ], [ -155.083008, 71.145195 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.887885 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.732422, 70.436799 ], [ -149.721680, 70.524897 ], [ -147.612305, 70.214875 ], [ -145.678711, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.569336, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.976562, 69.718107 ], [ -140.976562, 60.305185 ], [ -140.009766, 60.283408 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.556592 ], [ -137.460938, 58.904646 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.778522 ], [ -134.956055, 59.265881 ], [ -134.252930, 58.859224 ], [ -133.374023, 58.401712 ], [ -131.704102, 56.559482 ], [ -129.990234, 55.924586 ], [ -129.990234, 55.279115 ], [ -130.517578, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.503750 ], [ -132.231445, 56.365250 ], [ -133.549805, 57.183902 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.625977, 58.217025 ], [ -137.812500, 58.493694 ], [ -139.877930, 59.534318 ], [ -142.558594, 60.086763 ], [ -143.964844, 59.998986 ], [ -145.942383, 60.457218 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.007812, 59.977005 ], [ -148.579102, 59.910976 ], [ -149.721680, 59.712097 ], [ -150.600586, 59.377988 ], [ -151.699219, 59.153403 ], [ -151.875000, 59.734253 ], [ -151.391602, 60.716198 ], [ -150.336914, 61.037012 ], [ -150.600586, 61.291349 ], [ -151.875000, 60.737686 ], [ -152.578125, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.577148, 56.968936 ], [ -158.115234, 56.462490 ], [ -158.422852, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.268555, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.393352 ], [ -164.926758, 54.572062 ], [ -163.828125, 55.028022 ], [ -162.861328, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 55.998381 ], [ -160.048828, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.207710 ], [ -157.719727, 57.562995 ], [ -157.543945, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.608334 ], [ -158.510742, 58.790978 ], [ -159.038086, 58.424730 ], [ -159.697266, 58.927334 ], [ -159.960938, 58.562523 ], [ -160.356445, 59.063154 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.265881 ], [ -161.894531, 59.623325 ], [ -162.509766, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.261617 ], [ -165.366211, 60.500525 ], [ -165.366211, 61.079544 ], [ -166.113281, 61.501734 ], [ -165.717773, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.740234, 63.213830 ], [ -163.081055, 63.054959 ], [ -162.246094, 63.548552 ], [ -161.542969, 63.450509 ], [ -160.751953, 63.763065 ], [ -160.971680, 64.225493 ], [ -161.499023, 64.396938 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.774125 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.420898, 64.680318 ], [ -166.860352, 65.090646 ], [ -168.090820, 65.676381 ], [ -166.684570, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.784180, 66.071546 ], [ -161.674805, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.609221 ], [ -165.410156, 68.040461 ], [ -166.772461, 68.366801 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -163.168945, 69.364831 ], [ -162.949219, 69.854762 ], [ -161.894531, 70.333533 ], [ -160.927734, 70.451508 ], [ -159.038086, 70.887885 ], [ -158.115234, 70.830248 ], [ -156.577148, 71.357067 ] ] ], [ [ [ -153.237305, 57.961503 ], [ -152.578125, 57.891497 ], [ -152.138672, 57.586559 ], [ -153.017578, 57.112385 ], [ -153.984375, 56.728622 ], [ -154.511719, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.961503 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.507812, 63.685248 ], [ -169.672852, 63.430860 ], [ -168.706055, 63.292939 ], [ -168.750000, 63.194018 ], [ -169.541016, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.683594, 63.371832 ], [ -171.562500, 63.312683 ], [ -171.782227, 63.411198 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.392148 ], [ -165.673828, 60.283408 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.933000 ], [ -167.475586, 60.217991 ], [ -166.464844, 60.392148 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.584961, 9.622414 ], [ -79.013672, 9.535749 ], [ -79.057617, 9.449062 ], [ -78.486328, 9.405710 ], [ -78.046875, 9.232249 ], [ -77.343750, 8.667918 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.928675 ], [ -77.431641, 7.623887 ], [ -77.739258, 7.710992 ], [ -77.871094, 7.231699 ], [ -78.222656, 7.493196 ], [ -78.442383, 8.059230 ], [ -78.178711, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.618164, 8.711359 ], [ -79.101562, 9.015302 ], [ -79.541016, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.156250, 8.320212 ], [ -80.375977, 8.276727 ], [ -80.463867, 8.102739 ], [ -80.024414, 7.536764 ], [ -80.288086, 7.406048 ], [ -80.419922, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.798079 ], [ -81.210938, 7.667441 ], [ -81.518555, 7.710992 ], [ -81.738281, 8.102739 ], [ -82.133789, 8.189742 ], [ -82.397461, 8.276727 ], [ -82.836914, 8.276727 ], [ -82.836914, 8.059230 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.624472 ], [ -82.880859, 8.798225 ], [ -82.705078, 8.928487 ], [ -82.924805, 9.058702 ], [ -82.924805, 9.492408 ], [ -82.529297, 9.579084 ], [ -82.177734, 9.188870 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.694336, 9.015302 ], [ -81.430664, 8.798225 ], [ -80.947266, 8.841651 ], [ -80.507812, 9.102097 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.876465 ], [ -60.952148, 10.098670 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.655273, 10.358151 ], [ -61.699219, 10.746969 ], [ -61.083984, 10.876465 ], [ -60.908203, 10.876465 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.657227, 27.644606 ], [ -8.701172, 25.878994 ], [ -11.953125, 25.918526 ], [ -11.953125, 23.362429 ], [ -12.875977, 23.281719 ], [ -13.139648, 22.755921 ], [ -12.919922, 21.330315 ], [ -16.831055, 21.330315 ], [ -17.050781, 21.002471 ], [ -17.006836, 21.412162 ], [ -14.765625, 21.493964 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.309426 ], [ -13.886719, 23.684774 ], [ -12.480469, 24.766785 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.381836, 26.902477 ], [ -10.546875, 26.980829 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.404297, 27.098254 ], [ -8.789062, 27.137368 ], [ -8.833008, 27.644606 ], [ -8.657227, 27.644606 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.558594, 55.128649 ], [ -7.382812, 54.597528 ], [ -7.558594, 54.059388 ], [ -6.943359, 54.085173 ], [ -6.196289, 53.878440 ], [ -6.020508, 53.146770 ], [ -6.767578, 52.268157 ], [ -8.569336, 51.672555 ], [ -9.975586, 51.808615 ], [ -9.184570, 52.855864 ], [ -9.667969, 53.878440 ], [ -7.558594, 55.128649 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ], [ -13.710938, 12.254128 ], [ -13.842773, 12.125264 ], [ -13.754883, 11.824341 ], [ -13.886719, 11.695273 ], [ -14.106445, 11.695273 ], [ -14.370117, 11.523088 ], [ -14.677734, 11.523088 ], [ -15.117188, 11.049038 ], [ -15.644531, 11.436955 ], [ -16.083984, 11.523088 ], [ -16.303711, 11.824341 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.699219, 12.382928 ], [ -16.127930, 12.554564 ], [ -15.820312, 12.511665 ], [ -15.556641, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.966140 ], [ 0.000000, 21.779905 ], [ 1.801758, 20.591652 ], [ 2.065430, 20.138470 ], [ 3.164062, 19.683970 ], [ 3.164062, 19.062118 ], [ 3.515625, 19.103648 ], [ 3.515625, 15.538376 ], [ 2.768555, 15.411319 ], [ 1.406250, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.263672, 14.944785 ], [ -0.527344, 15.114553 ], [ -1.054688, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.795406 ], [ -3.120117, 13.539201 ], [ -3.515625, 13.325485 ], [ -3.999023, 13.453737 ], [ -4.262695, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.695273 ], [ -5.185547, 11.393879 ], [ -5.449219, 10.962764 ], [ -5.405273, 10.358151 ], [ -6.064453, 10.098670 ], [ -6.196289, 10.531020 ], [ -6.503906, 10.401378 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.602539, 10.141932 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.185187 ], [ -8.349609, 10.487812 ], [ -8.261719, 10.790141 ], [ -8.393555, 10.919618 ], [ -8.613281, 10.790141 ], [ -8.569336, 11.135287 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.082296 ], [ -9.140625, 12.297068 ], [ -9.316406, 12.340002 ], [ -9.887695, 12.039321 ], [ -10.151367, 11.824341 ], [ -10.590820, 11.910354 ], [ -10.854492, 12.168226 ], [ -11.030273, 12.211180 ], [ -11.293945, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.513672, 12.425848 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.909180, 13.410994 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.604847 ], [ -11.821289, 14.817371 ], [ -11.645508, 15.368950 ], [ -11.337891, 15.411319 ], [ -10.634766, 15.114553 ], [ -10.107422, 15.326572 ], [ -9.711914, 15.284185 ], [ -9.536133, 15.496032 ], [ -5.537109, 15.496032 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.921875, 24.966140 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.747174 ], [ -52.866211, 5.397273 ], [ -51.811523, 4.565474 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.504085 ], [ -52.954102, 2.108899 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.328460 ], [ -53.789062, 2.372369 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.723583 ], [ -54.184570, 3.206333 ], [ -54.008789, 3.601142 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.747174 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.792047 ], [ 3.120117, 50.792047 ], [ 3.515625, 50.429518 ], [ 3.515625, 43.165123 ], [ 3.120117, 43.068888 ], [ 2.988281, 42.488302 ], [ 1.845703, 42.358544 ], [ 0.703125, 42.811522 ], [ 0.351562, 42.585444 ], [ 0.000000, 42.650122 ], [ -1.494141, 43.036776 ], [ -1.889648, 43.421009 ], [ -1.362305, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.241211, 47.070122 ], [ -2.944336, 47.576526 ], [ -4.482422, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.893615 ], [ -1.625977, 48.632909 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.667628 ], [ 1.318359, 50.120578 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.114553 ], [ -0.263672, 14.944785 ], [ 0.395508, 14.944785 ], [ 0.307617, 14.434680 ], [ 0.439453, 14.008696 ], [ 1.010742, 13.325485 ], [ 1.010742, 12.854649 ], [ 2.197266, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.450195, 11.566144 ], [ 1.230469, 11.092166 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.005904 ], [ -0.439453, 11.092166 ], [ -0.747070, 10.919618 ], [ -1.186523, 11.005904 ], [ -2.944336, 10.962764 ], [ -2.944336, 10.401378 ], [ -2.812500, 9.622414 ], [ -3.515625, 9.882275 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.141932 ], [ -5.405273, 10.358151 ], [ -5.449219, 10.962764 ], [ -5.185547, 11.393879 ], [ -5.229492, 11.695273 ], [ -4.438477, 12.554564 ], [ -4.262695, 13.239945 ], [ -3.999023, 13.453737 ], [ -3.515625, 13.325485 ], [ -3.120117, 13.539201 ], [ -2.988281, 13.795406 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.054688, 14.987240 ], [ -0.527344, 15.114553 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.288086, -3.425692 ], [ -80.288086, -3.513421 ], [ -80.419922, -3.513421 ], [ -80.288086, -3.425692 ] ] ], [ [ [ -78.178711, -3.513421 ], [ -77.827148, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.541992, -1.581830 ], [ -75.234375, -0.922812 ], [ -75.366211, -0.131836 ], [ -75.102539, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -1.010690 ], [ -73.652344, -1.274309 ], [ -73.081055, -2.328460 ], [ -72.333984, -2.416276 ], [ -71.762695, -2.152814 ], [ -71.411133, -2.328460 ], [ -70.795898, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.532227, -3.513421 ], [ -78.178711, -3.513421 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.856445, 12.254128 ], [ 3.515625, 11.738302 ], [ 3.515625, 9.838979 ], [ 2.900391, 9.145486 ], [ 2.724609, 8.494105 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.140555 ], [ 1.625977, 6.839170 ], [ 1.669922, 9.145486 ], [ 1.450195, 9.318990 ], [ 1.406250, 9.838979 ], [ 0.791016, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.092166 ], [ 1.450195, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.504883, 12.254128 ], [ 2.856445, 12.254128 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.005904 ], [ 0.043945, 11.005904 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.185187 ], [ 0.351562, 9.449062 ], [ 0.439453, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.926427 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.527344, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.977539, 4.696879 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.362467 ], [ -2.548828, 8.233237 ], [ -2.944336, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.186523, 11.005904 ], [ -0.747070, 10.919618 ], [ -0.439453, 11.092166 ] ] ] } } ] } ] } , @@ -76,13 +70,15 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.292969, 3.513421 ], [ 15.424805, 3.337954 ], [ 15.864258, 3.030812 ], [ 15.908203, 2.547988 ], [ 15.996094, 2.284551 ], [ 15.952148, 1.713612 ], [ 14.326172, 2.240640 ], [ 13.095703, 2.284551 ], [ 12.963867, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.293945, 2.240640 ], [ 9.667969, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.536133, 3.513421 ], [ 15.292969, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.366211, -8.233237 ], [ 30.761719, -8.320212 ], [ 31.552734, -8.754795 ], [ 32.211914, -8.928487 ], [ 32.739258, -9.232249 ], [ 33.222656, -9.665738 ], [ 33.486328, -10.531020 ], [ 33.310547, -10.790141 ], [ 33.134766, -11.609193 ], [ 33.310547, -12.425848 ], [ 33.002930, -12.768946 ], [ 32.695312, -13.710035 ], [ 33.222656, -13.966054 ], [ 30.190430, -14.774883 ], [ 30.278320, -15.496032 ], [ 29.531250, -15.665354 ], [ 28.959961, -16.045813 ], [ 28.828125, -16.383391 ], [ 28.476562, -16.467695 ], [ 27.597656, -17.308688 ], [ 27.026367, -17.936929 ], [ 26.718750, -17.978733 ], [ 26.367188, -17.853290 ], [ 25.268555, -17.727759 ], [ 24.697266, -17.350638 ], [ 24.038086, -17.308688 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.088042 ], [ 21.928711, -12.897489 ], [ 24.038086, -12.897489 ], [ 23.950195, -12.554564 ], [ 24.082031, -12.211180 ], [ 23.906250, -11.738302 ], [ 24.038086, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.257812, -10.962764 ], [ 24.301758, -11.264612 ], [ 24.785156, -11.221510 ], [ 25.400391, -11.350797 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.609193 ], [ 27.377930, -12.125264 ], [ 28.168945, -12.254128 ], [ 28.916016, -13.239945 ], [ 29.707031, -13.239945 ], [ 29.619141, -12.168226 ], [ 29.355469, -12.340002 ], [ 28.388672, -11.781325 ], [ 28.652344, -9.622414 ], [ 28.432617, -9.145486 ], [ 28.740234, -8.537565 ], [ 29.003906, -8.407168 ], [ 30.366211, -8.233237 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.278320, -15.496032 ], [ 30.322266, -15.876809 ], [ 31.157227, -15.876809 ], [ 31.640625, -16.088042 ], [ 31.860352, -16.299051 ], [ 32.343750, -16.383391 ], [ 32.827148, -16.720385 ], [ 32.871094, -17.978733 ], [ 32.651367, -18.687879 ], [ 32.607422, -19.435514 ], [ 32.783203, -19.725342 ], [ 32.651367, -20.303418 ], [ 32.519531, -20.385825 ], [ 32.255859, -21.125498 ], [ 31.201172, -22.268764 ], [ 30.673828, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.105999 ], [ 29.443359, -22.105999 ], [ 28.784180, -21.657428 ], [ 28.037109, -21.493964 ], [ 27.729492, -20.838278 ], [ 27.729492, -20.509355 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.311143 ], [ 25.839844, -18.729502 ], [ 25.664062, -18.521283 ], [ 25.268555, -17.727759 ], [ 26.367188, -17.853290 ], [ 26.718750, -17.978733 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.308688 ], [ 28.476562, -16.467695 ], [ 28.828125, -16.383391 ], [ 28.959961, -16.045813 ], [ 29.531250, -15.665354 ], [ 30.278320, -15.496032 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.528320, 3.513421 ], [ 41.000977, 2.767478 ], [ 41.000977, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.649414, -2.504085 ], [ 40.253906, -2.591889 ], [ 40.122070, -3.294082 ], [ 39.814453, -3.688855 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.696879 ], [ 37.749023, -3.688855 ], [ 37.705078, -3.118576 ], [ 33.881836, -0.966751 ], [ 33.881836, 0.087891 ], [ 34.672852, 1.186439 ], [ 35.024414, 1.889306 ], [ 34.584961, 3.074695 ], [ 34.497070, 3.513421 ], [ 38.847656, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.638672, 3.513421 ], [ 41.528320, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.092773, -17.644022 ], [ 25.268555, -17.727759 ], [ 25.664062, -18.521283 ], [ 25.839844, -18.729502 ], [ 26.147461, -19.311143 ], [ 27.290039, -20.385825 ], [ 27.729492, -20.509355 ], [ 27.729492, -20.838278 ], [ 28.037109, -21.493964 ], [ 28.784180, -21.657428 ], [ 29.443359, -22.105999 ], [ 28.037109, -22.836946 ], [ 27.114258, -23.563987 ], [ 26.806641, -24.246965 ], [ 26.499023, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.720735 ], [ 24.213867, -25.681137 ], [ 23.730469, -25.403585 ], [ 23.291016, -25.284438 ], [ 22.807617, -25.482951 ], [ 22.587891, -25.997550 ], [ 22.104492, -26.273714 ], [ 21.621094, -26.745610 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.878994 ], [ 20.170898, -24.926295 ], [ 19.907227, -24.766785 ], [ 19.907227, -21.861499 ], [ 20.874023, -21.820708 ], [ 20.917969, -18.271086 ], [ 21.665039, -18.229351 ], [ 23.203125, -17.853290 ], [ 23.598633, -18.271086 ], [ 24.213867, -17.895114 ], [ 24.521484, -17.895114 ], [ 25.092773, -17.644022 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.520508, -28.652031 ], [ 29.311523, -29.267233 ], [ 28.828125, -30.069094 ], [ 28.300781, -30.221102 ], [ 28.125000, -30.562261 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.878755 ], [ 27.553711, -29.228890 ], [ 28.081055, -28.844674 ], [ 28.520508, -28.652031 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.958008, -8.276727 ], [ 127.353516, -8.407168 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.405710 ], [ 125.068359, -9.102097 ], [ 124.980469, -8.885072 ], [ 125.068359, -8.667918 ], [ 125.947266, -8.450639 ], [ 126.650391, -8.407168 ], [ 126.958008, -8.276727 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.323242, -10.185187 ], [ 162.114258, -10.487812 ], [ 162.377930, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.323242, -10.185187 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.405710 ], [ 160.708008, -9.622414 ], [ 160.839844, -9.882275 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.795678 ], [ 159.653320, -9.622414 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.927734, -8.320212 ], [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.542969, -9.795678 ], [ 160.795898, -8.928487 ], [ 160.576172, -8.320212 ], [ 160.927734, -8.320212 ] ] ], [ [ [ 158.378906, -7.318882 ], [ 159.653320, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.102739 ], [ 158.203125, -7.406048 ], [ 158.378906, -7.318882 ] ] ], [ [ [ 156.533203, -6.620957 ], [ 157.543945, -7.362467 ], [ 157.324219, -7.406048 ], [ 156.884766, -7.188101 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.620957 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.374023, -17.350638 ], [ 178.725586, -17.644022 ], [ 178.549805, -18.145852 ], [ 177.934570, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.727759 ], [ 177.670898, -17.392579 ], [ 178.110352, -17.518344 ], [ 178.374023, -17.350638 ] ] ], [ [ [ 180.000000, -16.088042 ], [ 180.219727, -16.003576 ], [ 180.087891, -16.509833 ], [ 180.000000, -16.551962 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.428711, -16.383391 ], [ 180.000000, -16.088042 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.087891, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.186523, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.947274 ], [ 138.603516, -66.895596 ], [ 139.921875, -66.878345 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.843807 ], [ 145.502930, -66.912834 ], [ 146.206055, -67.221053 ], [ 145.986328, -67.609221 ], [ 146.645508, -67.892086 ], [ 148.842773, -68.382996 ], [ 151.479492, -68.720441 ], [ 152.490234, -68.879358 ], [ 153.632812, -68.895187 ], [ 154.291992, -68.560384 ], [ 155.170898, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.229744 ], [ 161.586914, -70.583418 ], [ 162.685547, -70.743478 ], [ 163.828125, -70.714471 ], [ 164.926758, -70.772443 ], [ 166.113281, -70.757966 ], [ 167.299805, -70.830248 ], [ 168.442383, -70.974028 ], [ 169.453125, -71.201920 ], [ 170.507812, -71.399165 ], [ 171.210938, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.387695, -74.164085 ], [ 166.113281, -74.378513 ], [ 165.629883, -74.775843 ], [ 164.970703, -75.140778 ], [ 164.223633, -75.464105 ], [ 163.828125, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.476562, -76.689906 ], [ 163.476562, -77.068954 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.832589 ], [ 164.750977, -78.179588 ], [ 166.596680, -78.322757 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.163075 ], [ 160.927734, -79.734281 ], [ 160.751953, -80.201176 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.281717 ], [ 161.630859, -81.691497 ], [ 162.509766, -82.063963 ], [ 163.696289, -82.396611 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.409180, -83.825220 ], [ 172.265625, -84.043447 ], [ 173.232422, -84.414502 ], [ 176.000977, -84.160849 ], [ 178.286133, -84.474065 ], [ 180.000000, -84.714152 ], [ 180.043945, -84.722243 ], [ 180.922852, -84.138452 ], [ 182.724609, -84.452865 ], [ 183.515625, -84.223108 ], [ 183.515625, -85.345325 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 4.130859, -70.859087 ], [ 5.141602, -70.612614 ], [ 6.284180, -70.466207 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.900118 ], [ 8.481445, -70.155288 ], [ 9.536133, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.641769 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.975493 ], [ 14.721680, -70.035597 ], [ 15.117188, -70.407348 ], [ 15.952148, -70.035597 ], [ 17.006836, -69.915214 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.900118 ], [ 20.390625, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.928711, -70.407348 ], [ 22.587891, -70.699951 ], [ 23.686523, -70.524897 ], [ 24.829102, -70.480896 ], [ 27.114258, -70.466207 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.981445, -69.763757 ], [ 31.992188, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.310547, -68.831802 ], [ 33.881836, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.166992, -69.240579 ], [ 37.221680, -69.162558 ], [ 37.924805, -69.519147 ], [ 38.627930, -69.778952 ], [ 39.682617, -69.534518 ], [ 40.034180, -69.115611 ], [ 40.913086, -68.926811 ], [ 41.967773, -68.608521 ], [ 44.121094, -68.269387 ], [ 46.494141, -67.609221 ], [ 47.460938, -67.726108 ], [ 48.999023, -67.084550 ], [ 49.921875, -67.118748 ], [ 50.756836, -66.878345 ], [ 50.932617, -66.530768 ], [ 51.811523, -66.249163 ], [ 52.602539, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ], [ 56.337891, -65.982270 ], [ 57.172852, -66.249163 ], [ 57.260742, -66.687784 ], [ 58.139648, -67.016009 ], [ 58.754883, -67.289015 ], [ 59.941406, -67.407487 ], [ 60.600586, -67.676085 ], [ 61.435547, -67.958148 ], [ 62.402344, -68.007571 ], [ 63.193359, -67.809245 ], [ 64.072266, -67.407487 ], [ 64.995117, -67.625954 ], [ 66.928711, -67.858985 ], [ 67.895508, -67.941650 ], [ 68.906250, -67.941650 ], [ 69.697266, -68.974164 ], [ 69.653320, -69.224997 ], [ 69.565430, -69.672358 ], [ 68.598633, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.699951 ], [ 69.082031, -70.670881 ], [ 68.950195, -71.074056 ], [ 68.422852, -71.441171 ], [ 67.939453, -71.856229 ], [ 68.730469, -72.168351 ], [ 69.873047, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.586914, -71.691293 ], [ 71.894531, -71.328950 ], [ 72.465820, -71.016960 ], [ 73.081055, -70.714471 ], [ 73.344727, -70.363091 ], [ 73.872070, -69.869892 ], [ 74.487305, -69.778952 ], [ 75.629883, -69.733334 ], [ 76.640625, -69.626510 ], [ 77.651367, -69.457554 ], [ 78.134766, -69.068563 ], [ 78.442383, -68.704486 ], [ 79.101562, -68.318146 ], [ 80.947266, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.373698 ], [ 82.792969, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.152898 ], [ 87.495117, -66.878345 ], [ 87.978516, -66.213739 ], [ 88.374023, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.692383, -67.152898 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.118748 ], [ 92.592773, -67.187000 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.118748 ], [ 95.009766, -67.169955 ], [ 95.800781, -67.390599 ], [ 96.679688, -67.255058 ], [ 97.778320, -67.255058 ], [ 98.701172, -67.118748 ], [ 99.711914, -67.255058 ], [ 100.371094, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.567550 ], [ 103.491211, -65.694476 ], [ 104.238281, -65.982270 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.705169 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.916992, -66.390361 ], [ 115.620117, -66.705169 ], [ 116.718750, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.838867, -67.272043 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.565747 ], [ 123.222656, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.079102, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.682617, -66.583217 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 134.736328, -66.213739 ], [ 135.043945, -65.712557 ], [ 135.087891, -65.311829 ] ] ] } } ] } ] } , @@ -90,41 +86,39 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 58.124320 ], [ -3.515625, 58.608334 ], [ -2.988281, 58.631217 ], [ -3.515625, 58.124320 ] ] ], [ [ [ -3.515625, 57.633640 ], [ -3.076172, 57.680660 ], [ -1.977539, 57.680660 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.065430, 55.899956 ], [ -1.098633, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.483398, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.571289, 50.764259 ], [ -0.791016, 50.764259 ], [ -2.504883, 50.513427 ], [ -2.944336, 50.708634 ], [ -3.515625, 50.289339 ], [ -3.515625, 51.399206 ], [ -3.427734, 51.426614 ], [ -3.515625, 51.426614 ], [ -3.515625, 53.435719 ], [ -3.076172, 53.409532 ], [ -2.944336, 53.981935 ], [ -3.515625, 54.521081 ], [ -3.515625, 57.633640 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.625000, 51.041394 ], [ 6.152344, 50.792047 ], [ 6.064453, 50.120578 ], [ 5.800781, 50.092393 ], [ 5.668945, 49.525208 ], [ 4.790039, 49.979488 ], [ 4.306641, 49.894634 ], [ 3.603516, 50.373496 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.792047 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.344339 ], [ 4.042969, 51.261915 ], [ 4.965820, 51.481383 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.168945, 71.187754 ], [ 31.289062, 70.451508 ], [ 30.014648, 70.185103 ], [ 31.113281, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.608398, 69.068563 ], [ 29.003906, 69.763757 ], [ 27.729492, 70.170201 ], [ 26.191406, 69.824471 ], [ 25.708008, 69.099940 ], [ 24.741211, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.368164, 68.847665 ], [ 21.225586, 69.364831 ], [ 20.654297, 69.099940 ], [ 20.039062, 69.068563 ], [ 19.863281, 68.399180 ], [ 17.973633, 68.560384 ], [ 17.709961, 68.007571 ], [ 16.787109, 68.007571 ], [ 15.117188, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.930664, 64.453849 ], [ 13.579102, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.997070, 61.793900 ], [ 12.612305, 61.291349 ], [ 12.304688, 60.108670 ], [ 11.469727, 59.422728 ], [ 11.030273, 58.859224 ], [ 10.371094, 59.467408 ], [ 8.393555, 58.309489 ], [ 7.031250, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.317383, 59.667741 ], [ 5.009766, 61.980267 ], [ 5.932617, 62.613562 ], [ 8.569336, 63.450509 ], [ 10.546875, 64.491725 ], [ 12.348633, 65.874725 ], [ 14.765625, 67.809245 ], [ 16.435547, 68.560384 ], [ 19.204102, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.027344, 70.199994 ], [ 24.565430, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.168945, 71.187754 ] ] ], [ [ [ 17.006836, 80.050460 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.954560 ], [ 19.028320, 78.560488 ], [ 18.457031, 77.823323 ], [ 17.578125, 77.636542 ], [ 17.138672, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.379906 ], [ 14.677734, 77.739618 ], [ 13.183594, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.458984, 79.655668 ], [ 13.183594, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.161133, 79.671438 ], [ 15.512695, 80.012423 ], [ 17.006836, 80.050460 ] ] ], [ [ [ 22.939453, 80.654174 ], [ 25.444336, 80.408388 ], [ 27.421875, 80.058050 ], [ 25.927734, 79.520657 ], [ 23.027344, 79.400085 ], [ 20.083008, 79.568506 ], [ 19.907227, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.596909 ], [ 21.928711, 80.356995 ], [ 22.939453, 80.654174 ] ] ], [ [ [ 22.895508, 78.455425 ], [ 23.291016, 78.080156 ], [ 24.741211, 77.851100 ], [ 22.500000, 77.446940 ], [ 20.742188, 77.674122 ], [ 21.401367, 77.934055 ], [ 20.830078, 78.251387 ], [ 22.895508, 78.455425 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.037868 ], [ 16.040039, 48.719961 ], [ 16.479492, 48.777913 ], [ 16.962891, 48.603858 ], [ 16.875000, 48.458352 ], [ 16.962891, 48.136767 ], [ 16.918945, 47.724545 ], [ 16.347656, 47.724545 ], [ 16.523438, 47.487513 ], [ 16.215820, 46.860191 ], [ 15.996094, 46.679594 ], [ 15.117188, 46.649436 ], [ 14.633789, 46.437857 ], [ 13.798828, 46.498392 ], [ 12.392578, 46.769968 ], [ 12.172852, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.739861 ], [ 10.458984, 46.890232 ], [ 9.931641, 46.920255 ], [ 9.492188, 47.100045 ], [ 9.624023, 47.338823 ], [ 9.580078, 47.517201 ], [ 9.887695, 47.576526 ], [ 10.415039, 47.309034 ], [ 10.546875, 47.576526 ], [ 11.425781, 47.517201 ], [ 12.128906, 47.694974 ], [ 12.612305, 47.665387 ], [ 12.919922, 47.457809 ], [ 13.007812, 47.635784 ], [ 12.875977, 48.283193 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.864715 ], [ 14.326172, 48.545705 ], [ 14.897461, 48.951366 ], [ 15.249023, 49.037868 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.654297, 69.099940 ], [ 21.972656, 68.624544 ], [ 23.554688, 67.941650 ], [ 23.554688, 66.390361 ], [ 23.906250, 66.000150 ], [ 22.192383, 65.730626 ], [ 21.225586, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.841797, 62.754726 ], [ 17.138672, 61.333540 ], [ 17.841797, 60.630102 ], [ 18.808594, 60.086763 ], [ 17.885742, 58.950008 ], [ 16.831055, 58.722599 ], [ 16.435547, 57.040730 ], [ 15.864258, 56.096556 ], [ 14.677734, 56.194481 ], [ 14.106445, 55.404070 ], [ 12.963867, 55.354135 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.030273, 58.859224 ], [ 11.469727, 59.422728 ], [ 12.304688, 60.108670 ], [ 12.612305, 61.291349 ], [ 11.997070, 61.793900 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.579102, 64.052978 ], [ 13.930664, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.117188, 66.196009 ], [ 16.787109, 68.007571 ], [ 17.709961, 68.007571 ], [ 17.973633, 68.560384 ], [ 19.863281, 68.399180 ], [ 20.039062, 69.068563 ], [ 20.654297, 69.099940 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.204102, 43.516689 ], [ 19.643555, 43.229195 ], [ 19.951172, 43.100983 ], [ 20.346680, 42.908160 ], [ 20.083008, 42.585444 ], [ 19.819336, 42.488302 ], [ 19.731445, 42.682435 ], [ 19.291992, 42.195969 ], [ 19.379883, 41.869561 ], [ 19.160156, 41.967659 ], [ 18.896484, 42.293564 ], [ 18.457031, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.720703, 43.197167 ], [ 19.204102, 43.516689 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 50.120578 ], [ 6.240234, 49.894634 ], [ 6.196289, 49.468124 ], [ 5.888672, 49.439557 ], [ 5.668945, 49.525208 ], [ 5.800781, 50.092393 ], [ 6.064453, 50.120578 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.873047, 56.365250 ], [ 25.004883, 56.170023 ], [ 25.532227, 56.096556 ], [ 26.499023, 55.603178 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.904338 ], [ 23.466797, 53.904338 ], [ 23.247070, 54.213861 ], [ 22.719727, 54.316523 ], [ 22.631836, 54.572062 ], [ 22.763672, 54.851315 ], [ 22.324219, 55.002826 ], [ 21.269531, 55.178868 ], [ 21.049805, 56.022948 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.267761 ], [ 24.873047, 56.365250 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.404297, 43.004647 ], [ 9.580078, 42.163403 ], [ 9.228516, 41.376809 ], [ 8.789062, 41.574361 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.617791 ], [ 9.404297, 43.004647 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.792047 ], [ 3.120117, 50.792047 ], [ 3.603516, 50.373496 ], [ 4.306641, 49.894634 ], [ 4.790039, 49.979488 ], [ 5.668945, 49.525208 ], [ 5.888672, 49.439557 ], [ 6.196289, 49.468124 ], [ 6.679688, 49.210420 ], [ 8.085938, 49.009051 ], [ 7.602539, 48.341646 ], [ 7.470703, 47.606163 ], [ 7.207031, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.279229 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.503906, 46.437857 ], [ 6.855469, 45.981695 ], [ 6.811523, 45.706179 ], [ 7.075195, 45.336702 ], [ 6.767578, 45.026950 ], [ 6.987305, 44.245199 ], [ 7.558594, 44.119142 ], [ 7.426758, 43.707594 ], [ 6.547852, 43.133061 ], [ 4.570312, 43.389082 ], [ 3.120117, 43.068888 ], [ 2.988281, 42.488302 ], [ 1.845703, 42.358544 ], [ 0.703125, 42.811522 ], [ 0.351562, 42.585444 ], [ 0.000000, 42.650122 ], [ -1.494141, 43.036776 ], [ -1.889648, 43.421009 ], [ -1.362305, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.241211, 47.070122 ], [ -2.944336, 47.576526 ], [ -3.515625, 47.694974 ], [ -3.515625, 48.864715 ], [ -3.295898, 48.893615 ], [ -1.625977, 48.632909 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.667628 ], [ 1.318359, 50.120578 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.458352 ], [ 28.256836, 48.166085 ], [ 28.652344, 48.107431 ], [ 29.135742, 47.842658 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.338823 ], [ 29.575195, 46.920255 ], [ 29.926758, 46.679594 ], [ 29.838867, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.346928 ], [ 29.179688, 46.377254 ], [ 29.091797, 46.528635 ], [ 28.872070, 46.437857 ], [ 28.916016, 46.255847 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.583290 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.168945, 46.377254 ], [ 28.125000, 46.800059 ], [ 26.938477, 48.136767 ], [ 26.630859, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.458352 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.498392 ], [ 16.875000, 46.377254 ], [ 17.622070, 45.951150 ], [ 18.457031, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.058001 ], [ 17.006836, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 44.995883 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.809122 ], [ 16.259766, 44.339565 ], [ 16.435547, 44.056012 ], [ 16.918945, 43.675818 ], [ 17.314453, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.457031, 42.488302 ], [ 17.490234, 42.843751 ], [ 16.918945, 43.197167 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.380859, 44.308127 ], [ 14.941406, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.666992, 45.151053 ], [ 13.666992, 45.490946 ], [ 14.414062, 45.460131 ], [ 14.589844, 45.644768 ], [ 14.941406, 45.460131 ], [ 15.336914, 45.460131 ], [ 15.336914, 45.736860 ], [ 15.688477, 45.828799 ], [ 15.776367, 46.225453 ], [ 16.567383, 46.498392 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.368164, 42.326062 ], [ 22.895508, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.763672, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.060547, 41.145570 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.610352, 41.079351 ], [ 20.478516, 41.508577 ], [ 20.610352, 41.869561 ], [ 20.698242, 41.836828 ], [ 20.742188, 42.065607 ], [ 21.357422, 42.195969 ], [ 21.928711, 42.293564 ], [ 22.368164, 42.326062 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 46.164614 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.489258, 45.182037 ], [ 21.577148, 44.777936 ], [ 22.148438, 44.465151 ], [ 22.456055, 44.715514 ], [ 22.719727, 44.590467 ], [ 22.456055, 44.402392 ], [ 22.675781, 44.245199 ], [ 22.412109, 43.992815 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.197167 ], [ 22.587891, 42.908160 ], [ 22.456055, 42.585444 ], [ 22.543945, 42.455888 ], [ 22.368164, 42.326062 ], [ 21.577148, 42.261049 ], [ 21.533203, 42.326062 ], [ 21.796875, 42.682435 ], [ 21.621094, 42.682435 ], [ 20.830078, 43.261206 ], [ 20.654297, 43.229195 ], [ 20.478516, 42.875964 ], [ 20.258789, 42.811522 ], [ 20.346680, 42.908160 ], [ 19.951172, 43.100983 ], [ 19.643555, 43.229195 ], [ 19.204102, 43.516689 ], [ 19.467773, 43.580391 ], [ 19.599609, 44.024422 ], [ 19.116211, 44.433780 ], [ 19.379883, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.920587 ], [ 19.599609, 46.164614 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.449219, 13.880746 ], [ 6.459961, 13.496473 ], [ 6.811523, 13.111580 ], [ 7.338867, 13.111580 ], [ 7.822266, 13.325485 ], [ 9.008789, 12.811801 ], [ 9.536133, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.722656, 13.239945 ], [ 10.986328, 13.368243 ], [ 11.513672, 13.325485 ], [ 12.304688, 13.025966 ], [ 13.095703, 13.581921 ], [ 13.315430, 13.539201 ], [ 13.974609, 12.468760 ], [ 14.194336, 12.468760 ], [ 14.589844, 12.082296 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.566144 ], [ 13.579102, 10.790141 ], [ 13.183594, 9.622414 ], [ 12.963867, 9.405710 ], [ 12.744141, 8.711359 ], [ 12.216797, 8.320212 ], [ 12.084961, 7.798079 ], [ 11.821289, 7.406048 ], [ 11.733398, 6.970049 ], [ 11.074219, 6.664608 ], [ 10.502930, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.536133, 6.446318 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.470703, 4.390229 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.258768 ], [ 5.361328, 4.872048 ], [ 5.053711, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.724609, 8.494105 ], [ 2.900391, 9.145486 ], [ 3.691406, 10.055403 ], [ 3.603516, 10.314919 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.307708 ], [ 3.691406, 12.554564 ], [ 3.955078, 12.940322 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.449219, 13.880746 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.686523, 35.710838 ], [ 24.257812, 35.353216 ], [ 25.004883, 35.424868 ], [ 25.751953, 35.353216 ], [ 25.751953, 35.173808 ], [ 26.279297, 35.317366 ], [ 26.147461, 34.994004 ], [ 24.741211, 34.921971 ], [ 24.741211, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.059570, 40.813809 ], [ 25.444336, 40.847060 ], [ 24.916992, 40.946714 ], [ 23.730469, 40.680638 ], [ 24.389648, 40.111689 ], [ 23.906250, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.631836, 40.245992 ], [ 22.851562, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.983398, 38.959409 ], [ 23.510742, 38.513788 ], [ 24.038086, 38.203655 ], [ 24.038086, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.422852, 37.405074 ], [ 22.763672, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.500000, 36.421282 ], [ 21.665039, 36.844461 ], [ 21.313477, 37.649034 ], [ 21.137695, 38.307181 ], [ 20.214844, 39.334297 ], [ 20.170898, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 21.005859, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.060547, 41.145570 ], [ 22.587891, 41.145570 ], [ 22.763672, 41.310824 ], [ 22.939453, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.574361 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.584961, 35.675147 ], [ 33.881836, 35.245619 ], [ 33.969727, 35.065973 ], [ 33.881836, 35.101934 ], [ 33.486328, 34.994004 ], [ 33.398438, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.739258, 35.137879 ], [ 32.783203, 35.137879 ], [ 32.958984, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.584961, 35.675147 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.630859, 48.224673 ], [ 26.938477, 48.136767 ], [ 28.125000, 46.800059 ], [ 28.168945, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.696289, 45.305803 ], [ 29.135742, 45.460131 ], [ 29.619141, 45.305803 ], [ 29.619141, 45.026950 ], [ 29.135742, 44.809122 ], [ 28.828125, 44.902578 ], [ 28.564453, 43.707594 ], [ 27.949219, 43.802819 ], [ 27.246094, 44.182204 ], [ 26.059570, 43.929550 ], [ 25.576172, 43.675818 ], [ 24.082031, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.456055, 44.402392 ], [ 22.719727, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.148438, 44.465151 ], [ 21.577148, 44.777936 ], [ 21.489258, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 46.980252 ], [ 22.104492, 47.665387 ], [ 22.719727, 47.872144 ], [ 23.159180, 48.107431 ], [ 23.774414, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.873047, 47.724545 ], [ 25.224609, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.630859, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.956055, 41.244772 ], [ 45.175781, 40.979898 ], [ 45.571289, 40.813809 ], [ 45.351562, 40.547200 ], [ 45.878906, 40.212441 ], [ 45.615234, 39.909736 ], [ 46.054688, 39.639538 ], [ 46.494141, 39.470125 ], [ 46.494141, 38.754083 ], [ 46.142578, 38.754083 ], [ 45.747070, 39.334297 ], [ 45.747070, 39.470125 ], [ 45.307617, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.707187 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.245992 ], [ 43.769531, 40.747257 ], [ 43.593750, 41.079351 ], [ 44.956055, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.548548 ], [ 40.913086, 43.389082 ], [ 42.407227, 43.229195 ], [ 43.769531, 42.747012 ], [ 43.945312, 42.553080 ], [ 44.516602, 42.714732 ], [ 45.483398, 42.488302 ], [ 45.791016, 42.098222 ], [ 46.406250, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.178654 ], [ 46.494141, 41.079351 ], [ 45.966797, 41.112469 ], [ 45.219727, 41.409776 ], [ 44.956055, 41.244772 ], [ 43.593750, 41.079351 ], [ 42.626953, 41.574361 ], [ 41.572266, 41.541478 ], [ 41.704102, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.004647 ], [ 40.341797, 43.133061 ], [ 39.946289, 43.421009 ], [ 40.078125, 43.548548 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.222656, 12.168226 ], [ 33.090820, 11.436955 ], [ 33.222656, 10.703792 ], [ 33.706055, 10.314919 ], [ 33.837891, 9.968851 ], [ 33.837891, 9.492408 ], [ 33.969727, 9.449062 ], [ 33.969727, 8.667918 ], [ 33.837891, 8.363693 ], [ 33.310547, 8.363693 ], [ 32.958984, 7.798079 ], [ 33.574219, 7.710992 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.716797, 6.577303 ], [ 35.288086, 5.484768 ], [ 34.013672, 4.258768 ], [ 33.398438, 3.776559 ], [ 32.695312, 3.776559 ], [ 31.860352, 3.557283 ], [ 31.245117, 3.776559 ], [ 30.849609, 3.513421 ], [ 29.970703, 4.171115 ], [ 29.707031, 4.609278 ], [ 29.179688, 4.390229 ], [ 28.696289, 4.434044 ], [ 28.432617, 4.302591 ], [ 27.993164, 4.390229 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.235352, 6.533645 ], [ 25.795898, 6.970049 ], [ 25.136719, 7.493196 ], [ 25.136719, 7.841615 ], [ 23.906250, 8.624472 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.795678 ], [ 25.048828, 10.271681 ], [ 25.795898, 10.401378 ], [ 26.499023, 9.535749 ], [ 26.762695, 9.449062 ], [ 27.114258, 9.622414 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 29.003906, 9.622414 ], [ 29.531250, 9.795678 ], [ 29.619141, 10.098670 ], [ 30.014648, 10.271681 ], [ 30.849609, 9.709057 ], [ 31.333008, 9.795678 ], [ 31.860352, 10.531020 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.080078, 11.953349 ], [ 32.695312, 12.039321 ], [ 32.739258, 12.254128 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.161133, 37.439974 ], [ 15.292969, 37.125286 ], [ 15.117188, 36.633162 ], [ 14.326172, 36.985003 ], [ 13.842773, 37.090240 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.754883, 38.030786 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.172852, 47.129951 ], [ 12.392578, 46.769968 ], [ 13.798828, 46.498392 ], [ 13.710938, 46.012224 ], [ 13.930664, 45.583290 ], [ 13.139648, 45.736860 ], [ 12.348633, 45.367584 ], [ 12.392578, 44.871443 ], [ 12.260742, 44.590467 ], [ 12.568359, 44.087585 ], [ 13.535156, 43.580391 ], [ 14.018555, 42.747012 ], [ 15.161133, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.171875, 41.738528 ], [ 15.908203, 41.541478 ], [ 17.534180, 40.880295 ], [ 18.369141, 40.346544 ], [ 18.500977, 40.178873 ], [ 18.281250, 39.808536 ], [ 17.753906, 40.279526 ], [ 16.875000, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.182617, 39.436193 ], [ 17.050781, 38.891033 ], [ 16.655273, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.688477, 37.892196 ], [ 15.688477, 38.203655 ], [ 15.908203, 38.754083 ], [ 16.127930, 38.959409 ], [ 15.424805, 40.044438 ], [ 14.985352, 40.178873 ], [ 14.721680, 40.613952 ], [ 14.062500, 40.780541 ], [ 13.623047, 41.178654 ], [ 12.875977, 41.244772 ], [ 12.084961, 41.705729 ], [ 11.206055, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.711914, 44.024422 ], [ 8.876953, 44.370987 ], [ 8.437500, 44.245199 ], [ 7.866211, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.558594, 44.119142 ], [ 6.987305, 44.245199 ], [ 6.767578, 45.026950 ], [ 7.075195, 45.336702 ], [ 6.811523, 45.706179 ], [ 6.855469, 45.981695 ], [ 7.294922, 45.767523 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.184570, 46.437857 ], [ 9.931641, 46.316584 ], [ 10.371094, 46.498392 ], [ 10.458984, 46.890232 ], [ 11.030273, 46.739861 ], [ 11.162109, 46.950262 ], [ 12.172852, 47.129951 ] ] ], [ [ [ 9.228516, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.164141 ], [ 9.228516, 39.232253 ], [ 8.789062, 38.891033 ], [ 8.437500, 39.164141 ], [ 8.393555, 40.380028 ], [ 8.173828, 40.946714 ], [ 8.701172, 40.913513 ], [ 9.228516, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.223633, 43.293200 ], [ 75.629883, 42.875964 ], [ 75.981445, 42.972502 ], [ 77.651367, 42.972502 ], [ 79.145508, 42.843751 ], [ 79.628906, 42.488302 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.574361 ], [ 78.178711, 41.178654 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.413496 ], [ 75.454102, 40.547200 ], [ 74.794922, 40.380028 ], [ 73.828125, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.696289, 39.436193 ], [ 71.806641, 39.266284 ], [ 70.532227, 39.605688 ], [ 69.477539, 39.537940 ], [ 69.565430, 40.111689 ], [ 70.664062, 39.943436 ], [ 71.015625, 40.245992 ], [ 71.762695, 40.145289 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.376809 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.508577 ], [ 71.279297, 42.163403 ], [ 70.971680, 42.261049 ], [ 71.191406, 42.714732 ], [ 71.850586, 42.843751 ], [ 73.476562, 42.488302 ], [ 73.652344, 43.100983 ], [ 74.223633, 43.293200 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.005904 ], [ 0.043945, 11.005904 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.185187 ], [ 0.351562, 9.449062 ], [ 0.439453, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.926427 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.527344, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.977539, 4.696879 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.362467 ], [ -2.548828, 8.233237 ], [ -2.944336, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.186523, 11.005904 ], [ -0.747070, 10.919618 ], [ -0.439453, 11.092166 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.074219, 26.037042 ], [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.898438, 24.926295 ], [ 55.810547, 24.287027 ], [ 55.986328, 24.126702 ], [ 55.546875, 23.926013 ], [ 55.546875, 23.523700 ], [ 55.239258, 23.120154 ], [ 55.195312, 22.715390 ], [ 55.019531, 22.512557 ], [ 51.987305, 22.998852 ], [ 51.591797, 24.246965 ], [ 51.767578, 24.287027 ], [ 51.811523, 24.006326 ], [ 52.558594, 24.166802 ], [ 54.008789, 24.126702 ], [ 56.074219, 26.037042 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.501953, 12.854649 ], [ 14.897461, 12.211180 ], [ 14.941406, 11.566144 ], [ 14.941406, 10.876465 ], [ 15.468750, 9.968851 ], [ 14.897461, 10.012130 ], [ 14.633789, 9.925566 ], [ 14.150391, 10.012130 ], [ 13.974609, 9.535749 ], [ 14.545898, 8.971897 ], [ 14.985352, 8.798225 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.402648 ], [ 14.545898, 6.227934 ], [ 14.458008, 5.441022 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.424805, 3.337954 ], [ 15.864258, 3.030812 ], [ 15.908203, 2.547988 ], [ 15.996094, 2.284551 ], [ 15.952148, 1.713612 ], [ 14.326172, 2.240640 ], [ 13.095703, 2.284551 ], [ 12.963867, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.293945, 2.240640 ], [ 9.667969, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.964844, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.481445, 4.477856 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.536133, 6.446318 ], [ 10.107422, 7.057282 ], [ 10.502930, 7.057282 ], [ 11.074219, 6.664608 ], [ 11.733398, 6.970049 ], [ 11.821289, 7.406048 ], [ 12.084961, 7.798079 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.711359 ], [ 12.963867, 9.405710 ], [ 13.183594, 9.622414 ], [ 13.579102, 10.790141 ], [ 14.414062, 11.566144 ], [ 14.458008, 11.910354 ], [ 14.589844, 12.082296 ], [ 14.194336, 12.468760 ], [ 14.194336, 12.811801 ], [ 14.501953, 12.854649 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.064453, 10.660608 ], [ 50.844727, 10.271681 ], [ 50.537109, 9.188870 ], [ 49.438477, 6.795535 ], [ 48.603516, 5.353521 ], [ 47.724609, 4.214943 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.064982 ], [ 44.077148, 1.054628 ], [ 43.154297, 0.307616 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 41.000977, -0.878872 ], [ 41.000977, 2.767478 ], [ 41.835938, 3.908099 ], [ 42.143555, 4.214943 ], [ 42.758789, 4.258768 ], [ 43.681641, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.955078, 9.449062 ], [ 48.955078, 11.393879 ], [ 49.262695, 11.436955 ], [ 50.273438, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.402765 ], [ 23.818359, 19.559790 ], [ 23.906250, 15.623037 ], [ 23.027344, 15.665354 ], [ 22.587891, 14.944785 ], [ 22.324219, 14.306969 ], [ 22.500000, 14.093957 ], [ 22.192383, 13.795406 ], [ 22.280273, 13.368243 ], [ 22.016602, 12.940322 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.640338 ], [ 22.500000, 12.254128 ], [ 22.500000, 11.695273 ], [ 22.895508, 11.393879 ], [ 22.851562, 11.135287 ], [ 22.236328, 10.962764 ], [ 21.708984, 10.574222 ], [ 21.005859, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.058702 ], [ 18.808594, 8.971897 ], [ 18.896484, 8.624472 ], [ 18.369141, 8.276727 ], [ 17.973633, 7.885147 ], [ 16.699219, 7.493196 ], [ 16.435547, 7.754537 ], [ 16.303711, 7.754537 ], [ 16.127930, 7.493196 ], [ 15.292969, 7.406048 ], [ 15.424805, 7.710992 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.971897 ], [ 13.974609, 9.535749 ], [ 14.150391, 10.012130 ], [ 14.633789, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.468750, 9.968851 ], [ 14.941406, 10.876465 ], [ 14.941406, 11.566144 ], [ 14.897461, 12.211180 ], [ 14.501953, 12.854649 ], [ 14.589844, 13.325485 ], [ 13.974609, 13.368243 ], [ 13.974609, 14.008696 ], [ 13.535156, 14.349548 ], [ 13.974609, 15.665354 ], [ 15.249023, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.688477, 19.973349 ], [ 15.908203, 20.385825 ], [ 15.468750, 20.715015 ], [ 15.468750, 21.043491 ], [ 15.117188, 21.289374 ], [ 14.853516, 22.877440 ], [ 15.864258, 23.402765 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.925781, 34.307144 ], [ 78.793945, 33.504759 ], [ 79.189453, 32.990236 ], [ 79.189453, 32.472695 ], [ 78.442383, 32.620870 ], [ 78.750000, 31.503629 ], [ 79.716797, 30.864510 ], [ 81.123047, 30.183122 ], [ 80.463867, 29.726222 ], [ 80.068359, 28.806174 ], [ 81.079102, 28.420391 ], [ 82.001953, 27.916767 ], [ 83.320312, 27.371767 ], [ 84.682617, 27.215556 ], [ 85.253906, 26.745610 ], [ 87.231445, 26.391870 ], [ 88.066406, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.071980 ], [ 88.857422, 27.098254 ], [ 89.736328, 26.706360 ], [ 90.351562, 26.863281 ], [ 91.230469, 26.824071 ], [ 92.021484, 26.824071 ], [ 92.109375, 27.449790 ], [ 91.713867, 27.761330 ], [ 92.504883, 27.877928 ], [ 93.427734, 28.652031 ], [ 94.570312, 29.267233 ], [ 95.405273, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.591797, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.338867, 28.265682 ], [ 97.382812, 27.877928 ], [ 97.031250, 27.683528 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.254630 ], [ 95.141602, 26.588527 ], [ 95.141602, 25.997550 ], [ 94.614258, 25.165173 ], [ 94.570312, 24.686952 ], [ 94.086914, 23.845650 ], [ 93.339844, 24.086589 ], [ 93.295898, 23.039298 ], [ 93.076172, 22.715390 ], [ 93.164062, 22.268764 ], [ 92.680664, 22.024546 ], [ 92.153320, 23.644524 ], [ 91.889648, 23.604262 ], [ 91.713867, 22.998852 ], [ 91.142578, 23.483401 ], [ 91.450195, 24.086589 ], [ 91.933594, 24.126702 ], [ 92.373047, 24.966140 ], [ 91.801758, 25.165173 ], [ 90.878906, 25.125393 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.958045 ], [ 89.340820, 25.997550 ], [ 88.549805, 26.431228 ], [ 88.198242, 25.760320 ], [ 88.945312, 25.244696 ], [ 88.286133, 24.846565 ], [ 88.066406, 24.487149 ], [ 88.681641, 24.246965 ], [ 88.549805, 23.644524 ], [ 88.857422, 22.877440 ], [ 89.033203, 22.065278 ], [ 88.901367, 21.698265 ], [ 88.198242, 21.698265 ], [ 86.967773, 21.493964 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.138470 ], [ 85.078125, 19.476950 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.014768 ], [ 82.177734, 16.551962 ], [ 80.771484, 15.961329 ], [ 80.332031, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.244141, 13.838080 ], [ 80.288086, 13.025966 ], [ 79.848633, 12.039321 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.535749 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.928487 ], [ 77.958984, 8.233237 ], [ 77.519531, 7.972198 ], [ 76.596680, 8.885072 ], [ 75.761719, 11.307708 ], [ 75.410156, 11.781325 ], [ 74.882812, 12.726084 ], [ 74.443359, 14.604847 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.641602, 21.371244 ], [ 71.191406, 20.756114 ], [ 70.488281, 20.879343 ], [ 69.169922, 22.105999 ], [ 69.653320, 22.431340 ], [ 69.345703, 22.836946 ], [ 68.159180, 23.684774 ], [ 68.862305, 24.367114 ], [ 71.059570, 24.367114 ], [ 70.839844, 25.204941 ], [ 70.268555, 25.720735 ], [ 70.180664, 26.509905 ], [ 69.521484, 26.941660 ], [ 70.620117, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.960089 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.977609 ], [ 74.399414, 31.690782 ], [ 75.278320, 32.287133 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.307144 ], [ 74.223633, 34.741612 ], [ 75.761719, 34.488448 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.223633, 43.293200 ], [ 75.629883, 42.875964 ], [ 75.981445, 42.972502 ], [ 77.651367, 42.972502 ], [ 79.145508, 42.843751 ], [ 79.628906, 42.488302 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.574361 ], [ 78.178711, 41.178654 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.413496 ], [ 75.454102, 40.547200 ], [ 74.794922, 40.380028 ], [ 73.828125, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.696289, 39.436193 ], [ 71.806641, 39.266284 ], [ 70.532227, 39.605688 ], [ 69.477539, 39.537940 ], [ 69.565430, 40.111689 ], [ 70.664062, 39.943436 ], [ 71.015625, 40.245992 ], [ 71.762695, 40.145289 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.376809 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.508577 ], [ 71.279297, 42.163403 ], [ 70.971680, 42.261049 ], [ 71.191406, 42.714732 ], [ 71.850586, 42.843751 ], [ 73.476562, 42.488302 ], [ 73.652344, 43.100983 ], [ 74.223633, 43.293200 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.471955 ], [ 102.744141, 21.657428 ], [ 103.183594, 20.756114 ], [ 104.414062, 20.756114 ], [ 104.809570, 19.890723 ], [ 104.194336, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.646245 ], [ 106.567383, 16.594081 ], [ 107.314453, 15.919074 ], [ 107.578125, 15.199386 ], [ 107.402344, 14.221789 ], [ 106.479492, 14.562318 ], [ 106.040039, 13.880746 ], [ 105.205078, 14.264383 ], [ 105.556641, 14.732386 ], [ 105.600586, 15.580711 ], [ 104.765625, 16.425548 ], [ 104.721680, 17.434511 ], [ 103.974609, 18.229351 ], [ 103.183594, 18.312811 ], [ 103.007812, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.128906, 18.104087 ], [ 101.074219, 17.518344 ], [ 101.030273, 18.396230 ], [ 101.293945, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.097206 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.821289, 21.166484 ], [ 101.645508, 22.309426 ], [ 102.172852, 22.471955 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.175612 ], [ 40.385742, 31.877558 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 46.582031, 29.113775 ], [ 47.460938, 28.998532 ], [ 47.724609, 28.536275 ], [ 48.427734, 28.536275 ], [ 48.823242, 27.683528 ], [ 49.306641, 27.449790 ], [ 49.482422, 27.098254 ], [ 50.141602, 26.706360 ], [ 50.229492, 26.273714 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.601902 ], [ 50.537109, 25.324167 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.987305, 22.998852 ], [ 55.019531, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.678711, 21.983801 ], [ 55.019531, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.130859, 18.604601 ], [ 48.164062, 18.145852 ], [ 47.460938, 17.098792 ], [ 47.021484, 16.930705 ], [ 46.757812, 17.266728 ], [ 46.362305, 17.224758 ], [ 45.395508, 17.350638 ], [ 45.219727, 17.434511 ], [ 44.077148, 17.392579 ], [ 43.813477, 17.308688 ], [ 43.374023, 17.560247 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.341226 ], [ 42.670898, 16.762468 ], [ 42.363281, 17.056785 ], [ 42.275391, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.957031, 19.476950 ], [ 40.253906, 20.179724 ], [ 39.814453, 20.344627 ], [ 39.155273, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.593726 ], [ 38.496094, 23.684774 ], [ 38.012695, 24.086589 ], [ 37.485352, 24.287027 ], [ 37.133789, 24.846565 ], [ 37.221680, 25.085599 ], [ 36.914062, 25.601902 ], [ 36.650391, 25.839449 ], [ 36.254883, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.343875 ], [ 36.079102, 29.190533 ], [ 36.518555, 29.496988 ], [ 36.738281, 29.878755 ], [ 37.485352, 29.993002 ], [ 37.661133, 30.334954 ], [ 38.012695, 30.524413 ], [ 37.001953, 31.503629 ], [ 39.023438, 32.026706 ], [ 39.199219, 32.175612 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.364258, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.462891, 36.774092 ], [ 129.462891, 35.639441 ], [ 129.111328, 35.065973 ], [ 128.188477, 34.885931 ], [ 127.397461, 34.488448 ], [ 126.474609, 34.379713 ], [ 126.386719, 34.921971 ], [ 126.562500, 35.675147 ], [ 126.123047, 36.738884 ], [ 126.870117, 36.879621 ], [ 126.166992, 37.753344 ], [ 126.254883, 37.857507 ], [ 126.694336, 37.788081 ], [ 127.089844, 38.272689 ], [ 128.188477, 38.376115 ], [ 128.364258, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.664062, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.377930, 5.222247 ], [ 27.993164, 4.390229 ], [ 28.432617, 4.302591 ], [ 28.696289, 4.434044 ], [ 29.179688, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.970703, 4.171115 ], [ 30.849609, 3.513421 ], [ 30.761719, 2.328460 ], [ 31.157227, 2.196727 ], [ 30.849609, 1.845384 ], [ 30.454102, 1.581830 ], [ 30.102539, 1.054628 ], [ 29.882812, 0.615223 ], [ 29.838867, 0.000000 ], [ 29.838867, -0.219726 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.362176 ], [ 29.311523, -1.625758 ], [ 29.267578, -2.196727 ], [ 29.135742, -2.284551 ], [ 29.003906, -2.855263 ], [ 29.267578, -3.294082 ], [ 29.267578, -3.513421 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.723583 ], [ 16.391602, -1.757537 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.709961, 0.000000 ], [ 17.841797, 0.307616 ], [ 17.753906, 0.834931 ], [ 17.885742, 1.757537 ], [ 18.105469, 2.372369 ], [ 18.413086, 2.899153 ], [ 18.544922, 4.214943 ], [ 18.940430, 4.696879 ], [ 19.467773, 5.047171 ], [ 20.302734, 4.696879 ], [ 20.917969, 4.302591 ], [ 21.665039, 4.214943 ], [ 22.412109, 4.039618 ], [ 22.719727, 4.653080 ], [ 22.851562, 4.696879 ], [ 23.291016, 4.609278 ], [ 24.389648, 5.090944 ], [ 24.785156, 4.915833 ], [ 25.136719, 4.915833 ], [ 25.268555, 5.178482 ], [ 25.664062, 5.266008 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.001953, -3.118576 ], [ 127.265625, -3.469557 ], [ 127.177734, -3.513421 ], [ 126.123047, -3.513421 ], [ 125.991211, -3.162456 ], [ 127.001953, -3.118576 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.074695 ], [ 130.649414, -3.513421 ], [ 130.122070, -3.513421 ], [ 129.990234, -3.425692 ], [ 129.155273, -3.381824 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.989258, -0.790990 ], [ 134.165039, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.439453, -3.381824 ], [ 136.274414, -2.328460 ], [ 137.460938, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.921875, -2.416276 ], [ 141.020508, -2.591889 ], [ 141.020508, -3.513421 ], [ 132.758789, -3.513421 ], [ 132.758789, -3.294082 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.625758 ], [ 130.957031, -1.450040 ], [ 130.517578, -0.922812 ], [ 131.879883, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.026367, 4.302591 ], [ 117.861328, 4.127285 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.922812 ], [ 117.817383, 0.790990 ], [ 117.465820, 0.087891 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.504085 ], [ 116.279297, -3.513421 ], [ 114.477539, -3.513421 ], [ 113.774414, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.030812 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.581830 ], [ 109.555664, -1.318243 ], [ 109.072266, -0.439449 ], [ 109.028320, 0.000000 ], [ 108.940430, 0.395505 ], [ 109.072266, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.318243 ], [ 110.522461, 0.790990 ], [ 111.137695, 0.966751 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.136719, 2.811371 ], [ 115.532227, 3.162456 ], [ 115.883789, 4.302591 ], [ 117.026367, 4.302591 ] ] ], [ [ [ 125.068359, 1.625758 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.706055, 0.219726 ], [ 122.739258, 0.439449 ], [ 121.069336, 0.395505 ], [ 120.190430, 0.219726 ], [ 120.146484, 0.000000 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.354492, -0.615223 ], [ 123.266602, -1.054628 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.537901 ], [ 121.508789, -1.889306 ], [ 122.475586, -3.206333 ], [ 122.299805, -3.513421 ], [ 120.893555, -3.513421 ], [ 120.981445, -2.635789 ], [ 120.322266, -2.943041 ], [ 120.366211, -3.513421 ], [ 119.487305, -3.513421 ], [ 119.091797, -3.469557 ], [ 118.784180, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.311523, -1.362176 ], [ 119.794922, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.684570, 1.010690 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.068359, 1.625758 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.258768 ], [ 99.711914, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.064982 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.571280 ], [ 103.842773, 0.087891 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.801461 ], [ 104.897461, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.127930, -3.074695 ], [ 105.996094, -3.513421 ], [ 102.041016, -3.513421 ], [ 101.381836, -2.811371 ], [ 100.898438, -2.064982 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.294082 ], [ 96.416016, 3.864255 ], [ 95.361328, 4.959615 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 127.924805, 2.152814 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.351560 ], [ 128.012695, 0.000000 ], [ 127.968750, -0.263671 ], [ 128.364258, -0.790990 ], [ 128.100586, -0.878872 ], [ 127.705078, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.617188, 1.801461 ], [ 127.924805, 2.152814 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.484768 ], [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.166992, 4.434044 ], [ 36.870117, 4.434044 ], [ 38.100586, 3.601142 ], [ 38.671875, 3.601142 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.858398, 3.820408 ], [ 40.781250, 4.258768 ], [ 41.176758, 3.908099 ], [ 41.835938, 3.908099 ], [ 41.000977, 2.767478 ], [ 41.000977, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.649414, -2.504085 ], [ 40.253906, -2.591889 ], [ 40.122070, -3.294082 ], [ 39.946289, -3.513421 ], [ 37.749023, -3.513421 ], [ 37.705078, -3.118576 ], [ 33.881836, -0.966751 ], [ 33.881836, 0.087891 ], [ 34.672852, 1.186439 ], [ 35.024414, 1.889306 ], [ 34.584961, 3.074695 ], [ 34.497070, 3.557283 ], [ 34.013672, 4.258768 ], [ 35.288086, 5.484768 ] ] ] } } ] } ] } , @@ -162,7 +156,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.116211, 1.757537 ], [ -64.204102, 1.493971 ], [ -65.346680, 1.098565 ], [ -65.544434, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.252342 ], [ -67.038574, 1.757537 ], [ -64.116211, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, -19.352611 ], [ -58.183594, -19.870060 ], [ -58.161621, -20.179724 ], [ -57.875977, -20.735566 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.289096 ], [ -56.469727, -22.085640 ], [ -55.788574, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.393066, -23.966176 ], [ -55.019531, -24.006326 ], [ -54.645996, -23.845650 ], [ -54.294434, -24.026397 ], [ -54.294434, -24.567108 ], [ -54.426270, -25.165173 ], [ -54.624023, -25.740529 ], [ -54.777832, -26.627818 ], [ -55.700684, -27.391278 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.165173 ], [ -58.798828, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.842285, -23.885838 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.642588 ], [ -60.051270, -19.352611 ], [ -59.106445, -19.352611 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.807617, 1.757537 ], [ -67.873535, 1.691649 ], [ -69.807129, 1.713612 ], [ -69.807129, 1.098565 ], [ -69.213867, 0.988720 ], [ -69.257812, 0.593251 ], [ -69.455566, 0.703107 ], [ -70.004883, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.411621, -1.120534 ], [ -69.433594, -1.559866 ], [ -69.895020, -4.302591 ], [ -70.400391, -3.776559 ], [ -70.686035, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.262595 ], [ -71.411133, -2.350415 ], [ -71.784668, -2.174771 ], [ -72.333984, -2.438229 ], [ -73.081055, -2.306506 ], [ -73.652344, -1.252342 ], [ -74.113770, -1.010690 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.065918 ], [ -75.366211, -0.153808 ], [ -75.651855, 0.000000 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.263671 ], [ -77.431641, 0.395505 ], [ -77.673340, 0.834931 ], [ -77.849121, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.662109, 1.757537 ], [ -67.807617, 1.757537 ] ] ], [ [ [ -67.038574, 1.757537 ], [ -66.884766, 1.252342 ], [ -67.060547, 1.120534 ], [ -67.302246, 1.757537 ], [ -67.038574, 1.757537 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.810059, -63.273182 ], [ -57.216797, -63.528971 ], [ -57.590332, -63.860036 ], [ -58.623047, -64.148952 ], [ -59.040527, -64.368438 ], [ -59.787598, -64.215937 ], [ -60.622559, -64.311349 ], [ -62.028809, -64.802204 ], [ -62.512207, -65.090646 ], [ -62.644043, -65.485626 ], [ -62.600098, -65.856756 ], [ -62.116699, -66.187139 ], [ -62.797852, -66.425537 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.835165 ], [ -64.951172, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.878345 ], [ -66.577148, -66.513260 ], [ -66.049805, -66.213739 ], [ -65.368652, -65.892680 ], [ -64.577637, -65.603878 ], [ -64.182129, -65.173806 ], [ -63.632812, -64.895589 ], [ -62.995605, -64.642704 ], [ -62.050781, -64.586185 ], [ -61.413574, -64.273223 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.956673 ], [ -59.172363, -63.704722 ], [ -58.601074, -63.391522 ], [ -57.810059, -63.273182 ] ] ] } } ] } ] } , @@ -170,21 +166,15 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.374023, 48.297812 ], [ -84.880371, 46.905246 ], [ -84.770508, 46.634351 ], [ -84.550781, 46.543750 ], [ -84.594727, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.133301, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.118942 ], [ -83.605957, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.583984, 45.813486 ], [ -82.551270, 45.352145 ], [ -82.133789, 43.564472 ], [ -82.419434, 42.972502 ], [ -82.902832, 42.423457 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.967659 ], [ -83.034668, 41.836828 ], [ -82.683105, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.212245 ], [ -80.244141, 42.358544 ], [ -78.947754, 42.859860 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.167480, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.816406, 43.628123 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.809122 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.081543, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.235840, 47.442950 ], [ -68.906250, 47.189712 ], [ -68.225098, 47.353711 ], [ -67.785645, 47.070122 ], [ -67.785645, 45.706179 ], [ -67.126465, 45.135555 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.691708 ], [ -70.817871, 42.859860 ], [ -70.817871, 42.342305 ], [ -70.488281, 41.804078 ], [ -70.070801, 41.787697 ], [ -70.180664, 42.147114 ], [ -69.895020, 41.918629 ], [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.492121 ], [ -71.850586, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.930115 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.959961, 40.747257 ], [ -74.267578, 40.480381 ], [ -73.959961, 40.430224 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.942321 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.249271 ], [ -75.520020, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.265310 ], [ -75.717773, 37.944198 ], [ -76.223145, 38.324420 ], [ -76.354980, 39.147103 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.311035, 37.909534 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.897194 ], [ -75.871582, 36.544949 ], [ -75.717773, 35.550105 ], [ -76.354980, 34.813803 ], [ -77.387695, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.870416 ], [ -79.057617, 33.486435 ], [ -79.211426, 33.155948 ], [ -80.310059, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.031055 ], [ -80.969238, 29.171349 ], [ -80.529785, 28.478349 ], [ -80.529785, 28.033198 ], [ -80.046387, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.320801, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.705078, 27.488781 ], [ -82.858887, 27.877928 ], [ -82.639160, 28.555576 ], [ -82.924805, 29.094577 ], [ -83.715820, 29.935895 ], [ -84.089355, 30.088108 ], [ -85.100098, 29.630771 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.391830 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -91.757812, 29.649869 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.496094, 15.008464 ], [ -83.144531, 14.987240 ], [ -83.232422, 14.902322 ], [ -83.276367, 14.668626 ], [ -83.188477, 14.306969 ], [ -83.408203, 13.966054 ], [ -83.518066, 13.560562 ], [ -83.562012, 13.132979 ], [ -83.496094, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.318536 ], [ -83.715820, 11.888853 ], [ -83.649902, 11.630716 ], [ -83.847656, 11.372339 ], [ -83.803711, 11.113727 ], [ -83.649902, 10.941192 ], [ -83.891602, 10.725381 ], [ -84.199219, 10.790141 ], [ -84.353027, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.902344, 10.962764 ], [ -85.561523, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.802834 ], [ -86.748047, 12.146746 ], [ -87.165527, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.385254, 12.918907 ], [ -87.319336, 12.983148 ], [ -87.011719, 13.025966 ], [ -86.879883, 13.261333 ], [ -86.726074, 13.261333 ], [ -86.748047, 13.752725 ], [ -86.308594, 13.774066 ], [ -86.088867, 14.030015 ], [ -85.803223, 13.838080 ], [ -85.693359, 13.966054 ], [ -85.166016, 14.349548 ], [ -85.144043, 14.562318 ], [ -85.056152, 14.541050 ], [ -84.924316, 14.796128 ], [ -84.814453, 14.817371 ], [ -84.638672, 14.668626 ], [ -84.440918, 14.626109 ], [ -84.221191, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.627930, 14.881087 ], [ -83.496094, 15.008464 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.911384 ], [ -72.575684, 19.870060 ], [ -71.718750, 19.704658 ], [ -71.630859, 19.165924 ], [ -71.696777, 18.791918 ], [ -71.938477, 18.625425 ], [ -71.696777, 18.312811 ], [ -71.718750, 18.041421 ], [ -72.377930, 18.208480 ], [ -72.839355, 18.145852 ], [ -73.454590, 18.208480 ], [ -73.916016, 18.041421 ], [ -74.465332, 18.333669 ], [ -74.377441, 18.667063 ], [ -72.685547, 18.437925 ], [ -72.333984, 18.667063 ], [ -72.795410, 19.103648 ], [ -72.773438, 19.476950 ], [ -73.410645, 19.642588 ], [ -73.190918, 19.911384 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.363693 ], [ -59.106445, 7.993957 ], [ -58.491211, 7.340675 ], [ -58.447266, 6.839170 ], [ -58.073730, 6.817353 ], [ -57.150879, 5.965754 ], [ -57.304688, 5.069058 ], [ -57.919922, 4.806365 ], [ -57.854004, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.767478 ], [ -56.535645, 1.889306 ], [ -56.777344, 1.867345 ], [ -57.326660, 1.955187 ], [ -57.656250, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.425293, 1.472006 ], [ -58.535156, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.779499 ], [ -59.721680, 2.240640 ], [ -59.985352, 2.745531 ], [ -59.809570, 3.601142 ], [ -59.545898, 3.951941 ], [ -59.765625, 4.434044 ], [ -60.117188, 4.565474 ], [ -59.985352, 5.003394 ], [ -60.205078, 5.244128 ], [ -60.732422, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.227934 ], [ -61.149902, 6.686431 ], [ -60.534668, 6.860985 ], [ -60.292969, 7.035476 ], [ -60.644531, 7.406048 ], [ -60.556641, 7.776309 ], [ -59.765625, 8.363693 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.631217 ], [ -4.064941, 57.551208 ], [ -3.054199, 57.692406 ], [ -1.955566, 57.680660 ], [ -2.219238, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.691895, 52.736292 ], [ 1.560059, 52.106505 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.764259 ], [ -0.791016, 50.778155 ], [ -2.482910, 50.499452 ], [ -2.966309, 50.694718 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.306641, 51.206883 ], [ -3.405762, 51.426614 ], [ -4.987793, 51.590723 ], [ -5.273438, 51.984880 ], [ -4.218750, 52.295042 ], [ -4.768066, 52.842595 ], [ -4.570312, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.944336, 53.981935 ], [ -3.625488, 54.610255 ], [ -4.833984, 54.788017 ], [ -5.075684, 55.065787 ], [ -4.724121, 55.503750 ], [ -5.053711, 55.788929 ], [ -5.581055, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.778809, 57.821355 ], [ -5.009766, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.631217 ] ] ], [ [ [ -6.723633, 55.178868 ], [ -5.668945, 54.559323 ], [ -6.196289, 53.865486 ], [ -6.943359, 54.072283 ], [ -7.580566, 54.059388 ], [ -7.360840, 54.597528 ], [ -7.580566, 55.128649 ], [ -6.723633, 55.178868 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.657227, 27.664069 ], [ -8.679199, 25.878994 ], [ -11.975098, 25.938287 ], [ -11.931152, 23.382598 ], [ -12.875977, 23.281719 ], [ -13.117676, 22.776182 ], [ -12.919922, 21.330315 ], [ -16.853027, 21.330315 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.412162 ], [ -14.743652, 21.493964 ], [ -14.633789, 21.861499 ], [ -14.216309, 22.309426 ], [ -13.886719, 23.684774 ], [ -12.502441, 24.766785 ], [ -12.041016, 26.037042 ], [ -11.711426, 26.096255 ], [ -11.381836, 26.882880 ], [ -10.546875, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.733887, 26.863281 ], [ -9.404297, 27.098254 ], [ -8.789062, 27.117813 ], [ -8.811035, 27.664069 ], [ -8.657227, 27.664069 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.185547, 35.746512 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.173808 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.524661 ], [ -1.735840, 33.925130 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.614746, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.647461, 31.634676 ], [ -3.691406, 30.902225 ], [ -4.855957, 30.505484 ], [ -5.251465, 29.993002 ], [ -6.064453, 29.726222 ], [ -7.053223, 29.573457 ], [ -8.679199, 28.844674 ], [ -8.657227, 27.664069 ], [ -8.811035, 27.664069 ], [ -8.789062, 27.117813 ], [ -9.404297, 27.098254 ], [ -9.733887, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.546875, 27.000408 ], [ -11.381836, 26.882880 ], [ -11.711426, 26.096255 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.766785 ], [ -13.886719, 23.684774 ], [ -14.216309, 22.309426 ], [ -14.633789, 21.861499 ], [ -14.743652, 21.493964 ], [ -17.028809, 21.412162 ], [ -16.962891, 21.881890 ], [ -16.589355, 22.167058 ], [ -16.259766, 22.674847 ], [ -16.325684, 23.019076 ], [ -15.974121, 23.725012 ], [ -15.424805, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.436035, 26.254010 ], [ -13.776855, 26.627818 ], [ -13.139648, 27.644606 ], [ -12.612305, 28.033198 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.825425 ], [ -10.393066, 29.094577 ], [ -9.558105, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.426270, 32.045333 ], [ -9.294434, 32.565333 ], [ -8.657227, 33.247876 ], [ -7.646484, 33.706063 ], [ -6.921387, 34.107256 ], [ -6.240234, 35.137879 ], [ -5.932617, 35.764343 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.618897 ], [ -13.710938, 12.576010 ], [ -13.710938, 12.254128 ], [ -13.820801, 12.146746 ], [ -13.732910, 11.802834 ], [ -13.908691, 11.673755 ], [ -14.128418, 11.673755 ], [ -14.392090, 11.501557 ], [ -14.677734, 11.523088 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.325684, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.511665 ], [ -15.556641, 12.618897 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.391278 ], [ -4.921875, 24.966140 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.320139 ], [ -5.317383, 16.193575 ], [ -5.537109, 15.496032 ], [ -9.558105, 15.496032 ], [ -9.689941, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.796128 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.425293, 16.045813 ], [ -14.106445, 16.299051 ], [ -14.567871, 16.594081 ], [ -15.139160, 16.594081 ], [ -15.622559, 16.362310 ], [ -16.127930, 16.446622 ], [ -16.457520, 16.130262 ], [ -16.545410, 16.678293 ], [ -16.259766, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.103648 ], [ -16.369629, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.330315 ], [ -12.919922, 21.330315 ], [ -13.117676, 22.776182 ], [ -12.875977, 23.281719 ], [ -11.931152, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.679199, 25.878994 ], [ -8.679199, 27.391278 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.447305 ], [ -71.389160, 12.382928 ], [ -71.147461, 12.103781 ], [ -71.323242, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.224121, 11.113727 ], [ -72.619629, 10.811724 ], [ -72.905273, 10.444598 ], [ -73.037109, 9.730714 ], [ -73.300781, 9.145486 ], [ -72.795410, 9.080400 ], [ -72.663574, 8.624472 ], [ -72.443848, 8.407168 ], [ -72.355957, 7.993957 ], [ -72.487793, 7.623887 ], [ -72.443848, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.664062, 7.079088 ], [ -70.092773, 6.970049 ], [ -69.389648, 6.096860 ], [ -68.994141, 6.206090 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.550381 ], [ -67.741699, 5.222247 ], [ -67.829590, 4.499762 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.535352 ], [ -67.302246, 3.316018 ], [ -67.807617, 2.811371 ], [ -67.456055, 2.591889 ], [ -67.170410, 2.240640 ], [ -66.884766, 1.252342 ], [ -67.060547, 1.120534 ], [ -67.258301, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.691649 ], [ -69.807129, 1.713612 ], [ -69.807129, 1.098565 ], [ -69.213867, 0.988720 ], [ -69.257812, 0.593251 ], [ -69.455566, 0.703107 ], [ -70.004883, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.411621, -1.120534 ], [ -69.477539, -1.757537 ], [ -73.388672, -1.757537 ], [ -73.652344, -1.252342 ], [ -74.113770, -1.010690 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.065918 ], [ -75.366211, -0.153808 ], [ -75.651855, 0.000000 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.263671 ], [ -77.431641, 0.395505 ], [ -77.673340, 0.834931 ], [ -77.849121, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.757537 ], [ -78.662109, 2.262595 ], [ -78.420410, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.124023, 3.842332 ], [ -77.497559, 4.083453 ], [ -77.299805, 4.674980 ], [ -77.541504, 5.572250 ], [ -77.321777, 5.834616 ], [ -77.475586, 6.686431 ], [ -77.871094, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.233887, 7.928675 ], [ -77.475586, 8.515836 ], [ -77.343750, 8.667918 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.673828, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.476074, 10.617418 ], [ -74.904785, 11.092166 ], [ -74.267578, 11.092166 ], [ -74.201660, 11.307708 ], [ -73.410645, 11.221510 ], [ -72.246094, 11.953349 ], [ -71.762695, 12.447305 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.196289, 10.531020 ], [ -6.042480, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.943848, 10.141932 ], [ -4.790039, 9.817329 ], [ -4.328613, 9.600750 ], [ -3.977051, 9.860628 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.211490 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.249776 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 4.981505 ], [ -3.999023, 5.178482 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.514648, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.624512, 5.178482 ], [ -7.536621, 5.309766 ], [ -7.580566, 5.703448 ], [ -7.998047, 6.118708 ], [ -8.305664, 6.184246 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.904614 ], [ -8.481445, 7.406048 ], [ -8.437500, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.217773, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.195801, 8.450639 ], [ -7.822266, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.305664, 9.795678 ], [ -8.239746, 10.120302 ], [ -7.910156, 10.293301 ], [ -7.624512, 10.141932 ], [ -6.855469, 10.141932 ], [ -6.657715, 10.422988 ], [ -6.503906, 10.401378 ], [ -6.196289, 10.531020 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.747174 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.565474 ], [ -51.657715, 4.149201 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.504085 ], [ -52.932129, 2.130856 ], [ -53.415527, 2.043024 ], [ -53.547363, 2.328460 ], [ -53.789062, 2.372369 ], [ -54.096680, 2.108899 ], [ -54.514160, 2.306506 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.184394 ], [ -54.008789, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.470215, 4.893941 ], [ -53.964844, 5.747174 ] ] ], [ [ [ 1.757812, 50.972265 ], [ 1.757812, 42.374778 ], [ 0.703125, 42.795401 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.494141, 43.036776 ], [ -1.911621, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.219238, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.482422, 47.960502 ], [ -4.592285, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.988770, 49.353756 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.120578 ], [ 1.647949, 50.944584 ], [ 1.757812, 50.972265 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 36.633162 ], [ 1.757812, 20.653346 ], [ 0.000000, 21.800308 ], [ -4.921875, 24.966140 ], [ -8.679199, 27.391278 ], [ -8.679199, 28.844674 ], [ -7.053223, 29.573457 ], [ -6.064453, 29.726222 ], [ -5.251465, 29.993002 ], [ -4.855957, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.647461, 31.634676 ], [ -3.076172, 31.728167 ], [ -2.614746, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.120605, 32.657876 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.524661 ], [ -2.175293, 35.173808 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.597889 ], [ 1.757812, 36.633162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.639014 ], [ 0.373535, 10.185187 ], [ 0.373535, 9.470736 ], [ 0.461426, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.904614 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.955566, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.249776 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.211490 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.005904 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.092166 ] ] ] } } ] } ] } , @@ -204,9 +194,15 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 1.757537 ], [ 11.293945, 1.054628 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.164471 ], [ 9.492188, 1.757537 ], [ 11.271973, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.750000, -9.427387 ], [ 34.277344, -10.163560 ], [ 34.562988, -11.523088 ], [ 34.277344, -12.275599 ], [ 34.562988, -13.581921 ], [ 34.914551, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.897942 ], [ 35.332031, -16.109153 ], [ 35.024414, -16.804541 ], [ 34.387207, -16.193575 ], [ 34.299316, -15.474857 ], [ 34.519043, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.793945, -14.455958 ], [ 33.222656, -13.966054 ], [ 32.695312, -13.710035 ], [ 32.980957, -12.790375 ], [ 33.310547, -12.425848 ], [ 33.112793, -11.609193 ], [ 33.310547, -10.790141 ], [ 33.486328, -10.531020 ], [ 33.222656, -9.687398 ], [ 32.761230, -9.232249 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "name_sort": "Burundi", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.948730, -2.350415 ], [ 30.476074, -2.416276 ], [ 30.520020, -2.811371 ], [ 30.739746, -3.030812 ], [ 30.761719, -3.359889 ], [ 30.498047, -3.579213 ], [ 30.124512, -4.083453 ], [ 29.750977, -4.455951 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.294082 ], [ 29.025879, -2.833317 ], [ 29.641113, -2.921097 ], [ 29.948730, -2.350415 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.421387, -22.085640 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.201172, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.839449 ], [ 31.333008, -25.661333 ], [ 31.047363, -25.740529 ], [ 30.959473, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.695801, -26.745610 ], [ 31.289062, -27.293689 ], [ 31.860352, -27.176469 ], [ 32.080078, -26.725987 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.453613, -28.304381 ], [ 32.211914, -28.748397 ], [ 31.333008, -29.401320 ], [ 30.893555, -29.916852 ], [ 30.629883, -30.429730 ], [ 30.058594, -31.147006 ], [ 28.916016, -32.175612 ], [ 28.212891, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.773926, -33.943360 ], [ 25.180664, -33.797409 ], [ 24.675293, -33.979809 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.925130 ], [ 22.565918, -33.870416 ], [ 21.533203, -34.252676 ], [ 20.698242, -34.415973 ], [ 20.061035, -34.795762 ], [ 19.621582, -34.813803 ], [ 19.204102, -34.470335 ], [ 18.852539, -34.452218 ], [ 18.435059, -33.998027 ], [ 18.369141, -34.143635 ], [ 18.237305, -33.870416 ], [ 18.259277, -33.284620 ], [ 17.929688, -32.602362 ], [ 18.237305, -32.435613 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.732393 ], [ 16.347656, -28.574874 ], [ 16.831055, -28.091366 ], [ 17.226562, -28.362402 ], [ 17.380371, -28.786918 ], [ 17.841797, -28.863918 ], [ 18.457031, -29.036961 ], [ 19.006348, -28.979312 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.170898, -24.926295 ], [ 20.764160, -25.859224 ], [ 20.676270, -26.470573 ], [ 20.895996, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.587891, -25.977799 ], [ 22.829590, -25.502785 ], [ 23.312988, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.213867, -25.661333 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.482951 ], [ 25.949707, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.246965 ], [ 27.114258, -23.584126 ], [ 28.015137, -22.836946 ], [ 29.421387, -22.085640 ] ], [ [ 28.542480, -28.652031 ], [ 28.081055, -28.844674 ], [ 27.531738, -29.248063 ], [ 27.004395, -29.878755 ], [ 27.751465, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.300781, -30.221102 ], [ 28.850098, -30.069094 ], [ 29.333496, -29.248063 ], [ 28.981934, -28.960089 ], [ 28.542480, -28.652031 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.278320, -15.517205 ], [ 30.344238, -15.876809 ], [ 31.179199, -15.855674 ], [ 31.640625, -16.066929 ], [ 31.860352, -16.320139 ], [ 32.321777, -16.383391 ], [ 32.849121, -16.720385 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.783203, -19.725342 ], [ 32.651367, -20.303418 ], [ 32.519531, -20.385825 ], [ 32.255859, -21.125498 ], [ 31.201172, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.105999 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.493964 ], [ 27.729492, -20.858812 ], [ 27.729492, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.169434, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.542117 ], [ 25.268555, -17.727759 ], [ 26.389160, -17.853290 ], [ 26.696777, -17.957832 ], [ 27.048340, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.476562, -16.467695 ], [ 28.828125, -16.383391 ], [ 28.937988, -16.045813 ], [ 29.509277, -15.644197 ], [ 30.278320, -15.517205 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 1.757537 ], [ 41.000977, 0.000000 ], [ 41.000977, -0.856902 ], [ 41.594238, -1.691649 ], [ 40.891113, -2.086941 ], [ 40.627441, -2.504085 ], [ 40.253906, -2.569939 ], [ 40.122070, -3.272146 ], [ 39.792480, -3.688855 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.770996, -3.666928 ], [ 37.705078, -3.096636 ], [ 33.903809, -0.944781 ], [ 33.903809, 0.109863 ], [ 34.672852, 1.186439 ], [ 34.958496, 1.757537 ], [ 40.979004, 1.757537 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.542480, -28.652031 ], [ 28.981934, -28.960089 ], [ 29.333496, -29.248063 ], [ 28.850098, -30.069094 ], [ 28.300781, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.751465, -30.637912 ], [ 27.004395, -29.878755 ], [ 27.531738, -29.248063 ], [ 28.081055, -28.844674 ], [ 28.542480, -28.652031 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.536133, -65.820782 ], [ 55.415039, -65.874725 ], [ 56.359863, -65.973325 ], [ 57.150879, -66.249163 ], [ 57.216797, -66.513260 ], [ 57.260742, -66.679087 ], [ 58.139648, -67.016009 ], [ 58.557129, -67.204032 ], [ 48.735352, -67.204032 ], [ 48.999023, -67.093105 ], [ 49.921875, -67.110204 ], [ 50.756836, -66.878345 ], [ 50.954590, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.249163 ], [ 52.624512, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ] ] ], [ [ [ 84.726562, -67.204032 ], [ 85.649414, -67.093105 ], [ 86.748047, -67.152898 ], [ 87.473145, -66.878345 ], [ 87.758789, -66.513260 ], [ 87.978516, -66.213739 ], [ 88.395996, -66.513260 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 84.726562, -67.204032 ] ] ], [ [ [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.127290 ], [ 91.757812, -67.204032 ], [ 90.834961, -67.204032 ] ] ] ] } } ] } ] } , @@ -214,49 +210,49 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 55.478853 ], [ -1.120605, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.691895, 52.736292 ], [ 1.560059, 52.106505 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.764259 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.478853 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.977614 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.942383, 54.007769 ], [ 11.953125, 54.201010 ], [ 12.524414, 54.470038 ], [ 13.645020, 54.072283 ], [ 14.128418, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.084473, 52.975108 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.611816, 51.740636 ], [ 15.007324, 51.110420 ], [ 14.567871, 50.999929 ], [ 14.304199, 51.110420 ], [ 14.062500, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.261254 ], [ 12.414551, 49.965356 ], [ 12.524414, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.601074, 48.879167 ], [ 13.249512, 48.414619 ], [ 12.875977, 48.283193 ], [ 13.029785, 47.635784 ], [ 12.941895, 47.472663 ], [ 12.612305, 47.665387 ], [ 12.150879, 47.709762 ], [ 11.425781, 47.517201 ], [ 10.546875, 47.561701 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.576526 ], [ 9.602051, 47.532038 ], [ 8.525391, 47.827908 ], [ 8.327637, 47.620975 ], [ 7.470703, 47.620975 ], [ 7.602539, 48.327039 ], [ 8.107910, 49.023461 ], [ 6.657715, 49.196064 ], [ 6.196289, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.998535, 51.849353 ], [ 6.591797, 51.849353 ], [ 6.833496, 52.227799 ], [ 7.097168, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.129883, 53.527248 ], [ 8.811035, 54.020680 ], [ 8.569336, 54.393352 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.826008 ], [ 9.931641, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.018066, 67.204032 ], [ 15.402832, 66.513260 ], [ 15.117188, 66.196009 ], [ 13.557129, 64.783488 ], [ 13.930664, 64.444372 ], [ 13.579102, 64.052978 ], [ 12.590332, 64.062591 ], [ 11.931152, 63.124572 ], [ 11.997070, 61.804284 ], [ 12.634277, 61.291349 ], [ 12.304688, 60.119619 ], [ 11.469727, 59.433903 ], [ 11.030273, 58.859224 ], [ 10.349121, 59.467408 ], [ 8.371582, 58.309489 ], [ 7.053223, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.317383, 59.667741 ], [ 4.987793, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.547363, 63.450509 ], [ 10.524902, 64.482261 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.996582, 67.204032 ], [ 16.018066, 67.204032 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 67.204032 ], [ 23.554688, 66.513260 ], [ 23.576660, 66.399160 ], [ 23.906250, 66.009086 ], [ 22.192383, 65.721594 ], [ 21.203613, 65.025785 ], [ 21.379395, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.841797, 62.744665 ], [ 17.116699, 61.344078 ], [ 17.841797, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.950008 ], [ 16.831055, 58.722599 ], [ 16.457520, 57.040730 ], [ 15.886230, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.106445, 55.404070 ], [ 12.941895, 55.366625 ], [ 12.634277, 56.304349 ], [ 11.777344, 57.444949 ], [ 11.030273, 58.859224 ], [ 11.469727, 59.433903 ], [ 12.304688, 60.119619 ], [ 12.634277, 61.291349 ], [ 11.997070, 61.804284 ], [ 11.931152, 63.124572 ], [ 12.590332, 64.062591 ], [ 13.579102, 64.052978 ], [ 13.930664, 64.444372 ], [ 13.557129, 64.783488 ], [ 15.117188, 66.196009 ], [ 15.402832, 66.513260 ], [ 16.018066, 67.204032 ], [ 23.554688, 67.204032 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ], [ 6.196289, 49.468124 ], [ 5.888672, 49.439557 ], [ 5.668945, 49.525208 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.108810 ], [ 12.700195, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.052246, 55.366625 ], [ 10.898438, 55.776573 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 10.590820, 57.727619 ], [ 10.546875, 57.219608 ], [ 10.239258, 56.885002 ], [ 10.371094, 56.607885 ], [ 10.920410, 56.462490 ], [ 10.678711, 56.084298 ], [ 10.371094, 56.194481 ], [ 9.645996, 55.466399 ], [ 9.931641, 54.977614 ], [ 9.272461, 54.826008 ], [ 8.525391, 54.965002 ], [ 8.129883, 55.516192 ], [ 8.085938, 56.535258 ], [ 8.261719, 56.812908 ], [ 8.547363, 57.112385 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.444949 ], [ 10.590820, 57.727619 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.382324, 43.004647 ], [ 9.558105, 42.147114 ], [ 9.228516, 41.376809 ], [ 8.767090, 41.590797 ], [ 8.547363, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.004647 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.658691, 50.792047 ], [ 3.120117, 50.778155 ], [ 3.581543, 50.373496 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.979488 ], [ 5.668945, 49.525208 ], [ 5.888672, 49.439557 ], [ 6.196289, 49.468124 ], [ 6.657715, 49.196064 ], [ 8.107910, 49.023461 ], [ 7.602539, 48.327039 ], [ 7.470703, 47.620975 ], [ 7.185059, 47.442950 ], [ 6.745605, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.042480, 46.724800 ], [ 6.020508, 46.271037 ], [ 6.503906, 46.422713 ], [ 6.833496, 45.996962 ], [ 6.811523, 45.706179 ], [ 7.097168, 45.336702 ], [ 6.745605, 45.026950 ], [ 7.009277, 44.260937 ], [ 7.558594, 44.134913 ], [ 7.426758, 43.691708 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.068888 ], [ 2.988281, 42.472097 ], [ 1.823730, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.494141, 43.036776 ], [ -1.757812, 43.277205 ], [ -1.757812, 43.596306 ], [ -1.384277, 44.024422 ], [ -1.186523, 46.012224 ], [ -1.757812, 46.589069 ], [ -1.757812, 48.661943 ], [ -1.625977, 48.647428 ], [ -1.757812, 49.152970 ], [ -1.757812, 49.696062 ], [ -0.988770, 49.353756 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.120578 ], [ 1.647949, 50.944584 ], [ 2.504883, 51.151786 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.313965, 49.567978 ], [ 19.819336, 49.210420 ], [ 20.412598, 49.425267 ], [ 20.895996, 49.325122 ], [ 21.599121, 49.468124 ], [ 22.565918, 49.081062 ], [ 22.280273, 48.821333 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.808105, 48.618385 ], [ 20.478516, 48.560250 ], [ 20.236816, 48.327039 ], [ 19.775391, 48.195387 ], [ 19.665527, 48.268569 ], [ 19.182129, 48.107431 ], [ 18.786621, 48.078079 ], [ 18.698730, 47.886881 ], [ 17.863770, 47.754098 ], [ 17.490234, 47.872144 ], [ 16.984863, 48.122101 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 48.994636 ], [ 18.105469, 49.037868 ], [ 18.171387, 49.267805 ], [ 18.391113, 49.310799 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.918457, 49.439557 ], [ 19.313965, 49.567978 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.682435 ], [ 19.797363, 42.504503 ], [ 20.061035, 42.585444 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.212245 ], [ 20.588379, 41.853196 ], [ 20.456543, 41.508577 ], [ 20.610352, 41.079351 ], [ 21.027832, 40.847060 ], [ 21.005859, 40.580585 ], [ 20.676270, 40.430224 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.622615 ], [ 19.973145, 39.690281 ], [ 19.951172, 39.909736 ], [ 19.401855, 40.245992 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.379883, 41.869561 ], [ 19.313965, 42.195969 ], [ 19.731445, 42.682435 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.498392 ], [ 16.875000, 46.377254 ], [ 17.622070, 45.951150 ], [ 18.457031, 45.752193 ], [ 18.830566, 45.905300 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 19.006348, 44.855869 ], [ 18.544922, 45.089036 ], [ 17.863770, 45.073521 ], [ 17.006836, 45.228481 ], [ 16.545410, 45.213004 ], [ 16.325684, 45.011419 ], [ 15.952148, 45.228481 ], [ 15.754395, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.457520, 44.040219 ], [ 16.918945, 43.659924 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.020714 ], [ 18.566895, 42.650122 ], [ 18.457031, 42.472097 ], [ 17.512207, 42.843751 ], [ 16.940918, 43.213183 ], [ 16.018066, 43.500752 ], [ 15.183105, 44.245199 ], [ 15.380859, 44.323848 ], [ 14.919434, 44.731126 ], [ 14.897461, 45.073521 ], [ 14.260254, 45.228481 ], [ 13.952637, 44.809122 ], [ 13.666992, 45.135555 ], [ 13.688965, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.414062, 45.460131 ], [ 14.589844, 45.629405 ], [ 14.941406, 45.475540 ], [ 15.336914, 45.444717 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.828799 ], [ 15.776367, 46.240652 ], [ 16.567383, 46.498392 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.851074, 56.377419 ], [ 25.004883, 56.170023 ], [ 25.532227, 56.096556 ], [ 26.499023, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.773926, 54.851315 ], [ 25.532227, 54.278055 ], [ 24.455566, 53.904338 ], [ 23.488770, 53.917281 ], [ 23.247070, 54.226708 ], [ 22.741699, 54.329338 ], [ 22.653809, 54.584797 ], [ 22.763672, 54.851315 ], [ 22.324219, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.884277, 56.267761 ], [ 24.851074, 56.377419 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 46.164614 ], [ 20.214844, 46.134170 ], [ 20.764160, 45.736860 ], [ 20.874023, 45.413876 ], [ 21.489258, 45.182037 ], [ 21.555176, 44.762337 ], [ 22.148438, 44.480830 ], [ 22.456055, 44.699898 ], [ 22.697754, 44.574817 ], [ 22.478027, 44.402392 ], [ 22.653809, 44.229457 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.609863, 42.892064 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.455888 ], [ 22.390137, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.577148, 42.244785 ], [ 21.533203, 42.326062 ], [ 21.665039, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.643066, 42.682435 ], [ 21.445312, 42.859860 ], [ 21.269531, 42.908160 ], [ 21.137695, 43.068888 ], [ 20.961914, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.213183 ], [ 20.500488, 42.892064 ], [ 20.258789, 42.811522 ], [ 20.346680, 42.892064 ], [ 19.951172, 43.100983 ], [ 19.621582, 43.213183 ], [ 19.489746, 43.357138 ], [ 19.226074, 43.516689 ], [ 19.445801, 43.564472 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.418088 ], [ 19.357910, 44.855869 ], [ 19.006348, 44.855869 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.905300 ], [ 19.599609, 46.164614 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.229457 ], [ 22.939453, 43.818675 ], [ 23.334961, 43.897892 ], [ 24.104004, 43.739352 ], [ 25.576172, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.246094, 44.182204 ], [ 27.971191, 43.818675 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.000325 ], [ 27.136230, 42.147114 ], [ 26.125488, 41.820455 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.228249 ], [ 24.499512, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.961426, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.390137, 42.326062 ], [ 22.543945, 42.455888 ], [ 22.434082, 42.585444 ], [ 22.609863, 42.892064 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.653809, 44.229457 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.708496, 35.710838 ], [ 24.235840, 35.371135 ], [ 25.026855, 35.424868 ], [ 25.773926, 35.353216 ], [ 25.751953, 35.173808 ], [ 26.279297, 35.299435 ], [ 26.169434, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.741211, 35.083956 ], [ 23.510742, 35.281501 ], [ 23.708496, 35.710838 ] ] ], [ [ [ 26.125488, 41.820455 ], [ 26.608887, 41.557922 ], [ 26.301270, 40.930115 ], [ 26.059570, 40.830437 ], [ 25.444336, 40.847060 ], [ 24.916992, 40.946714 ], [ 23.708496, 40.680638 ], [ 24.411621, 40.128491 ], [ 23.906250, 39.960280 ], [ 23.334961, 39.960280 ], [ 22.807617, 40.480381 ], [ 22.631836, 40.262761 ], [ 22.851562, 39.656456 ], [ 23.356934, 39.198205 ], [ 22.983398, 38.976492 ], [ 23.532715, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.400879, 37.405074 ], [ 22.785645, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.500000, 36.403600 ], [ 21.665039, 36.844461 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.307181 ], [ 20.214844, 39.334297 ], [ 20.148926, 39.622615 ], [ 20.610352, 40.111689 ], [ 20.676270, 40.430224 ], [ 21.005859, 40.580585 ], [ 21.027832, 40.847060 ], [ 21.665039, 40.930115 ], [ 22.060547, 41.145570 ], [ 22.587891, 41.129021 ], [ 22.763672, 41.310824 ], [ 22.961426, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.499512, 41.590797 ], [ 25.202637, 41.228249 ], [ 26.103516, 41.327326 ], [ 26.125488, 41.820455 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.338867, 37.125286 ], [ 7.734375, 36.879621 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.478565 ], [ 8.151855, 34.651285 ], [ 7.514648, 34.089061 ], [ 7.602539, 33.339707 ], [ 8.437500, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.101190 ], [ 9.492188, 30.315988 ], [ 9.799805, 29.420460 ], [ 9.865723, 28.960089 ], [ 9.689941, 28.149503 ], [ 9.755859, 27.683528 ], [ 9.624023, 27.137368 ], [ 9.711914, 26.509905 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.363882 ], [ 9.953613, 24.946219 ], [ 10.305176, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.463246 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.601194 ], [ 4.262695, 19.145168 ], [ 3.164062, 19.062118 ], [ 3.142090, 19.683970 ], [ 2.680664, 19.849394 ], [ 2.065430, 20.138470 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.800308 ], [ -1.757812, 22.938160 ], [ -1.757812, 32.212801 ], [ -1.318359, 32.268555 ], [ -1.120605, 32.657876 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.925130 ], [ -1.757812, 35.406961 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.597889 ], [ 3.164062, 36.791691 ], [ 4.812012, 36.862043 ], [ 5.317383, 36.721274 ], [ 6.262207, 37.107765 ], [ 7.338867, 37.125286 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.608887, 48.224673 ], [ 26.916504, 48.122101 ], [ 27.224121, 47.827908 ], [ 27.553711, 47.398349 ], [ 28.125000, 46.815099 ], [ 28.168945, 46.377254 ], [ 28.059082, 45.951150 ], [ 28.234863, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.157715, 45.460131 ], [ 29.597168, 45.290347 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.564453, 43.707594 ], [ 27.971191, 43.818675 ], [ 27.246094, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.576172, 43.691708 ], [ 24.104004, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.939453, 43.818675 ], [ 22.653809, 44.229457 ], [ 22.478027, 44.402392 ], [ 22.697754, 44.574817 ], [ 22.456055, 44.699898 ], [ 22.148438, 44.480830 ], [ 21.555176, 44.762337 ], [ 21.489258, 45.182037 ], [ 20.874023, 45.413876 ], [ 20.764160, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.027832, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.104492, 47.665387 ], [ 22.719727, 47.886881 ], [ 23.137207, 48.092757 ], [ 23.752441, 47.989922 ], [ 24.411621, 47.975214 ], [ 24.873047, 47.739323 ], [ 25.202637, 47.886881 ], [ 25.949707, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.856445, 12.232655 ], [ 3.603516, 11.652236 ], [ 3.581543, 11.329253 ], [ 3.801270, 10.725381 ], [ 3.603516, 10.336536 ], [ 3.713379, 10.055403 ], [ 3.229980, 9.449062 ], [ 2.922363, 9.145486 ], [ 2.724609, 8.515836 ], [ 2.746582, 7.863382 ], [ 2.702637, 6.249776 ], [ 1.867676, 6.140555 ], [ 1.625977, 6.839170 ], [ 1.669922, 9.123792 ], [ 1.472168, 9.340672 ], [ 1.428223, 9.817329 ], [ 0.769043, 10.466206 ], [ 0.900879, 11.005904 ], [ 1.252441, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.933594, 11.630716 ], [ 2.153320, 11.931852 ], [ 2.482910, 12.232655 ], [ 2.856445, 12.232655 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.548548 ], [ 40.913086, 43.389082 ], [ 42.385254, 43.213183 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.553080 ], [ 44.538574, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.406250, 41.853196 ], [ 46.142578, 41.722131 ], [ 46.647949, 41.178654 ], [ 46.494141, 41.062786 ], [ 45.966797, 41.129021 ], [ 45.219727, 41.409776 ], [ 44.978027, 41.244772 ], [ 43.571777, 41.095912 ], [ 42.626953, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.704102, 41.967659 ], [ 41.462402, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.078125, 43.548548 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.293945, 1.054628 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.161133, 37.439974 ], [ 15.314941, 37.142803 ], [ 15.095215, 36.615528 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.030786 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.150879, 47.115000 ], [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.012224 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.392578, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.590332, 44.087585 ], [ 13.535156, 43.580391 ], [ 14.040527, 42.763146 ], [ 15.139160, 41.951320 ], [ 15.930176, 41.967659 ], [ 16.171875, 41.738528 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.162083 ], [ 18.303223, 39.808536 ], [ 17.731934, 40.279526 ], [ 16.875000, 40.446947 ], [ 16.457520, 39.791655 ], [ 17.160645, 39.419221 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.839708 ], [ 16.105957, 37.978845 ], [ 15.688477, 37.909534 ], [ 15.688477, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.959409 ], [ 15.402832, 40.044438 ], [ 15.007324, 40.178873 ], [ 14.699707, 40.597271 ], [ 14.062500, 40.780541 ], [ 13.623047, 41.195190 ], [ 12.897949, 41.261291 ], [ 12.106934, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.924252 ], [ 10.195312, 43.913723 ], [ 9.711914, 44.040219 ], [ 8.898926, 44.370987 ], [ 8.437500, 44.229457 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.691708 ], [ 7.558594, 44.134913 ], [ 7.009277, 44.260937 ], [ 6.745605, 45.026950 ], [ 7.097168, 45.336702 ], [ 6.811523, 45.706179 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.756348, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.184570, 46.437857 ], [ 9.931641, 46.316584 ], [ 10.371094, 46.483265 ], [ 10.437012, 46.890232 ], [ 11.052246, 46.754917 ], [ 11.162109, 46.935261 ], [ 12.150879, 47.115000 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.799805, 40.497092 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.232253 ], [ 8.811035, 38.908133 ], [ 8.437500, 39.164141 ], [ 8.393555, 40.380028 ], [ 8.151855, 40.946714 ], [ 8.701172, 40.896906 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.200684, 35.173808 ], [ 33.376465, 35.155846 ], [ 33.464355, 35.101934 ], [ 33.486328, 34.994004 ], [ 33.530273, 35.029996 ], [ 33.684082, 35.012002 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 34.013672, 34.976002 ], [ 32.980957, 34.578952 ], [ 32.497559, 34.705493 ], [ 32.255859, 35.101934 ], [ 32.739258, 35.137879 ], [ 32.915039, 35.083956 ], [ 33.200684, 35.173808 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.639014 ], [ 0.373535, 10.185187 ], [ 0.373535, 9.470736 ], [ 0.461426, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.904614 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.757812, 4.784469 ], [ -1.757812, 10.984335 ], [ -1.208496, 11.005904 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.092166 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.178223, 32.528289 ], [ 35.551758, 32.398516 ], [ 35.551758, 31.784217 ], [ 35.397949, 31.484893 ], [ 34.936523, 31.353637 ], [ 34.980469, 31.615966 ], [ 35.222168, 31.746854 ], [ 34.980469, 31.858897 ], [ 35.178223, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.501953, 12.854649 ], [ 14.897461, 12.211180 ], [ 14.963379, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.468750, 9.990491 ], [ 14.919434, 9.990491 ], [ 14.633789, 9.925566 ], [ 14.172363, 10.012130 ], [ 13.952637, 9.557417 ], [ 14.545898, 8.971897 ], [ 14.985352, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.446777, 7.689217 ], [ 14.765625, 6.402648 ], [ 14.545898, 6.227934 ], [ 14.458008, 5.441022 ], [ 14.567871, 5.025283 ], [ 14.479980, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.842332 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.008870 ], [ 15.908203, 2.547988 ], [ 16.018066, 2.262595 ], [ 15.930176, 1.735574 ], [ 14.348145, 2.218684 ], [ 13.073730, 2.262595 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.755371, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.942871, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.481445, 4.499762 ], [ 8.503418, 4.762573 ], [ 8.767090, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.446318 ], [ 10.107422, 7.035476 ], [ 10.502930, 7.057282 ], [ 11.052246, 6.642783 ], [ 11.755371, 6.991859 ], [ 11.843262, 7.406048 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.298470 ], [ 12.744141, 8.711359 ], [ 12.963867, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.315430, 10.163560 ], [ 13.579102, 10.790141 ], [ 14.414062, 11.566144 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.082296 ], [ 14.172363, 12.490214 ], [ 14.216309, 12.811801 ], [ 14.501953, 12.854649 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.402765 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.601875 ], [ 23.027344, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.521973, 14.093957 ], [ 22.192383, 13.795406 ], [ 22.302246, 13.368243 ], [ 22.038574, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.640338 ], [ 22.500000, 12.254128 ], [ 22.500000, 11.673755 ], [ 22.873535, 11.393879 ], [ 22.873535, 11.135287 ], [ 22.236328, 10.962764 ], [ 21.730957, 10.574222 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.918457, 8.624472 ], [ 18.391113, 8.276727 ], [ 17.973633, 7.885147 ], [ 16.699219, 7.514981 ], [ 16.457520, 7.732765 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.270996, 7.427837 ], [ 15.446777, 7.689217 ], [ 15.117188, 8.385431 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.172363, 10.012130 ], [ 14.633789, 9.925566 ], [ 14.919434, 9.990491 ], [ 15.468750, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.963379, 11.566144 ], [ 14.897461, 12.211180 ], [ 14.501953, 12.854649 ], [ 14.589844, 13.325485 ], [ 13.952637, 13.346865 ], [ 13.952637, 13.987376 ], [ 13.535156, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.735566 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.857195 ], [ 15.864258, 23.402765 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 39.001465, 16.846605 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.088379, 12.704651 ], [ 42.780762, 12.447305 ], [ 42.341309, 12.533115 ], [ 42.011719, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.115267 ], [ 40.034180, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.732386 ], [ 38.518066, 14.498508 ], [ 37.902832, 14.966013 ], [ 37.595215, 14.221789 ], [ 36.430664, 14.413400 ], [ 36.320801, 14.817371 ], [ 36.760254, 16.299051 ], [ 36.848145, 16.951724 ], [ 37.177734, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.223633, 43.293200 ], [ 75.629883, 42.875964 ], [ 76.003418, 42.988576 ], [ 77.651367, 42.956423 ], [ 79.145508, 42.859860 ], [ 79.650879, 42.504503 ], [ 80.266113, 42.342305 ], [ 80.112305, 42.130821 ], [ 78.552246, 41.574361 ], [ 78.178711, 41.178654 ], [ 76.904297, 41.062786 ], [ 76.530762, 40.430224 ], [ 75.476074, 40.563895 ], [ 74.772949, 40.363288 ], [ 73.828125, 39.892880 ], [ 73.959961, 39.656456 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.554199, 39.605688 ], [ 69.455566, 39.520992 ], [ 69.565430, 40.094882 ], [ 70.642090, 39.943436 ], [ 71.015625, 40.245992 ], [ 71.784668, 40.145289 ], [ 73.059082, 40.863680 ], [ 71.872559, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.422363, 41.525030 ], [ 71.257324, 42.163403 ], [ 70.971680, 42.261049 ], [ 71.191406, 42.698586 ], [ 71.850586, 42.843751 ], [ 73.498535, 42.504503 ], [ 73.652344, 43.084937 ], [ 74.223633, 43.293200 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.406250, 41.853196 ], [ 46.691895, 41.820455 ], [ 47.373047, 41.211722 ], [ 47.812500, 41.145570 ], [ 47.988281, 41.409776 ], [ 48.581543, 41.804078 ], [ 49.108887, 41.277806 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.044786 ], [ 48.867188, 38.822591 ], [ 48.889160, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.788345 ], [ 48.361816, 39.283294 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.504041 ], [ 46.516113, 38.771216 ], [ 46.494141, 39.470125 ], [ 46.032715, 39.622615 ], [ 45.615234, 39.892880 ], [ 45.900879, 40.212441 ], [ 45.351562, 40.563895 ], [ 45.571289, 40.813809 ], [ 45.175781, 40.979898 ], [ 44.978027, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.129021 ], [ 46.494141, 41.062786 ], [ 46.647949, 41.178654 ], [ 46.142578, 41.722131 ], [ 46.406250, 41.853196 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.307617, 39.470125 ], [ 45.747070, 39.470125 ], [ 45.725098, 39.317300 ], [ 46.142578, 38.736946 ], [ 45.461426, 38.873929 ], [ 44.956055, 39.334297 ], [ 44.802246, 39.707187 ], [ 45.000000, 39.740986 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.403809, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.458008, 22.654572 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.105000 ], [ 58.491211, 20.427013 ], [ 58.029785, 20.488773 ], [ 57.832031, 20.241583 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.062118 ], [ 57.700195, 18.937464 ], [ 57.238770, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.513672, 18.083201 ], [ 56.293945, 17.874203 ], [ 55.656738, 17.874203 ], [ 55.261230, 17.623082 ], [ 55.283203, 17.224758 ], [ 54.799805, 16.951724 ], [ 54.228516, 17.035777 ], [ 53.569336, 16.699340 ], [ 53.107910, 16.657244 ], [ 52.009277, 18.999803 ], [ 54.997559, 19.993998 ], [ 55.656738, 22.004175 ], [ 55.217285, 22.715390 ], [ 55.239258, 23.120154 ], [ 55.524902, 23.523700 ], [ 55.524902, 23.926013 ], [ 55.986328, 24.126702 ], [ 55.810547, 24.266997 ], [ 55.876465, 24.926295 ], [ 56.403809, 24.926295 ] ] ], [ [ [ 56.359863, 26.391870 ], [ 56.491699, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.271973, 25.720735 ], [ 56.074219, 26.056783 ], [ 56.359863, 26.391870 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.157012 ], [ 40.407715, 31.896214 ], [ 41.879883, 31.184609 ], [ 44.714355, 29.171349 ], [ 46.560059, 29.094577 ], [ 47.460938, 28.998532 ], [ 47.702637, 28.516969 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.683528 ], [ 49.306641, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.686730 ], [ 50.207520, 26.273714 ], [ 50.119629, 25.938287 ], [ 50.229492, 25.601902 ], [ 50.537109, 25.324167 ], [ 50.668945, 25.005973 ], [ 50.800781, 24.746831 ], [ 51.108398, 24.547123 ], [ 51.394043, 24.627045 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.006326 ], [ 52.009277, 22.998852 ], [ 54.997559, 22.492257 ], [ 55.217285, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 19.993998 ], [ 52.009277, 18.999803 ], [ 49.108887, 18.625425 ], [ 48.186035, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.757812, 17.287709 ], [ 46.362305, 17.224758 ], [ 45.395508, 17.329664 ], [ 45.219727, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.220215, 16.657244 ], [ 42.780762, 16.341226 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.748047, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.935059, 19.476950 ], [ 40.253906, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.573438 ], [ 38.496094, 23.684774 ], [ 38.034668, 24.086589 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.650391, 25.819672 ], [ 36.254883, 26.568877 ], [ 35.134277, 28.071980 ], [ 34.628906, 28.052591 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.958496, 29.363027 ], [ 36.079102, 29.190533 ], [ 36.496582, 29.496988 ], [ 36.738281, 29.859701 ], [ 37.507324, 30.012031 ], [ 37.661133, 30.334954 ], [ 37.990723, 30.505484 ], [ 37.001953, 31.503629 ], [ 39.001465, 32.008076 ], [ 39.199219, 32.157012 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.154297, 11.458491 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.854886 ], [ 44.121094, 10.444598 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.135287 ], [ 48.032227, 11.199957 ], [ 48.383789, 11.372339 ], [ 48.955078, 11.415418 ], [ 48.933105, 9.449062 ], [ 48.493652, 8.841651 ], [ 47.790527, 7.993957 ], [ 46.955566, 7.993957 ], [ 43.681641, 9.188870 ], [ 43.286133, 9.535749 ], [ 42.561035, 10.574222 ], [ 43.154297, 11.458491 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.168457, 37.125286 ], [ 75.893555, 36.668419 ], [ 76.201172, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.882324, 34.651285 ], [ 75.761719, 34.506557 ], [ 74.245605, 34.741612 ], [ 73.740234, 34.325292 ], [ 74.113770, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.268555 ], [ 74.399414, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.454590, 29.973970 ], [ 72.817383, 28.960089 ], [ 71.784668, 27.916767 ], [ 70.620117, 27.994401 ], [ 69.521484, 26.941660 ], [ 70.158691, 26.490240 ], [ 70.290527, 25.720735 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.347097 ], [ 68.840332, 24.367114 ], [ 68.181152, 23.684774 ], [ 67.434082, 23.946096 ], [ 67.148438, 24.666986 ], [ 66.379395, 25.423431 ], [ 64.533691, 25.244696 ], [ 62.907715, 25.224820 ], [ 61.501465, 25.085599 ], [ 61.875000, 26.234302 ], [ 63.325195, 26.765231 ], [ 63.237305, 27.215556 ], [ 62.753906, 27.371767 ], [ 62.731934, 28.265682 ], [ 61.765137, 28.690588 ], [ 61.369629, 29.305561 ], [ 60.864258, 29.821583 ], [ 62.556152, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.357910, 29.554345 ], [ 65.039062, 29.477861 ], [ 66.357422, 29.878755 ], [ 66.379395, 30.732393 ], [ 66.928711, 31.297328 ], [ 67.675781, 31.297328 ], [ 67.785645, 31.578535 ], [ 68.554688, 31.709476 ], [ 68.928223, 31.615966 ], [ 69.323730, 31.896214 ], [ 69.257812, 32.509762 ], [ 69.697266, 33.100745 ], [ 70.334473, 33.358062 ], [ 69.938965, 34.016242 ], [ 70.883789, 33.979809 ], [ 71.147461, 34.343436 ], [ 71.125488, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.499023, 35.657296 ], [ 71.257324, 36.066862 ], [ 71.850586, 36.509636 ], [ 72.927246, 36.721274 ], [ 74.069824, 36.844461 ], [ 74.575195, 37.020098 ], [ 75.168457, 37.125286 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.285033 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.033198 ], [ 91.757812, 27.722436 ], [ 91.757812, 26.824071 ], [ 91.208496, 26.804461 ], [ 90.373535, 26.882880 ], [ 90.000000, 26.784847 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.293689 ], [ 89.472656, 28.033198 ], [ 90.000000, 28.285033 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.142502 ], [ 30.805664, -1.691649 ], [ 30.805664, -1.757537 ], [ 29.289551, -1.757537 ], [ 29.289551, -1.625758 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.450040 ], [ 30.410156, -1.142502 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.506640 ], [ 35.815430, 5.331644 ], [ 35.815430, 4.784469 ], [ 36.166992, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.122559, 3.601142 ], [ 38.671875, 3.623071 ], [ 38.891602, 3.491489 ], [ 39.550781, 3.425692 ], [ 39.858398, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.176758, 3.930020 ], [ 41.857910, 3.908099 ], [ 40.979004, 2.789425 ], [ 41.000977, 0.000000 ], [ 41.000977, -0.856902 ], [ 41.594238, -1.691649 ], [ 41.462402, -1.757537 ], [ 35.310059, -1.757537 ], [ 33.903809, -0.944781 ], [ 33.903809, 0.109863 ], [ 34.672852, 1.186439 ], [ 35.046387, 1.911267 ], [ 34.606934, 3.052754 ], [ 34.475098, 3.557283 ], [ 34.013672, 4.258768 ], [ 35.288086, 5.506640 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.168945, 71.187754 ], [ 31.289062, 70.451508 ], [ 30.014648, 70.185103 ], [ 31.091309, 69.557553 ], [ 29.399414, 69.154740 ], [ 28.586426, 69.068563 ], [ 29.025879, 69.763757 ], [ 27.729492, 70.162746 ], [ 26.169434, 69.824471 ], [ 25.686035, 69.092100 ], [ 24.741211, 68.648556 ], [ 23.664551, 68.895187 ], [ 22.346191, 68.839735 ], [ 21.247559, 69.372573 ], [ 20.654297, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.885254, 68.407268 ], [ 17.995605, 68.568414 ], [ 17.731934, 68.007571 ], [ 16.765137, 68.015798 ], [ 15.402832, 66.513260 ], [ 15.117188, 66.196009 ], [ 14.677734, 65.802776 ], [ 12.260742, 65.802776 ], [ 13.117676, 66.513260 ], [ 14.765625, 67.809245 ], [ 16.435547, 68.560384 ], [ 19.182129, 69.816891 ], [ 21.379395, 70.252029 ], [ 23.027344, 70.199994 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.168945, 71.187754 ] ] ], [ [ [ 16.984863, 80.050460 ], [ 18.259277, 79.702907 ], [ 21.533203, 78.954560 ], [ 19.028320, 78.560488 ], [ 18.479004, 77.827957 ], [ 17.600098, 77.636542 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.379906 ], [ 14.677734, 77.734951 ], [ 13.161621, 78.025574 ], [ 11.228027, 78.870048 ], [ 10.437012, 79.651722 ], [ 13.161621, 80.008612 ], [ 13.710938, 79.659613 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.050460 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.927734, 79.516660 ], [ 23.027344, 79.400085 ], [ 20.083008, 79.568506 ], [ 19.907227, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.358398, 80.320120 ], [ 20.456543, 80.596909 ], [ 21.906738, 80.356995 ], [ 22.917480, 80.657741 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.291016, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.500000, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.423340, 77.934055 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.654297, 69.107777 ], [ 21.972656, 68.616534 ], [ 23.532715, 67.933397 ], [ 23.554688, 66.513260 ], [ 23.576660, 66.399160 ], [ 23.906250, 66.009086 ], [ 22.653809, 65.802776 ], [ 14.677734, 65.802776 ], [ 15.117188, 66.196009 ], [ 15.402832, 66.513260 ], [ 16.105957, 67.305976 ], [ 16.765137, 68.015798 ], [ 17.731934, 68.007571 ], [ 17.995605, 68.568414 ], [ 19.885254, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.654297, 69.107777 ] ] ] } } ] } ] } , @@ -270,7 +266,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.741211, 1.757537 ], [ 114.631348, 1.428075 ], [ 113.796387, 1.208406 ], [ 112.851562, 1.493971 ], [ 112.390137, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.966751 ], [ 110.522461, 0.769020 ], [ 109.819336, 1.340210 ], [ 109.731445, 1.757537 ], [ 110.192871, 1.757537 ], [ 110.390625, 1.669686 ], [ 110.786133, 1.757537 ], [ 114.741211, 1.757537 ] ] ], [ [ [ 104.194336, 1.757537 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.832031, 1.757537 ], [ 104.194336, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.497092 ], [ 173.254395, -41.327326 ], [ 173.957520, -40.930115 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.771312 ], [ 173.232422, -42.972502 ], [ 172.705078, -43.373112 ], [ 173.078613, -43.850374 ], [ 172.309570, -43.866218 ], [ 171.452637, -44.245199 ], [ 171.188965, -44.902578 ], [ 170.617676, -45.905300 ], [ 169.343262, -46.634351 ], [ 168.420410, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.684570, -46.225453 ], [ 166.508789, -45.859412 ], [ 167.036133, -45.104546 ], [ 168.310547, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.672852, -43.548548 ], [ 170.529785, -43.036776 ], [ 171.123047, -42.520700 ], [ 171.562500, -41.771312 ], [ 171.958008, -41.508577 ], [ 172.089844, -40.963308 ], [ 172.792969, -40.497092 ] ] ], [ [ [ 173.012695, -34.452218 ], [ 173.562012, -35.012002 ], [ 174.331055, -35.263562 ], [ 174.616699, -36.155618 ], [ 175.341797, -37.212832 ], [ 175.363770, -36.527295 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.561997 ], [ 176.770020, -37.874853 ], [ 177.429199, -37.961523 ], [ 178.000488, -37.579413 ], [ 178.527832, -37.701207 ], [ 178.264160, -38.582526 ], [ 177.978516, -39.164141 ], [ 177.209473, -39.147103 ], [ 176.945801, -39.453161 ], [ 177.033691, -39.876019 ], [ 176.022949, -41.294317 ], [ 175.231934, -41.689322 ], [ 175.078125, -41.426253 ], [ 174.660645, -41.277806 ], [ 175.231934, -40.463666 ], [ 174.902344, -39.909736 ], [ 173.825684, -39.504041 ], [ 173.847656, -39.147103 ], [ 174.572754, -38.805470 ], [ 174.748535, -38.030786 ], [ 174.704590, -37.387617 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.847656, -36.120128 ], [ 173.056641, -35.245619 ], [ 172.639160, -34.524661 ], [ 173.012695, -34.452218 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.323242, -10.206813 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.487812 ], [ 162.399902, -10.833306 ], [ 161.696777, -10.811724 ], [ 161.323242, -10.206813 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.405710 ], [ 160.686035, -9.600750 ], [ 160.861816, -9.882275 ], [ 160.466309, -9.903921 ], [ 159.851074, -9.795678 ], [ 159.631348, -9.644077 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.927734, -8.320212 ], [ 161.279297, -9.123792 ], [ 161.674805, -9.600750 ], [ 161.520996, -9.774025 ], [ 160.795898, -8.906780 ], [ 160.576172, -8.320212 ], [ 160.927734, -8.320212 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.341953 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.124491 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.427837 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.533203, -6.599131 ], [ 157.543945, -7.340675 ], [ 157.346191, -7.406048 ], [ 156.906738, -7.166300 ], [ 156.489258, -6.773716 ], [ 156.533203, -6.599131 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, -66.399160 ], [ 88.352051, -66.486976 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.399160 ] ] ], [ [ [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ], [ 92.614746, -67.187000 ], [ 93.295898, -67.204032 ], [ 90.834961, -67.204032 ] ] ], [ [ [ 93.581543, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.141602, -67.204032 ], [ 93.581543, -67.204032 ] ] ], [ [ [ 98.063965, -67.204032 ], [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ], [ 98.063965, -67.204032 ] ] ], [ [ [ 99.799805, -67.204032 ], [ 100.393066, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.579590, -66.311035 ], [ 102.832031, -65.567550 ], [ 103.469238, -65.703518 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.938669 ], [ 107.160645, -66.955877 ], [ 108.083496, -66.955877 ], [ 109.160156, -66.835165 ], [ 110.236816, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.133854 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.895020, -66.390361 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.661684 ], [ 117.377930, -66.912834 ], [ 118.586426, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ] ] ], [ [ [ 120.673828, -67.204032 ], [ 120.871582, -67.187000 ], [ 121.662598, -66.878345 ], [ 122.321777, -66.565747 ], [ 122.893066, -66.513260 ], [ 123.222656, -66.486976 ], [ 123.420410, -66.513260 ], [ 124.123535, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.101074, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.704590, -66.583217 ], [ 130.187988, -66.513260 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 134.758301, -66.213739 ], [ 135.021973, -65.721594 ], [ 135.065918, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.208496, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.955877 ], [ 138.603516, -66.895596 ], [ 139.899902, -66.878345 ], [ 140.800781, -66.817872 ], [ 142.119141, -66.817872 ], [ 143.063965, -66.800567 ], [ 144.382324, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.140137, -67.204032 ], [ 120.673828, -67.204032 ] ] ] ] } } ] } ] } , @@ -278,9 +276,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 67.204032 ], [ 181.757812, 67.204032 ], [ 181.757812, 65.403445 ], [ 181.647949, 65.394298 ], [ 181.098633, 65.739656 ], [ 181.318359, 66.116068 ], [ 180.109863, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.605038 ], [ 178.308105, 64.072200 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.494629, 62.573106 ], [ 179.230957, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.572754, 61.773123 ], [ 173.671875, 61.648162 ], [ 172.155762, 60.951777 ], [ 170.705566, 60.337823 ], [ 170.332031, 59.877912 ], [ 168.903809, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.849609, 60.163376 ], [ 164.882812, 59.734253 ], [ 163.542480, 59.866883 ], [ 163.212891, 59.209688 ], [ 162.026367, 58.240164 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.610107 ], [ 163.059082, 56.157788 ], [ 162.136230, 56.121060 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.851315 ], [ 160.378418, 54.342149 ], [ 160.026855, 53.199452 ], [ 158.532715, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.796875, 51.013755 ], [ 156.423340, 51.699800 ], [ 155.983887, 53.159947 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.764768 ], [ 156.752930, 57.362090 ], [ 156.818848, 57.833055 ], [ 158.356934, 58.054632 ], [ 160.158691, 59.310768 ], [ 161.872559, 60.337823 ], [ 163.674316, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.461567 ], [ 162.663574, 61.637726 ], [ 160.114746, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.730957, 61.438767 ], [ 154.226074, 59.756395 ], [ 155.039062, 59.142135 ], [ 152.819824, 58.881942 ], [ 151.259766, 58.779591 ], [ 151.347656, 59.500880 ], [ 149.787598, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.333189 ], [ 142.207031, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.131836, 54.724620 ], [ 136.691895, 54.597528 ], [ 137.197266, 53.981935 ], [ 138.164062, 53.748711 ], [ 138.801270, 54.252389 ], [ 139.899902, 54.188155 ], [ 141.350098, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.603027, 51.234407 ], [ 140.515137, 50.050085 ], [ 140.053711, 48.443778 ], [ 138.559570, 46.995241 ], [ 138.229980, 46.301406 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.912598, 42.795401 ], [ 132.275391, 43.277205 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.212245 ], [ 130.649414, 42.391009 ], [ 130.627441, 42.908160 ], [ 131.154785, 42.924252 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.964798 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.121094, 47.219568 ], [ 134.494629, 47.576526 ], [ 135.021973, 48.472921 ], [ 133.374023, 48.180739 ], [ 132.517090, 47.783635 ], [ 130.979004, 47.783635 ], [ 130.583496, 48.734455 ], [ 129.396973, 49.439557 ], [ 127.661133, 49.767074 ], [ 127.287598, 50.736455 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.781436 ], [ 125.947266, 52.789476 ], [ 125.068359, 53.159947 ], [ 123.574219, 53.461890 ], [ 122.255859, 53.435719 ], [ 121.003418, 53.252069 ], [ 120.168457, 52.749594 ], [ 120.717773, 52.522906 ], [ 120.739746, 51.957807 ], [ 120.190430, 51.645294 ], [ 119.289551, 50.583237 ], [ 119.289551, 50.148746 ], [ 117.883301, 49.510944 ], [ 116.674805, 49.894634 ], [ 115.488281, 49.809632 ], [ 114.960938, 50.134664 ], [ 114.367676, 50.247205 ], [ 112.895508, 49.539469 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.124219 ], [ 109.401855, 49.296472 ], [ 108.479004, 49.282140 ], [ 107.863770, 49.795450 ], [ 106.896973, 50.275299 ], [ 105.886230, 50.401515 ], [ 104.611816, 50.275299 ], [ 103.666992, 50.092393 ], [ 102.260742, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.898438, 51.522416 ], [ 99.975586, 51.631657 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.239746, 50.415519 ], [ 97.250977, 49.724479 ], [ 95.822754, 49.979488 ], [ 94.812012, 50.007739 ], [ 94.152832, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.241211, 50.805935 ], [ 90.703125, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.813477, 49.468124 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.261719, 52.736292 ], [ 143.239746, 51.754240 ], [ 143.657227, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.857403 ], [ 143.525391, 46.830134 ], [ 143.503418, 46.134170 ], [ 142.756348, 46.739861 ], [ 142.097168, 45.966425 ], [ 141.899414, 46.800059 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.141113, 49.610710 ], [ 142.185059, 50.958427 ], [ 141.591797, 51.930718 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.501465, 14.562318 ], [ 107.380371, 14.200488 ], [ 107.622070, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.820312, 11.566144 ], [ 106.259766, 10.962764 ], [ 105.205078, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.095703, 11.156845 ], [ 102.590332, 12.189704 ], [ 102.348633, 13.389620 ], [ 102.985840, 14.221789 ], [ 104.282227, 14.413400 ], [ 105.227051, 14.264383 ], [ 106.040039, 13.880746 ], [ 106.501465, 14.562318 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.649414, 42.391009 ], [ 130.781250, 42.212245 ], [ 130.407715, 42.277309 ], [ 129.968262, 41.934977 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.880295 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.480381 ], [ 128.627930, 40.195659 ], [ 127.968750, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.507324, 39.317300 ], [ 127.375488, 39.215231 ], [ 127.792969, 39.044786 ], [ 128.342285, 38.616870 ], [ 128.210449, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.255436 ], [ 126.694336, 37.805444 ], [ 126.232910, 37.840157 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.573730, 37.753344 ], [ 125.266113, 37.666429 ], [ 125.244141, 37.857507 ], [ 124.980469, 37.944198 ], [ 124.716797, 38.099983 ], [ 124.980469, 38.548165 ], [ 125.222168, 38.668356 ], [ 125.134277, 38.856820 ], [ 125.375977, 39.385264 ], [ 125.332031, 39.554883 ], [ 124.738770, 39.656456 ], [ 124.255371, 39.926588 ], [ 125.090332, 40.563895 ], [ 126.188965, 41.112469 ], [ 126.870117, 41.820455 ], [ 127.353516, 41.508577 ], [ 128.210449, 41.459195 ], [ 128.056641, 42.000325 ], [ 129.594727, 42.423457 ], [ 129.990234, 42.988576 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.441022 ], [ 115.356445, 4.324501 ], [ 114.873047, 4.346411 ], [ 114.653320, 4.017699 ], [ 114.213867, 4.521666 ], [ 114.609375, 4.893941 ], [ 115.444336, 5.441022 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.342285, 38.616870 ], [ 129.221191, 37.439974 ], [ 129.462891, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.885931 ], [ 127.397461, 34.470335 ], [ 126.496582, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.562500, 35.692995 ], [ 126.123047, 36.721274 ], [ 126.870117, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.840157 ], [ 126.694336, 37.805444 ], [ 127.067871, 38.255436 ], [ 127.770996, 38.307181 ], [ 128.210449, 38.376115 ], [ 128.342285, 38.616870 ] ] ] } } ] } ] } , @@ -342,7 +340,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 41.640078 ], [ -89.121094, 30.325471 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.200123 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.678508 ], [ -92.493896, 29.554345 ], [ -93.229980, 29.783449 ], [ -93.845215, 29.716681 ], [ -94.691162, 29.477861 ], [ -95.603027, 28.738764 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.686730 ], [ -97.327881, 26.214591 ], [ -97.141113, 25.869109 ], [ -97.525635, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.019775, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.537500 ], [ -100.107422, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.953369, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.106689, 28.969701 ], [ -103.941650, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.081165 ], [ -106.138916, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.237305, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.302002, 32.036020 ], [ -114.818115, 32.528289 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.301025, 33.045508 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.025348 ], [ -119.080811, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.366211, 34.443159 ], [ -120.618896, 34.606085 ], [ -120.739746, 35.155846 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.508545, 37.779399 ], [ -122.947998, 38.117272 ], [ -123.728027, 38.950865 ], [ -123.859863, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.145570 ], [ -124.200439, 41.640078 ], [ -89.121094, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 15.082732 ], [ -89.121094, 14.360191 ], [ -89.351807, 14.424040 ], [ -89.143066, 14.679254 ], [ -89.219971, 14.870469 ], [ -89.154053, 15.061515 ], [ -89.121094, 15.082732 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.351807, 14.424040 ], [ -89.121094, 14.360191 ], [ -89.121094, 13.389620 ], [ -89.252930, 13.453737 ], [ -89.813232, 13.517838 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.731381 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.934067 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.243087 ], [ -89.582520, 14.360191 ], [ -89.351807, 14.424040 ] ] ] } } ] } ] } , @@ -379,6 +377,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.631592, -52.636397 ], [ -68.247070, -53.100621 ], [ -67.752686, -53.852527 ], [ -66.445312, -54.450880 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.445312, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.870285 ], [ -68.631592, -54.870285 ], [ -68.631592, -52.636397 ] ] ], [ [ [ -62.281494, -40.313043 ], [ -62.149658, -40.680638 ], [ -62.666016, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.775635, -41.170384 ], [ -64.270020, -40.979898 ], [ -64.731445, -40.805494 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -64.973145, -42.057450 ], [ -64.302979, -42.358544 ], [ -63.753662, -42.041134 ], [ -63.457031, -42.561173 ], [ -64.379883, -42.875964 ], [ -65.181885, -43.492783 ], [ -65.324707, -44.504341 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.042478 ], [ -67.291260, -45.552525 ], [ -67.576904, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.983887, -48.136767 ], [ -67.170410, -48.698212 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.136963, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.148193, -52.348763 ], [ -68.576660, -52.301761 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.011937 ], [ -72.333984, -51.426614 ], [ -72.312012, -50.673835 ], [ -72.971191, -50.743408 ], [ -73.322754, -50.380502 ], [ -73.410645, -49.317961 ], [ -72.652588, -48.879167 ], [ -72.333984, -48.246626 ], [ -72.443848, -47.739323 ], [ -71.916504, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.785734 ], [ -71.334229, -44.410240 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.147217, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.894531, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.795654, -40.313043 ], [ -62.281494, -40.313043 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.810059, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.590332, -63.860036 ], [ -58.612061, -64.153742 ], [ -59.040527, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.311349 ], [ -62.017822, -64.797526 ], [ -62.512207, -65.095272 ], [ -62.644043, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.116699, -66.191574 ], [ -62.808838, -66.425537 ], [ -63.742676, -66.504502 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.835165 ], [ -64.335938, -66.861082 ], [ -67.225342, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.603878 ], [ -64.171143, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.642704 ], [ -62.039795, -64.581470 ], [ -61.413574, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.699855 ], [ -58.590088, -63.386601 ], [ -57.810059, -63.268241 ] ] ] } } ] } ] } , @@ -386,11 +386,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.489502, 0.878872 ], [ -65.544434, 0.790990 ], [ -66.324463, 0.725078 ], [ -66.489258, 0.878872 ], [ -65.489502, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.102539, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.263325 ], [ -73.070068, -2.306506 ], [ -72.322998, -2.438229 ], [ -71.773682, -2.174771 ], [ -71.411133, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.743671 ], [ -70.389404, -3.765597 ], [ -69.895020, -4.302591 ], [ -70.795898, -4.247812 ], [ -70.927734, -4.401183 ], [ -71.751709, -4.598327 ], [ -72.894287, -5.276948 ], [ -72.960205, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.631870 ], [ -73.729248, -6.915521 ], [ -73.718262, -7.340675 ], [ -73.981934, -7.525873 ], [ -73.575439, -8.428904 ], [ -73.015137, -9.037003 ], [ -73.223877, -9.459899 ], [ -72.564697, -9.524914 ], [ -72.180176, -10.055403 ], [ -71.301270, -10.077037 ], [ -70.477295, -9.492408 ], [ -70.543213, -11.005904 ], [ -70.092773, -11.124507 ], [ -69.532471, -10.951978 ], [ -68.664551, -12.565287 ], [ -68.884277, -12.897489 ], [ -68.928223, -13.603278 ], [ -68.950195, -14.455958 ], [ -69.334717, -14.955399 ], [ -69.158936, -15.326572 ], [ -69.389648, -15.665354 ], [ -68.961182, -16.499299 ], [ -69.587402, -17.581194 ], [ -69.862061, -18.093644 ], [ -70.367432, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.443604, -16.362310 ], [ -75.234375, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.420898, -13.827412 ], [ -76.256104, -13.539201 ], [ -77.102051, -12.221918 ], [ -78.090820, -10.379765 ], [ -79.035645, -8.385431 ], [ -79.442139, -7.928675 ], [ -79.760742, -7.199001 ], [ -80.540771, -6.544560 ], [ -81.254883, -6.140555 ], [ -80.925293, -5.692516 ], [ -81.408691, -4.740675 ], [ -81.101074, -4.039618 ], [ -80.299072, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.463867, -4.061536 ], [ -80.441895, -4.423090 ], [ -80.024414, -4.346411 ], [ -79.628906, -4.455951 ], [ -79.200439, -4.959615 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.875216 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.613839 ], [ -75.541992, -1.559866 ], [ -75.234375, -0.911827 ], [ -75.377197, -0.153808 ], [ -75.102539, -0.054932 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.269531, -21.830907 ], [ -64.962158, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.984375, -21.993989 ], [ -62.841797, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.842285, -23.875792 ], [ -60.029297, -24.036431 ], [ -58.809814, -24.766785 ], [ -57.777100, -25.165173 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.127591 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.391278 ], [ -54.788818, -26.617997 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.552354 ], [ -53.624268, -26.125850 ], [ -53.646240, -26.922070 ], [ -54.492188, -27.479035 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.854296 ], [ -57.623291, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.139648, -32.045333 ], [ -58.128662, -33.036298 ], [ -58.348389, -33.266250 ], [ -58.491211, -34.434098 ], [ -57.227783, -35.290469 ], [ -57.359619, -35.978006 ], [ -56.733398, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.744141, -38.186387 ], [ -59.227295, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.831150 ], [ -62.127686, -39.427707 ], [ -62.325439, -40.170479 ], [ -62.149658, -40.680638 ], [ -62.666016, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.775635, -41.170384 ], [ -64.270020, -40.979898 ], [ -64.731445, -40.805494 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.039062, -41.640078 ], [ -71.806641, -41.640078 ], [ -71.894531, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.808536 ], [ -71.411133, -38.916682 ], [ -70.817871, -38.556757 ], [ -71.114502, -37.579413 ], [ -71.125488, -36.659606 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.173808 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.275435 ], [ -70.070801, -33.091542 ], [ -70.532227, -31.363018 ], [ -69.916992, -30.334954 ], [ -70.015869, -29.372602 ], [ -69.653320, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.291016, -26.902477 ], [ -68.598633, -26.509905 ], [ -68.389893, -26.185018 ], [ -68.422852, -24.517139 ], [ -67.324219, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.269531, -21.830907 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.224854, 0.878872 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.703107 ], [ -70.015869, 0.538322 ], [ -70.015869, -0.186767 ], [ -69.576416, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.559866 ], [ -69.895020, -4.302591 ], [ -70.389404, -3.765597 ], [ -70.697021, -3.743671 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.411133, -2.339438 ], [ -71.773682, -2.174771 ], [ -72.322998, -2.438229 ], [ -73.070068, -2.306506 ], [ -73.663330, -1.263325 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.054932 ], [ -75.377197, -0.153808 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.252685 ], [ -77.420654, 0.395505 ], [ -77.673340, 0.823946 ], [ -77.860107, 0.812961 ], [ -77.980957, 0.878872 ], [ -69.224854, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, -17.581194 ], [ -69.104004, -18.260653 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.752441, -20.375527 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.877440 ], [ -67.104492, -22.735657 ], [ -66.983643, -22.988738 ], [ -67.324219, -24.026397 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.185018 ], [ -68.598633, -26.509905 ], [ -68.291016, -26.902477 ], [ -69.005127, -27.518015 ], [ -69.653320, -28.459033 ], [ -70.015869, -29.372602 ], [ -69.916992, -30.334954 ], [ -70.532227, -31.363018 ], [ -70.070801, -33.091542 ], [ -69.818115, -33.275435 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.173808 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.659606 ], [ -71.114502, -37.579413 ], [ -70.817871, -38.556757 ], [ -71.411133, -38.916682 ], [ -71.685791, -39.808536 ], [ -71.916504, -40.830437 ], [ -71.894531, -40.979898 ], [ -71.806641, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.674316, -39.943436 ], [ -73.212891, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.586426, -37.160317 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.505400 ], [ -71.861572, -33.906896 ], [ -71.433105, -32.417066 ], [ -71.663818, -30.921076 ], [ -71.367188, -30.097613 ], [ -71.488037, -28.863918 ], [ -70.905762, -27.644606 ], [ -70.729980, -25.710837 ], [ -70.400391, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.367432, -18.344098 ], [ -69.862061, -18.093644 ], [ -69.587402, -17.581194 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.102539, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.263325 ], [ -73.070068, -2.306506 ], [ -72.322998, -2.438229 ], [ -71.773682, -2.174771 ], [ -71.411133, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.743671 ], [ -70.389404, -3.765597 ], [ -69.895020, -4.302591 ], [ -70.795898, -4.247812 ], [ -70.927734, -4.401183 ], [ -71.751709, -4.598327 ], [ -72.894287, -5.276948 ], [ -72.960205, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.631870 ], [ -73.729248, -6.915521 ], [ -73.718262, -7.340675 ], [ -73.981934, -7.525873 ], [ -73.575439, -8.428904 ], [ -73.015137, -9.037003 ], [ -73.223877, -9.459899 ], [ -72.564697, -9.524914 ], [ -72.180176, -10.055403 ], [ -71.301270, -10.077037 ], [ -70.477295, -9.492408 ], [ -70.543213, -11.005904 ], [ -70.092773, -11.124507 ], [ -69.532471, -10.951978 ], [ -68.664551, -12.565287 ], [ -68.884277, -12.897489 ], [ -68.928223, -13.603278 ], [ -68.950195, -14.455958 ], [ -69.334717, -14.955399 ], [ -69.158936, -15.326572 ], [ -69.389648, -15.665354 ], [ -68.961182, -16.499299 ], [ -69.587402, -17.581194 ], [ -69.862061, -18.093644 ], [ -70.367432, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.443604, -16.362310 ], [ -75.234375, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.420898, -13.827412 ], [ -76.256104, -13.539201 ], [ -77.102051, -12.221918 ], [ -78.090820, -10.379765 ], [ -79.035645, -8.385431 ], [ -79.442139, -7.928675 ], [ -79.760742, -7.199001 ], [ -80.540771, -6.544560 ], [ -81.254883, -6.140555 ], [ -80.925293, -5.692516 ], [ -81.408691, -4.740675 ], [ -81.101074, -4.039618 ], [ -80.299072, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.463867, -4.061536 ], [ -80.441895, -4.423090 ], [ -80.024414, -4.346411 ], [ -79.628906, -4.455951 ], [ -79.200439, -4.959615 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.875216 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.613839 ], [ -75.541992, -1.559866 ], [ -75.234375, -0.911827 ], [ -75.377197, -0.153808 ], [ -75.102539, -0.054932 ] ] ] } } ] } ] } , @@ -398,39 +396,39 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.333740, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.430224 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.495563 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.779781 ], [ -75.058594, 38.401949 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.036377, 37.256566 ], [ -75.717773, 37.935533 ], [ -76.234131, 38.315801 ], [ -76.354980, 39.147103 ], [ -76.541748, 38.719805 ], [ -76.333008, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.550105 ], [ -76.365967, 34.804783 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.057617, 33.495598 ], [ -79.200439, 33.155948 ], [ -80.299072, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.331787, 31.438037 ], [ -81.485596, 30.732393 ], [ -81.309814, 30.031055 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.468691 ], [ -80.529785, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.819672 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.075648 ], [ -81.166992, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.705322, 25.869109 ], [ -82.705078, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.545926 ], [ -82.924805, 29.104177 ], [ -83.704834, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.640320 ], [ -85.286865, 29.688053 ], [ -85.770264, 30.154627 ], [ -86.396484, 30.401307 ], [ -87.528076, 30.278044 ], [ -88.417969, 30.382353 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.200123 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -90.878906, 41.640078 ], [ -69.960938, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.344098 ], [ -88.121338, 18.072757 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.308105, 17.130292 ], [ -88.242188, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.014768 ], [ -89.154053, 17.957832 ], [ -89.033203, 17.999632 ], [ -88.846436, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.297119, 18.500447 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.485107, 15.019075 ], [ -83.144531, 14.997852 ], [ -83.232422, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.177490, 14.306969 ], [ -83.408203, 13.966054 ], [ -83.518066, 13.571242 ], [ -83.551025, 13.122280 ], [ -83.496094, 12.865360 ], [ -83.474121, 12.415119 ], [ -83.627930, 12.318536 ], [ -83.715820, 11.888853 ], [ -83.649902, 11.630716 ], [ -83.858643, 11.372339 ], [ -83.803711, 11.102947 ], [ -83.660889, 10.941192 ], [ -83.891602, 10.725381 ], [ -84.188232, 10.790141 ], [ -84.353027, 10.995120 ], [ -84.671631, 11.081385 ], [ -84.902344, 10.951978 ], [ -85.561523, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.802834 ], [ -86.748047, 12.146746 ], [ -87.165527, 12.458033 ], [ -87.670898, 12.908198 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.983148 ], [ -87.000732, 13.025966 ], [ -86.879883, 13.250640 ], [ -86.737061, 13.261333 ], [ -86.759033, 13.752725 ], [ -86.517334, 13.774066 ], [ -86.308594, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.693359, 13.955392 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.349548 ], [ -85.144043, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.924316, 14.785505 ], [ -84.825439, 14.817371 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.627930, 14.881087 ], [ -83.485107, 15.019075 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.351807, 14.424040 ], [ -89.055176, 14.338904 ], [ -88.846436, 14.136576 ], [ -88.538818, 13.976715 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.857666, 13.891411 ], [ -87.725830, 13.784737 ], [ -87.791748, 13.389620 ], [ -87.901611, 13.143678 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.252930, 13.453737 ], [ -89.813232, 13.517838 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.731381 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.934067 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.243087 ], [ -89.582520, 14.360191 ], [ -89.351807, 14.424040 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.611582 ], [ -79.024658, 9.557417 ], [ -79.057617, 9.459899 ], [ -78.497314, 9.416548 ], [ -78.057861, 9.243093 ], [ -77.728271, 8.950193 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.634776 ], [ -77.750244, 7.710992 ], [ -77.882080, 7.220800 ], [ -78.211670, 7.514981 ], [ -78.431396, 8.048352 ], [ -78.178711, 8.320212 ], [ -78.431396, 8.385431 ], [ -78.618164, 8.722218 ], [ -79.123535, 8.993600 ], [ -79.562988, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.167236, 8.331083 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.416942 ], [ -80.419922, 7.275292 ], [ -80.881348, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.710992 ], [ -81.716309, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.386475, 8.287599 ], [ -82.814941, 8.287599 ], [ -82.847900, 8.070107 ], [ -82.968750, 8.222364 ], [ -82.913818, 8.428904 ], [ -82.825928, 8.624472 ], [ -82.869873, 8.809082 ], [ -82.716064, 8.928487 ], [ -82.924805, 9.069551 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.993600 ], [ -81.804199, 8.950193 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.863362 ], [ -80.518799, 9.112945 ], [ -79.914551, 9.308149 ], [ -79.573975, 9.611582 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.794189, 18.521283 ], [ -76.893311, 18.396230 ], [ -76.365967, 18.156291 ], [ -76.201172, 17.884659 ], [ -76.904297, 17.863747 ], [ -77.200928, 17.696362 ], [ -77.761230, 17.863747 ], [ -78.332520, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.794189, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.911384 ], [ -72.575684, 19.870060 ], [ -71.707764, 19.715000 ], [ -71.619873, 19.165924 ], [ -71.696777, 18.781517 ], [ -71.949463, 18.615013 ], [ -71.685791, 18.312811 ], [ -71.707764, 18.041421 ], [ -72.377930, 18.218916 ], [ -72.839355, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.030975 ], [ -74.454346, 18.344098 ], [ -74.366455, 18.667063 ], [ -73.454590, 18.521283 ], [ -72.696533, 18.448347 ], [ -72.333984, 18.667063 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.410645, 19.642588 ], [ -73.190918, 19.911384 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.104492, 18.521283 ], [ -66.280518, 18.510866 ], [ -65.775146, 18.427502 ], [ -65.588379, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.599121, 17.978733 ], [ -67.181396, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.754639, 8.363693 ], [ -59.106445, 7.993957 ], [ -58.480225, 7.351571 ], [ -58.458252, 6.828261 ], [ -58.073730, 6.806444 ], [ -57.150879, 5.976680 ], [ -57.304688, 5.069058 ], [ -57.908936, 4.817312 ], [ -57.864990, 4.576425 ], [ -58.040771, 4.061536 ], [ -57.601318, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.767478 ], [ -56.535645, 1.900286 ], [ -56.777344, 1.867345 ], [ -57.337646, 1.944207 ], [ -57.656250, 1.680667 ], [ -58.117676, 1.504954 ], [ -58.425293, 1.461023 ], [ -58.535156, 1.263325 ], [ -59.029541, 1.318243 ], [ -59.644775, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.974365, 2.756504 ], [ -59.820557, 3.601142 ], [ -59.534912, 3.962901 ], [ -59.765625, 4.423090 ], [ -60.106201, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.244128 ], [ -60.732422, 5.200365 ], [ -61.413574, 5.954827 ], [ -61.138916, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.292969, 7.046379 ], [ -60.633545, 7.416942 ], [ -60.545654, 7.776309 ], [ -59.754639, 8.363693 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.751709, 12.436577 ], [ -71.400146, 12.372197 ], [ -71.136475, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.971436, 11.609193 ], [ -72.224121, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.905273, 10.455402 ], [ -73.026123, 9.741542 ], [ -73.300781, 9.156333 ], [ -72.784424, 9.080400 ], [ -72.663574, 8.624472 ], [ -72.443848, 8.407168 ], [ -72.355957, 8.004837 ], [ -72.476807, 7.634776 ], [ -72.443848, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.092773, 6.959144 ], [ -69.389648, 6.096860 ], [ -68.983154, 6.206090 ], [ -68.269043, 6.151478 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.741699, 5.222247 ], [ -67.818604, 4.499762 ], [ -67.620850, 3.842332 ], [ -67.335205, 3.546318 ], [ -67.302246, 3.316018 ], [ -67.807617, 2.822344 ], [ -67.445068, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.873779, 1.252342 ], [ -67.060547, 1.131518 ], [ -67.258301, 1.724593 ], [ -67.532959, 2.032045 ], [ -67.873535, 1.691649 ], [ -69.818115, 1.713612 ], [ -69.807129, 1.087581 ], [ -69.213867, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.703107 ], [ -70.015869, 0.538322 ], [ -70.015869, -0.186767 ], [ -69.576416, -0.549308 ], [ -69.488525, -0.878872 ], [ -74.201660, -0.878872 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.054932 ], [ -75.377197, -0.153808 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.252685 ], [ -77.420654, 0.395505 ], [ -77.673340, 0.823946 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.662109, 2.262595 ], [ -78.431396, 2.624814 ], [ -77.937012, 2.701635 ], [ -77.508545, 3.326986 ], [ -77.124023, 3.853293 ], [ -77.497559, 4.083453 ], [ -77.310791, 4.664030 ], [ -77.530518, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.475586, 6.686431 ], [ -77.882080, 7.220800 ], [ -77.750244, 7.710992 ], [ -77.431641, 7.634776 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.667918 ], [ -76.838379, 8.635334 ], [ -76.091309, 9.340672 ], [ -75.673828, 9.438224 ], [ -75.662842, 9.774025 ], [ -75.476074, 10.617418 ], [ -74.904785, 11.081385 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.307708 ], [ -73.410645, 11.232286 ], [ -72.630615, 11.727546 ], [ -72.235107, 11.953349 ], [ -71.751709, 12.436577 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.216064, 5.244128 ], [ -59.985352, 5.014339 ], [ -60.106201, 4.576425 ], [ -59.765625, 4.423090 ], [ -59.534912, 3.962901 ], [ -59.820557, 3.601142 ], [ -59.974365, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.644775, 1.790480 ], [ -59.029541, 1.318243 ], [ -58.535156, 1.263325 ], [ -58.425293, 1.461023 ], [ -58.117676, 1.504954 ], [ -57.656250, 1.680667 ], [ -57.337646, 1.944207 ], [ -56.777344, 1.867345 ], [ -56.535645, 1.900286 ], [ -55.997314, 1.812442 ], [ -55.909424, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.975342, 2.515061 ], [ -55.568848, 2.416276 ], [ -55.096436, 2.526037 ], [ -54.525146, 2.306506 ], [ -54.085693, 2.108899 ], [ -53.778076, 2.372369 ], [ -53.558350, 2.339438 ], [ -53.415527, 2.054003 ], [ -52.943115, 2.119878 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.239240 ], [ -51.657715, 4.160158 ], [ -51.317139, 4.203986 ], [ -51.064453, 3.645000 ], [ -50.504150, 1.900286 ], [ -49.976807, 1.735574 ], [ -49.943848, 1.043643 ], [ -50.701904, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.383301, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -0.878872 ], [ -69.488525, -0.878872 ], [ -69.576416, -0.549308 ], [ -70.015869, -0.186767 ], [ -70.015869, 0.538322 ], [ -69.455566, 0.703107 ], [ -69.257812, 0.604237 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.087581 ], [ -69.818115, 1.713612 ], [ -67.873535, 1.691649 ], [ -67.532959, 2.032045 ], [ -67.258301, 1.724593 ], [ -67.060547, 1.131518 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.610596, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.911267 ], [ -63.369141, 2.196727 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.493109 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.885498, 4.017699 ], [ -63.094482, 3.765597 ], [ -62.808838, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.963135, 4.532618 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.216064, 5.244128 ] ] ], [ [ [ -48.164062, -0.878872 ], [ -47.823486, -0.582265 ], [ -46.779785, -0.878872 ], [ -48.164062, -0.878872 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.102539, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.201660, -0.878872 ], [ -75.234375, -0.878872 ], [ -75.377197, -0.153808 ], [ -75.102539, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.751709, 12.436577 ], [ -71.400146, 12.372197 ], [ -71.136475, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.971436, 11.609193 ], [ -72.224121, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.905273, 10.455402 ], [ -73.026123, 9.741542 ], [ -73.300781, 9.156333 ], [ -72.784424, 9.080400 ], [ -72.663574, 8.624472 ], [ -72.443848, 8.407168 ], [ -72.355957, 8.004837 ], [ -72.476807, 7.634776 ], [ -72.443848, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.092773, 6.959144 ], [ -69.389648, 6.096860 ], [ -68.983154, 6.206090 ], [ -68.269043, 6.151478 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.741699, 5.222247 ], [ -67.818604, 4.499762 ], [ -67.620850, 3.842332 ], [ -67.335205, 3.546318 ], [ -67.302246, 3.316018 ], [ -67.807617, 2.822344 ], [ -67.445068, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.873779, 1.252342 ], [ -67.060547, 1.131518 ], [ -67.258301, 1.724593 ], [ -67.532959, 2.032045 ], [ -67.873535, 1.691649 ], [ -69.818115, 1.713612 ], [ -69.807129, 1.087581 ], [ -69.213867, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.703107 ], [ -70.015869, 0.538322 ], [ -70.015869, -0.186767 ], [ -69.576416, -0.549308 ], [ -69.488525, -0.878872 ], [ -74.201660, -0.878872 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.054932 ], [ -75.377197, -0.153808 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.252685 ], [ -77.420654, 0.395505 ], [ -77.673340, 0.823946 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.662109, 2.262595 ], [ -78.431396, 2.624814 ], [ -77.937012, 2.701635 ], [ -77.508545, 3.326986 ], [ -77.124023, 3.853293 ], [ -77.497559, 4.083453 ], [ -77.310791, 4.664030 ], [ -77.530518, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.475586, 6.686431 ], [ -77.882080, 7.220800 ], [ -77.750244, 7.710992 ], [ -77.431641, 7.634776 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.667918 ], [ -76.838379, 8.635334 ], [ -76.091309, 9.340672 ], [ -75.673828, 9.438224 ], [ -75.662842, 9.774025 ], [ -75.476074, 10.617418 ], [ -74.904785, 11.081385 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.307708 ], [ -73.410645, 11.232286 ], [ -72.630615, 11.727546 ], [ -72.235107, 11.953349 ], [ -71.751709, 12.436577 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.953857, 5.758105 ], [ -52.877197, 5.408211 ], [ -51.822510, 4.565474 ], [ -51.657715, 4.160158 ], [ -52.250977, 3.239240 ], [ -52.558594, 2.504085 ], [ -52.943115, 2.119878 ], [ -53.415527, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.778076, 2.372369 ], [ -54.085693, 2.108899 ], [ -54.525146, 2.306506 ], [ -54.272461, 2.734557 ], [ -54.184570, 3.195364 ], [ -54.008789, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.893941 ], [ -53.953857, 5.758105 ] ] ] } } ] } ] } , { "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, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.374023, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.897739 ], [ -84.781494, 46.634351 ], [ -84.539795, 46.536193 ], [ -84.605713, 46.437857 ], [ -84.342041, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.813486 ], [ -82.551270, 45.344424 ], [ -82.133789, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.212245 ], [ -80.244141, 42.366662 ], [ -78.936768, 42.859860 ], [ -78.914795, 42.964463 ], [ -79.013672, 43.269206 ], [ -79.167480, 43.468868 ], [ -78.717041, 43.628123 ], [ -76.816406, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.400146, 45.251688 ], [ -71.081543, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.301514, 45.912944 ], [ -70.004883, 46.694667 ], [ -69.235840, 47.450380 ], [ -68.906250, 47.182246 ], [ -68.236084, 47.353711 ], [ -67.785645, 47.062638 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.334184 ], [ -70.499268, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.180664, 42.147114 ], [ -69.884033, 41.926803 ], [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.333740, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.430224 ], [ -73.992920, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.261256 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.305121 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.064840 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.263428, 60.855613 ], [ -48.262939, 60.860963 ], [ -49.229736, 61.407236 ], [ -49.899902, 62.385277 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.272949, 65.178418 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.349609, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.517578, 69.881231 ], [ -84.100342, 69.805516 ], [ -82.617188, 69.657086 ], [ -81.276855, 69.162558 ], [ -81.221924, 68.664551 ], [ -81.968994, 68.130668 ], [ -81.254883, 67.596662 ], [ -81.386719, 67.110204 ], [ -83.067627, 66.513260 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.557007 ], [ -85.792236, 66.513260 ], [ -86.000977, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.549316, 69.496070 ], [ -90.549316, 68.475895 ], [ -90.000000, 68.800041 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.871403 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.921011 ], [ -85.572510, 68.784144 ], [ -85.517578, 69.881231 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.102607 ], [ -76.256104, 72.825808 ], [ -77.310791, 72.854981 ], [ -78.387451, 72.877637 ], [ -79.486084, 72.741263 ], [ -79.771729, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.692696 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -85.825195, 73.803383 ], [ -86.561279, 73.156808 ], [ -85.770264, 72.534726 ], [ -84.847412, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.595703, 72.715168 ], [ -80.749512, 72.060381 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.242216 ], [ -74.223633, 71.767067 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.556217 ], [ -71.202393, 70.920233 ], [ -68.785400, 70.524897 ], [ -67.917480, 70.121695 ], [ -66.972656, 69.185993 ], [ -68.807373, 68.720441 ], [ -66.445312, 68.069202 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -66.346436, 66.160511 ], [ -66.719971, 66.385961 ], [ -68.016357, 66.262434 ], [ -68.038330, 66.160511 ], [ -74.047852, 66.160511 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.726108 ], [ -73.311768, 68.069202 ], [ -74.838867, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.146920 ], [ -77.288818, 69.771356 ], [ -78.167725, 69.828260 ], [ -78.958740, 70.166473 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.055664, 70.259452 ], [ -88.681641, 70.411031 ], [ -89.516602, 70.761586 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.478584 ], [ -89.439697, 73.128134 ], [ -88.406982, 73.537742 ], [ -85.825195, 73.803383 ] ] ], [ [ [ -76.563721, 79.335219 ], [ -76.904297, 79.323013 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.388184, 78.525573 ], [ -76.343994, 78.181838 ], [ -77.893066, 77.899558 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.617920, 76.982624 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.177123 ], [ -83.177490, 76.455203 ], [ -86.110840, 76.299953 ], [ -87.604980, 76.419134 ], [ -89.494629, 76.473203 ], [ -89.615479, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.179588 ], [ -87.956543, 78.371576 ], [ -87.154541, 78.759229 ], [ -85.374756, 78.996578 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.335219 ], [ -76.563721, 79.335219 ] ] ], [ [ [ -75.893555, 68.285651 ], [ -75.113525, 68.011685 ], [ -75.102539, 67.584098 ], [ -75.212402, 67.445443 ], [ -75.860596, 67.148632 ], [ -76.992188, 67.097380 ], [ -77.233887, 67.588287 ], [ -76.816406, 68.147032 ], [ -75.893555, 68.285651 ] ] ], [ [ [ -90.878906, 76.055861 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.374512, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.749023, 75.783244 ], [ -81.123047, 75.712922 ], [ -80.057373, 75.336721 ], [ -79.837646, 74.922284 ], [ -80.452881, 74.657110 ], [ -81.947021, 74.443466 ], [ -83.232422, 74.563812 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.543330 ], [ -90.878906, 74.651295 ], [ -90.878906, 76.055861 ] ] ], [ [ [ -85.825195, 79.335219 ], [ -86.583252, 79.171335 ], [ -87.187500, 79.038437 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.249150 ], [ -90.802002, 78.215541 ], [ -90.878906, 78.220028 ], [ -90.878906, 79.335219 ], [ -85.825195, 79.335219 ] ] ], [ [ [ -90.878906, 73.904204 ], [ -90.505371, 73.855397 ], [ -90.878906, 73.640171 ], [ -90.878906, 73.904204 ] ] ], [ [ [ -90.878906, 76.224292 ], [ -90.878906, 76.501441 ], [ -90.747070, 76.450056 ], [ -90.878906, 76.224292 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -52.976074, 68.358699 ], [ -51.470947, 68.728413 ], [ -51.075439, 69.146920 ], [ -50.866699, 69.930300 ], [ -52.009277, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.283371 ], [ -54.678955, 69.611206 ], [ -54.744873, 70.289117 ], [ -54.360352, 70.823031 ], [ -53.426514, 70.837461 ], [ -51.394043, 70.568803 ], [ -53.107910, 71.205460 ], [ -54.008789, 71.545787 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.653291 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -57.326660, 74.709347 ], [ -58.601074, 75.098458 ], [ -58.590088, 75.516404 ], [ -61.270752, 76.103435 ], [ -63.391113, 76.174498 ], [ -66.060791, 76.135063 ], [ -68.499756, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.007347 ], [ -68.774414, 77.322168 ], [ -66.763916, 77.375105 ], [ -71.037598, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.157959, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.434082, 79.171335 ], [ -66.170654, 79.335219 ], [ -44.121094, 79.335219 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 80.691566 ], [ -90.000000, 80.578943 ], [ -89.450684, 80.508549 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -86.583252, 79.171335 ], [ -87.187500, 79.038437 ], [ -87.275391, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.691566 ] ] ], [ [ [ -72.828369, 83.233838 ], [ -65.830078, 83.027553 ], [ -63.676758, 82.899703 ], [ -61.853027, 82.628514 ], [ -61.896973, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.724769 ], [ -67.653809, 81.502052 ], [ -65.478516, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.466553, 80.616633 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.633945 ], [ -73.883057, 79.430356 ], [ -76.904297, 79.323013 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -76.223145, 79.019620 ], [ -76.201172, 79.004962 ], [ -85.374756, 79.004962 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.593994, 80.515792 ], [ -89.362793, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.197754, 81.260042 ], [ -90.878906, 81.431957 ], [ -90.878906, 81.986228 ], [ -90.098877, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.116877 ], [ -86.967773, 82.279430 ], [ -85.495605, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.177490, 82.320646 ], [ -82.419434, 82.860213 ], [ -81.101074, 83.019546 ], [ -79.310303, 83.130809 ], [ -76.245117, 83.171423 ], [ -75.717773, 83.063469 ], [ -72.828369, 83.233838 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 83.101841 ], [ -44.121094, 79.004962 ], [ -68.686523, 79.004962 ], [ -67.434082, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -68.027344, 80.116678 ], [ -67.148438, 80.515792 ], [ -63.687744, 81.213175 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.129639, 82.199320 ], [ -53.041992, 81.887606 ], [ -50.394287, 82.438651 ], [ -47.999268, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.735830 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.199320 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.948424 ], [ -44.121094, 83.101841 ] ] ] } } ] } ] } , @@ -456,17 +454,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.640078 ], [ 0.878906, 41.029643 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.120090 ], [ 0.000000, 39.901309 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.899583 ], [ 0.109863, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.472412, 38.289937 ], [ -0.681152, 37.640335 ], [ -1.439209, 37.439974 ], [ -2.142334, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.677231 ], [ -4.998779, 36.323977 ], [ -5.372314, 35.942436 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.514893, 36.941111 ], [ -7.448730, 37.099003 ], [ -7.536621, 37.431251 ], [ -7.163086, 37.805444 ], [ -7.031250, 38.074041 ], [ -7.371826, 38.376115 ], [ -7.097168, 39.027719 ], [ -7.503662, 39.631077 ], [ -7.064209, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.329796 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.536865, 41.640078 ], [ 0.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.594081 ], [ -14.095459, 16.299051 ], [ -13.436279, 16.035255 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.615478 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.421681 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.513672, 12.447305 ], [ -11.656494, 12.382928 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.350734 ], [ -12.502441, 12.329269 ], [ -13.216553, 12.576010 ], [ -15.545654, 12.629618 ], [ -15.820312, 12.511665 ], [ -16.149902, 12.543840 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.154376 ], [ -15.930176, 13.132979 ], [ -15.688477, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.293411 ], [ -14.282227, 13.282719 ], [ -13.842773, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.624633 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.710205, 13.592600 ], [ -17.127686, 14.370834 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.923554 ], [ -16.699219, 15.623037 ], [ -16.468506, 16.130262 ], [ -16.116943, 16.457159 ], [ -15.622559, 16.372851 ], [ -15.139160, 16.583552 ], [ -14.578857, 16.594081 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.654338 ], [ -8.679199, 27.391278 ], [ -8.690186, 25.878994 ], [ -11.964111, 25.938287 ], [ -11.942139, 23.372514 ], [ -12.875977, 23.281719 ], [ -13.117676, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.842041, 21.330315 ], [ -17.061768, 21.002471 ], [ -17.017822, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.216309, 22.309426 ], [ -13.886719, 23.694835 ], [ -12.502441, 24.766785 ], [ -12.030029, 26.027170 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.882880 ], [ -10.546875, 26.990619 ], [ -10.184326, 26.863281 ], [ -9.733887, 26.863281 ], [ -9.415283, 27.088473 ], [ -8.800049, 27.117813 ], [ -8.822021, 27.654338 ], [ -8.668213, 27.654338 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.391278 ], [ -4.921875, 24.976099 ], [ -6.448975, 24.956180 ], [ -5.493164, 16.320139 ], [ -5.317383, 16.204125 ], [ -5.537109, 15.506619 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.645752, 15.135764 ], [ -11.348877, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.832275, 14.796128 ], [ -12.172852, 14.615478 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.035255 ], [ -14.095459, 16.299051 ], [ -14.578857, 16.594081 ], [ -15.139160, 16.583552 ], [ -15.622559, 16.372851 ], [ -16.116943, 16.457159 ], [ -16.468506, 16.130262 ], [ -16.545410, 16.678293 ], [ -16.270752, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.093267 ], [ -16.380615, 19.590844 ], [ -16.281738, 20.097206 ], [ -16.534424, 20.571082 ], [ -17.061768, 21.002471 ], [ -16.842041, 21.330315 ], [ -12.930908, 21.330315 ], [ -13.117676, 22.776182 ], [ -12.875977, 23.281719 ], [ -11.942139, 23.372514 ], [ -11.964111, 25.938287 ], [ -8.690186, 25.878994 ], [ -8.679199, 27.391278 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.545654, 12.629618 ], [ -13.699951, 12.586732 ], [ -13.721924, 12.243392 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.897705, 11.673755 ], [ -14.117432, 11.673755 ], [ -14.381104, 11.512322 ], [ -14.688721, 11.523088 ], [ -15.128174, 11.038255 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.149902, 12.543840 ], [ -15.820312, 12.511665 ], [ -15.545654, 12.629618 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.843506, 9.687398 ], [ -10.623779, 9.264779 ], [ -10.656738, 8.971897 ], [ -10.491943, 8.711359 ], [ -10.502930, 8.352823 ], [ -10.228271, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.395153 ], [ -11.195068, 7.100893 ], [ -11.436768, 6.784626 ], [ -11.711426, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.952881, 7.798079 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.711182, 9.340672 ], [ -12.601318, 9.622414 ], [ -12.425537, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.923554 ], [ 0.373535, 14.934170 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.878906, 13.464422 ], [ 0.878906, 10.995120 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.758057, 10.941192 ], [ -1.208496, 11.005904 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.390572 ], [ -2.823486, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.977051, 9.860628 ], [ -4.328613, 9.611582 ], [ -4.779053, 9.817329 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.368958 ], [ -5.471191, 10.951978 ], [ -5.196533, 11.372339 ], [ -5.218506, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.336175 ], [ -3.109131, 13.539201 ], [ -2.966309, 13.795406 ], [ -2.197266, 14.243087 ], [ -1.999512, 14.562318 ], [ -1.065674, 14.976627 ], [ -0.516357, 15.114553 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.520219 ], [ -6.053467, 10.098670 ], [ -5.811768, 10.217625 ], [ -5.405273, 10.368958 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.817329 ], [ -4.328613, 9.611582 ], [ -3.977051, 9.860628 ], [ -3.515625, 9.903921 ], [ -2.823486, 9.644077 ], [ -2.559814, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.240967, 6.249776 ], [ -2.812500, 5.386336 ], [ -2.856445, 4.992450 ], [ -3.306885, 4.981505 ], [ -4.010010, 5.178482 ], [ -4.647217, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.525879, 4.707828 ], [ -7.514648, 4.335456 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.536621, 5.309766 ], [ -7.569580, 5.703448 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.602295, 6.468151 ], [ -8.382568, 6.915521 ], [ -8.481445, 7.395153 ], [ -8.437500, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.217773, 8.124491 ], [ -8.294678, 8.320212 ], [ -8.206787, 8.450639 ], [ -7.833252, 8.581021 ], [ -8.074951, 9.373193 ], [ -8.305664, 9.784851 ], [ -8.228760, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.293301 ], [ -7.624512, 10.141932 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.492920, 10.412183 ], [ -6.207275, 10.520219 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.843506, 9.687398 ], [ -10.623779, 9.264779 ], [ -10.656738, 8.971897 ], [ -10.491943, 8.711359 ], [ -10.502930, 8.352823 ], [ -10.228271, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.395153 ], [ -11.195068, 7.100893 ], [ -11.436768, 6.784626 ], [ -11.711426, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.952881, 7.798079 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.711182, 9.340672 ], [ -12.601318, 9.622414 ], [ -12.425537, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 14.955399 ], [ 0.878906, 13.464422 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.878906, 14.955399 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 36.421282 ], [ 0.878906, 21.227942 ], [ 0.000000, 21.790107 ], [ -4.921875, 24.976099 ], [ -8.679199, 27.391278 ], [ -8.668213, 27.586198 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.240479, 30.002517 ], [ -4.855957, 30.505484 ], [ -3.691406, 30.892797 ], [ -3.647461, 31.634676 ], [ -3.065186, 31.728167 ], [ -2.614746, 32.091883 ], [ -1.307373, 32.259265 ], [ -1.120605, 32.648626 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.916013 ], [ -1.790771, 34.524661 ], [ -2.175293, 35.164828 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.969115 ], [ 0.505371, 36.297418 ], [ 0.878906, 36.421282 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.878906, 10.995120 ], [ 0.878906, 10.908830 ], [ 0.769043, 10.466206 ], [ 0.878906, 10.368958 ], [ 0.878906, 6.217012 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.416942 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.678779 ], [ 0.362549, 9.459899 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.459899 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.416942 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 0.878906, 6.217012 ], [ 0.878906, 5.856475 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.342583 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.707828 ], [ -2.856445, 4.992450 ], [ -2.812500, 5.386336 ], [ -3.240967, 6.249776 ], [ -2.988281, 7.384258 ], [ -2.559814, 8.222364 ], [ -2.966309, 10.390572 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.005904 ], [ -0.758057, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } ] } ] } , @@ -474,7 +474,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.969727, 66.861082 ], [ -34.200439, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.353760, 65.977798 ], [ -37.045898, 65.937514 ], [ -38.375244, 65.689953 ], [ -39.814453, 65.458261 ], [ -40.671387, 64.839597 ], [ -40.682373, 64.139369 ], [ -41.187744, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.374023, 60.097718 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.878906, 60.640876 ], [ -45.878906, 66.861082 ], [ -33.969727, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.747289 ], [ -6.756592, 43.564472 ], [ -5.416260, 43.572432 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.452919 ], [ -1.900635, 43.421009 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.340576, 42.577355 ], [ 0.703125, 42.795401 ], [ 0.878906, 42.722804 ], [ 0.878906, 41.029643 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.318604, 40.313043 ], [ -6.888428, 40.313043 ], [ -6.866455, 40.329796 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.250977, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.009033, 41.787697 ], [ -8.261719, 42.277309 ], [ -8.668213, 42.130821 ], [ -9.030762, 41.877741 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.976074, 43.747289 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 49.972422 ], [ 0.878906, 42.722804 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.900635, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.012224 ], [ -2.230225, 47.062638 ], [ -2.966309, 47.569114 ], [ -4.493408, 47.953145 ], [ -4.592285, 48.683708 ], [ -3.295898, 48.900838 ], [ -1.614990, 48.647428 ], [ -1.933594, 49.774170 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.681847 ], [ 0.878906, 49.972422 ] ] ] } } ] } ] } , @@ -506,17 +506,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.775879, 0.878872 ], [ 17.830811, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.054932 ], [ 17.644043, -0.428463 ], [ 17.523193, -0.747049 ], [ 16.864014, -1.230374 ], [ 16.402588, -1.735574 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.853293 ], [ 15.172119, -4.346411 ], [ 14.578857, -4.970560 ], [ 14.205322, -4.795417 ], [ 14.150391, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.260498, -4.882994 ], [ 12.996826, -4.784469 ], [ 12.623291, -4.434044 ], [ 12.315674, -4.609278 ], [ 11.920166, -5.036227 ], [ 11.096191, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.480713, -2.767478 ], [ 11.821289, -2.515061 ], [ 12.491455, -2.394322 ], [ 12.579346, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.996582, -2.471157 ], [ 14.304199, -1.999106 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.161377, 0.878872 ], [ 17.775879, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.972741 ], [ 14.062500, -17.424029 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.790535 ], [ 21.379395, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.038086, -17.298199 ], [ 24.686279, -17.350638 ], [ 25.081787, -17.581194 ], [ 25.081787, -17.664960 ], [ 24.521484, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.281518 ], [ 23.192139, -17.874203 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.885010, -21.810508 ], [ 19.896240, -21.851302 ], [ 19.896240, -28.459033 ], [ 19.006348, -28.969701 ], [ 18.468018, -29.046566 ], [ 17.830811, -28.854296 ], [ 17.391357, -28.786918 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.743652, -25.393661 ], [ 14.403076, -23.855698 ], [ 14.381104, -22.654572 ], [ 14.260254, -22.116177 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.832031, -19.673626 ], [ 12.612305, -19.041349 ], [ 11.799316, -18.072757 ], [ 11.733398, -17.298199 ], [ 12.216797, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.421143, -1.131518 ], [ 30.816650, -1.702630 ], [ 30.761719, -2.284551 ], [ 30.465088, -2.416276 ], [ 29.937744, -2.350415 ], [ 29.630127, -2.921097 ], [ 29.025879, -2.844290 ], [ 29.113770, -2.295528 ], [ 29.256592, -2.218684 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.421143, -1.131518 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "name_sort": "Burundi", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.350415 ], [ 30.465088, -2.416276 ], [ 30.531006, -2.811371 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.359889 ], [ 30.509033, -3.568248 ], [ 30.113525, -4.094411 ], [ 29.750977, -4.455951 ], [ 29.344482, -4.499762 ], [ 29.278564, -3.294082 ], [ 29.025879, -2.844290 ], [ 29.630127, -2.921097 ], [ 29.937744, -2.350415 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.163560 ], [ 34.562988, -11.523088 ], [ 34.277344, -12.275599 ], [ 34.562988, -13.581921 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.891411 ], [ 35.683594, -14.615478 ], [ 35.771484, -15.897942 ], [ 35.343018, -16.109153 ], [ 35.035400, -16.804541 ], [ 34.376221, -16.183024 ], [ 34.310303, -15.474857 ], [ 34.519043, -15.008464 ], [ 34.464111, -14.615478 ], [ 34.068604, -14.360191 ], [ 33.793945, -14.455958 ], [ 33.211670, -13.976715 ], [ 32.684326, -13.710035 ], [ 32.991943, -12.779661 ], [ 33.310547, -12.436577 ], [ 33.112793, -11.609193 ], [ 33.310547, -10.800933 ], [ 33.486328, -10.520219 ], [ 33.233643, -9.676569 ], [ 32.761230, -9.232249 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.765653 ], [ 32.189941, -8.928487 ], [ 32.761230, -9.232249 ], [ 33.233643, -9.676569 ], [ 33.486328, -10.520219 ], [ 33.310547, -10.800933 ], [ 33.112793, -11.609193 ], [ 33.310547, -12.436577 ], [ 32.991943, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.976715 ], [ 30.179443, -14.796128 ], [ 30.278320, -15.506619 ], [ 29.520264, -15.644197 ], [ 28.948975, -16.045813 ], [ 28.828125, -16.393931 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.048340, -17.936929 ], [ 26.707764, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.268555, -17.738223 ], [ 25.081787, -17.664960 ], [ 25.081787, -17.581194 ], [ 24.686279, -17.350638 ], [ 24.038086, -17.298199 ], [ 23.214111, -17.518344 ], [ 22.565918, -16.899172 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.727546 ], [ 24.016113, -11.232286 ], [ 23.917236, -10.930405 ], [ 24.257812, -10.951978 ], [ 24.312744, -11.264612 ], [ 24.785156, -11.243062 ], [ 25.422363, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.553955, -11.921103 ], [ 27.169189, -11.609193 ], [ 27.388916, -12.136005 ], [ 28.157959, -12.275599 ], [ 28.520508, -12.693933 ], [ 28.937988, -13.250640 ], [ 29.696045, -13.261333 ], [ 29.619141, -12.178965 ], [ 29.344482, -12.361466 ], [ 28.641357, -11.974845 ], [ 28.377686, -11.792080 ], [ 28.498535, -10.790141 ], [ 28.674316, -9.600750 ], [ 28.454590, -9.167179 ], [ 28.740234, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.319824, -10.314919 ], [ 40.473633, -10.768556 ], [ 40.440674, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.411319 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.843913 ], [ 35.200195, -19.549437 ], [ 34.782715, -19.787380 ], [ 34.705811, -20.499064 ], [ 35.178223, -21.258661 ], [ 35.375977, -21.841105 ], [ 35.386963, -22.136532 ], [ 35.562744, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.375977, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.463867, -24.126702 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.816654 ], [ 33.013916, -25.353955 ], [ 32.574463, -25.730633 ], [ 32.662354, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.745610 ], [ 32.069092, -26.735799 ], [ 31.981201, -26.293415 ], [ 31.838379, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.662354, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.849121, -16.709863 ], [ 32.332764, -16.393931 ], [ 31.849365, -16.320139 ], [ 31.640625, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.344238, -15.876809 ], [ 30.179443, -14.796128 ], [ 33.211670, -13.976715 ], [ 33.793945, -14.455958 ], [ 34.068604, -14.360191 ], [ 34.464111, -14.615478 ], [ 34.519043, -15.008464 ], [ 34.310303, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.035400, -16.804541 ], [ 35.343018, -16.109153 ], [ 35.771484, -15.897942 ], [ 35.683594, -14.615478 ], [ 35.266113, -13.891411 ], [ 34.903564, -13.560562 ], [ 34.562988, -13.581921 ], [ 34.277344, -12.275599 ], [ 34.562988, -11.523088 ], [ 35.310059, -11.436955 ], [ 36.518555, -11.716788 ], [ 36.771240, -11.598432 ], [ 37.474365, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.430176, -11.286161 ], [ 39.517822, -10.898042 ], [ 40.319824, -10.314919 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.278320, -15.506619 ], [ 30.344238, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.640625, -16.066929 ], [ 31.849365, -16.320139 ], [ 32.332764, -16.393931 ], [ 32.849121, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.662354, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.662842, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.105999 ], [ 29.432373, -22.095820 ], [ 28.795166, -21.637005 ], [ 28.026123, -21.483741 ], [ 27.729492, -20.848545 ], [ 27.729492, -20.499064 ], [ 27.301025, -20.396123 ], [ 26.169434, -19.290406 ], [ 25.850830, -18.719097 ], [ 25.653076, -18.531700 ], [ 25.268555, -17.738223 ], [ 26.378174, -17.842833 ], [ 26.707764, -17.957832 ], [ 27.048340, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.828125, -16.393931 ], [ 28.948975, -16.045813 ], [ 29.520264, -15.644197 ], [ 30.278320, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.432373, -22.095820 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.268764 ], [ 30.662842, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.839449 ], [ 31.333008, -25.661333 ], [ 31.047363, -25.730633 ], [ 30.948486, -26.027170 ], [ 30.673828, -26.401711 ], [ 30.684814, -26.745610 ], [ 31.278076, -27.283926 ], [ 31.871338, -27.176469 ], [ 32.069092, -26.735799 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.464600, -28.304381 ], [ 32.200928, -28.748397 ], [ 31.322021, -29.401320 ], [ 30.904541, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.058594, -31.137603 ], [ 28.927002, -32.175612 ], [ 28.223877, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.422119, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.784912, -33.943360 ], [ 25.169678, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.916013 ], [ 22.576904, -33.861293 ], [ 21.544189, -34.261757 ], [ 20.687256, -34.415973 ], [ 20.072021, -34.795762 ], [ 19.621582, -34.822823 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.998027 ], [ 18.380127, -34.134542 ], [ 18.248291, -33.870416 ], [ 18.248291, -33.284620 ], [ 17.929688, -32.611616 ], [ 18.248291, -32.426340 ], [ 18.226318, -31.662733 ], [ 17.567139, -30.722949 ], [ 17.061768, -29.878755 ], [ 16.347656, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.391357, -28.786918 ], [ 17.830811, -28.854296 ], [ 18.468018, -29.046566 ], [ 19.006348, -28.969701 ], [ 19.896240, -28.459033 ], [ 19.896240, -24.766785 ], [ 20.170898, -24.916331 ], [ 20.753174, -25.869109 ], [ 20.665283, -26.480407 ], [ 20.885010, -26.824071 ], [ 21.610107, -26.725987 ], [ 22.104492, -26.283565 ], [ 22.576904, -25.977799 ], [ 22.829590, -25.502785 ], [ 23.312988, -25.264568 ], [ 23.730469, -25.393661 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.432373, -22.095820 ] ], [ [ 28.542480, -28.652031 ], [ 28.070068, -28.854296 ], [ 27.531738, -29.238477 ], [ 27.004395, -29.878755 ], [ 27.751465, -30.647364 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.230595 ], [ 28.850098, -30.069094 ], [ 29.014893, -29.745302 ], [ 29.322510, -29.257649 ], [ 28.981934, -28.960089 ], [ 28.542480, -28.652031 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.878872 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.086941 ], [ 40.638428, -2.504085 ], [ 40.264893, -2.569939 ], [ 40.122070, -3.283114 ], [ 39.803467, -3.677892 ], [ 39.605713, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.770996, -3.677892 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.903809, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.453125, 0.878872 ], [ 40.989990, 0.878872 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.542480, -28.652031 ], [ 28.981934, -28.960089 ], [ 29.322510, -29.257649 ], [ 29.014893, -29.745302 ], [ 28.850098, -30.069094 ], [ 28.289795, -30.230595 ], [ 28.103027, -30.543339 ], [ 27.751465, -30.647364 ], [ 27.004395, -29.878755 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.854296 ], [ 28.542480, -28.652031 ] ] ] } } ] } @@ -526,43 +522,41 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.680664, 41.640078 ], [ 2.087402, 41.228249 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.120090 ], [ 0.000000, 39.901309 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.899583 ], [ 0.109863, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.472412, 38.289937 ], [ -0.681152, 37.640335 ], [ -0.878906, 37.588119 ], [ -0.878906, 41.640078 ], [ 2.680664, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.511475, 41.640078 ], [ 20.467529, 41.516804 ], [ 20.610352, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.838749 ], [ 20.994873, 40.580585 ], [ 20.676270, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.622615 ], [ 19.984131, 39.698734 ], [ 19.962158, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 20.511475, 41.640078 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 44.967041, 41.244772 ], [ 43.582764, 41.095912 ], [ 42.615967, 41.582580 ], [ 41.550293, 41.533254 ], [ 41.594238, 41.640078 ], [ 45.878906, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.923554 ], [ 0.373535, 14.934170 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.450195, 11.544616 ], [ 1.241455, 11.113727 ], [ 0.900879, 10.995120 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.758057, 10.941192 ], [ -0.878906, 10.951978 ], [ -0.878906, 15.019075 ], [ -0.516357, 15.114553 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.116526 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.430122 ], [ 8.371582, 35.478565 ], [ 8.140869, 34.651285 ], [ 7.525635, 34.098159 ], [ 7.613525, 33.339707 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.101190 ], [ 9.481201, 30.306503 ], [ 9.810791, 29.420460 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.139816 ], [ 9.755859, 27.683528 ], [ 9.624023, 27.137368 ], [ 9.711914, 26.509905 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.363882 ], [ 9.953613, 24.936257 ], [ 10.305176, 24.377121 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.096619 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.565502 ], [ 5.679932, 19.601194 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.065430, 20.138470 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.790107 ], [ -0.878906, 22.360236 ], [ -0.878906, 35.764343 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.969115 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.606709 ], [ 3.164062, 36.782892 ], [ 4.812012, 36.862043 ], [ 5.317383, 36.712467 ], [ 6.262207, 37.107765 ], [ 7.327881, 37.116526 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.338379, 41.640078 ], [ 9.228516, 41.376809 ], [ 8.778076, 41.582580 ], [ 8.756104, 41.640078 ], [ 9.338379, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.491699, 33.137551 ], [ 12.667236, 32.796510 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.713355 ], [ 15.249023, 32.268555 ], [ 15.710449, 31.372399 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.760719 ], [ 19.083252, 30.268556 ], [ 19.577637, 30.524413 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.137939, 32.240683 ], [ 20.852051, 32.704111 ], [ 21.544189, 32.842674 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.609619, 32.184911 ], [ 23.928223, 32.017392 ], [ 24.916992, 31.896214 ], [ 25.169678, 31.569175 ], [ 24.807129, 31.090574 ], [ 24.960938, 30.666266 ], [ 24.697266, 30.040566 ], [ 25.004883, 29.238477 ], [ 25.004883, 20.004322 ], [ 23.851318, 20.004322 ], [ 23.840332, 19.580493 ], [ 19.852295, 21.493964 ], [ 15.864258, 23.412847 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.039298 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.096619 ], [ 10.766602, 24.567108 ], [ 10.305176, 24.377121 ], [ 9.953613, 24.936257 ], [ 9.909668, 25.363882 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.509905 ], [ 9.624023, 27.137368 ], [ 9.755859, 27.683528 ], [ 9.678955, 28.139816 ], [ 9.854736, 28.960089 ], [ 9.810791, 29.420460 ], [ 9.481201, 30.306503 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.958769 ], [ 9.953613, 31.372399 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.436768, 32.370683 ], [ 11.491699, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.701917 ], [ 24.246826, 35.371135 ], [ 25.026855, 35.424868 ], [ 25.773926, 35.353216 ], [ 25.740967, 35.182788 ], [ 26.290283, 35.299435 ], [ 26.169434, 35.003003 ], [ 24.730225, 34.921971 ], [ 24.730225, 35.083956 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.701917 ] ] ], [ [ [ 26.466064, 41.640078 ], [ 26.608887, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.411621, 40.128491 ], [ 23.895264, 39.960280 ], [ 23.345947, 39.960280 ], [ 22.818604, 40.472024 ], [ 22.620850, 40.254377 ], [ 22.851562, 39.656456 ], [ 23.345947, 39.189691 ], [ 22.972412, 38.967951 ], [ 23.532715, 38.513788 ], [ 24.027100, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.159180, 36.421282 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.844461 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.307181 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.622615 ], [ 20.610352, 40.111689 ], [ 20.676270, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.763916, 40.979898 ], [ 22.060547, 41.153842 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.640078 ], [ 26.466064, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.232655 ], [ 3.614502, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.801270, 10.736175 ], [ 3.603516, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.134639 ], [ 2.724609, 8.504970 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.867676, 6.140555 ], [ 1.614990, 6.828261 ], [ 1.669922, 9.123792 ], [ 1.461182, 9.329831 ], [ 1.428223, 9.828154 ], [ 0.769043, 10.466206 ], [ 0.900879, 10.995120 ], [ 1.241455, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.493896, 12.232655 ], [ 2.845459, 12.232655 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.640078 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.236511 ], [ 24.488525, 41.582580 ], [ 23.697510, 41.310824 ], [ 22.950439, 41.335576 ], [ 22.917480, 41.640078 ], [ 26.114502, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.448975, 13.496473 ], [ 6.822510, 13.111580 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.019775, 12.822514 ], [ 9.525146, 12.854649 ], [ 10.118408, 13.272026 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.325485 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.592600 ], [ 13.315430, 13.560562 ], [ 13.996582, 12.458033 ], [ 14.183350, 12.479487 ], [ 14.578857, 12.082296 ], [ 14.468994, 11.899604 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.172607, 9.644077 ], [ 12.952881, 9.416548 ], [ 12.755127, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.798079 ], [ 11.843262, 7.395153 ], [ 11.744385, 6.980954 ], [ 11.063232, 6.642783 ], [ 10.491943, 7.057282 ], [ 10.118408, 7.035476 ], [ 9.525146, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.503418, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.086182, 4.466904 ], [ 6.701660, 4.236856 ], [ 5.899658, 4.258768 ], [ 5.361328, 4.882994 ], [ 5.031738, 5.615986 ], [ 4.328613, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.134639 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.603516, 10.336536 ], [ 3.801270, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.951029 ], [ 4.108887, 13.528519 ], [ 4.372559, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 44.967041, 41.244772 ], [ 43.582764, 41.095912 ], [ 42.615967, 41.582580 ], [ 41.550293, 41.533254 ], [ 41.594238, 41.640078 ], [ 45.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.054628 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.116526 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.430122 ], [ 8.371582, 35.478565 ], [ 8.140869, 34.651285 ], [ 7.525635, 34.098159 ], [ 7.613525, 33.339707 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.101190 ], [ 9.481201, 30.306503 ], [ 9.810791, 29.420460 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.139816 ], [ 9.755859, 27.683528 ], [ 9.624023, 27.137368 ], [ 9.711914, 26.509905 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.363882 ], [ 9.953613, 24.936257 ], [ 10.305176, 24.377121 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.096619 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.565502 ], [ 5.679932, 19.601194 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.065430, 20.138470 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.790107 ], [ -0.878906, 22.360236 ], [ -0.878906, 35.764343 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.969115 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.606709 ], [ 3.164062, 36.782892 ], [ 4.812012, 36.862043 ], [ 5.317383, 36.712467 ], [ 6.262207, 37.107765 ], [ 7.327881, 37.116526 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.557283 ], [ 18.457031, 3.502455 ], [ 18.391113, 2.899153 ], [ 18.094482, 2.361392 ], [ 17.896729, 1.746556 ], [ 17.775879, 0.856902 ], [ 17.830811, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.054932 ], [ 17.644043, -0.428463 ], [ 17.523193, -0.747049 ], [ 17.336426, -0.878872 ], [ 14.359131, -0.878872 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.029541, 1.395126 ], [ 13.282471, 1.318243 ], [ 13.007812, 1.834403 ], [ 13.073730, 2.262595 ], [ 14.337158, 2.229662 ], [ 15.150146, 1.966167 ], [ 15.941162, 1.724593 ], [ 16.018066, 2.262595 ], [ 16.534424, 3.195364 ], [ 17.127686, 3.732708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.523682, 38.229550 ], [ 15.161133, 37.439974 ], [ 15.314941, 37.134045 ], [ 15.095215, 36.624345 ], [ 14.337158, 36.993778 ], [ 13.831787, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.125915 ], [ 13.743896, 38.030786 ], [ 15.523682, 38.229550 ] ] ], [ [ [ 16.029053, 41.640078 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.880295 ], [ 18.380127, 40.354917 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.808536 ], [ 17.742920, 40.279526 ], [ 16.875000, 40.438586 ], [ 16.446533, 39.791655 ], [ 17.171631, 39.427707 ], [ 17.050781, 38.899583 ], [ 16.633301, 38.839708 ], [ 16.105957, 37.987504 ], [ 15.688477, 37.909534 ], [ 15.688477, 38.212288 ], [ 15.897217, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.721436, 39.546412 ], [ 15.413818, 40.044438 ], [ 14.996338, 40.170479 ], [ 14.699707, 40.605612 ], [ 14.062500, 40.788860 ], [ 13.853760, 40.979898 ], [ 13.623047, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.216797, 41.640078 ], [ 16.029053, 41.640078 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.667969, 39.181175 ], [ 9.217529, 39.240763 ], [ 8.811035, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.393555, 40.380028 ], [ 8.162842, 40.946714 ], [ 8.712158, 40.896906 ], [ 8.843994, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.387451, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.530273, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.870850, 35.092945 ], [ 33.969727, 35.056980 ], [ 34.002686, 34.976002 ], [ 32.980957, 34.569906 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.101934 ], [ 32.728271, 35.137879 ], [ 32.915039, 35.083956 ], [ 33.189697, 35.173808 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.900879, 10.995120 ], [ 0.769043, 10.466206 ], [ 1.428223, 9.828154 ], [ 1.461182, 9.329831 ], [ 1.669922, 9.123792 ], [ 1.614990, 6.828261 ], [ 1.867676, 6.140555 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.416942 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.678779 ], [ 0.362549, 9.459899 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.002197, 34.642247 ], [ 36.452637, 34.597042 ], [ 36.606445, 34.198173 ], [ 36.068115, 33.824794 ], [ 35.826416, 33.275435 ], [ 35.551758, 33.266250 ], [ 35.463867, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.485840, 33.906896 ], [ 36.002197, 34.642247 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.459899 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.416942 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.342583 ], [ -0.878906, 5.112830 ], [ -0.878906, 10.951978 ], [ -0.758057, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.244772 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.878906, 40.204050 ], [ 45.615234, 39.901309 ], [ 45.878906, 39.724089 ], [ 45.878906, 39.113014 ], [ 45.736084, 39.317300 ], [ 45.736084, 39.470125 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.002372 ], [ 43.659668, 40.254377 ], [ 43.747559, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.095912 ], [ 44.967041, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.854649 ], [ 14.897461, 12.221918 ], [ 14.963379, 11.555380 ], [ 14.919434, 10.887254 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.622803, 9.925566 ], [ 14.172363, 10.022948 ], [ 13.952637, 9.546583 ], [ 14.545898, 8.961045 ], [ 14.985352, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.689217 ], [ 15.281982, 7.416942 ], [ 14.776611, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.025283 ], [ 14.479980, 4.729727 ], [ 14.952393, 4.214943 ], [ 15.040283, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.008870 ], [ 15.908203, 2.558963 ], [ 16.018066, 2.262595 ], [ 15.941162, 1.724593 ], [ 15.150146, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.262595 ], [ 12.952881, 2.317483 ], [ 12.359619, 2.196727 ], [ 11.755371, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.942871, 3.908099 ], [ 8.745117, 4.357366 ], [ 8.492432, 4.499762 ], [ 8.503418, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.525146, 6.457234 ], [ 10.118408, 7.035476 ], [ 10.491943, 7.057282 ], [ 11.063232, 6.642783 ], [ 11.744385, 6.980954 ], [ 11.843262, 7.395153 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.309341 ], [ 12.755127, 8.722218 ], [ 12.952881, 9.416548 ], [ 13.172607, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.468994, 11.899604 ], [ 14.578857, 12.082296 ], [ 14.183350, 12.479487 ], [ 14.216309, 12.801088 ], [ 14.490967, 12.854649 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.826416, 33.275435 ], [ 35.837402, 32.870360 ], [ 35.705566, 32.713355 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.189209, 32.528289 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.615966 ], [ 34.925537, 31.353637 ], [ 35.397949, 31.484893 ], [ 35.419922, 31.099982 ], [ 34.925537, 29.496988 ], [ 34.266357, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.958496, 32.824211 ], [ 35.101318, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.463867, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.826416, 33.275435 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.675147 ], [ 33.903809, 35.245619 ], [ 33.969727, 35.056980 ], [ 33.870850, 35.092945 ], [ 33.673096, 35.021000 ], [ 33.530273, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.387451, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.083956 ], [ 32.728271, 35.137879 ], [ 32.805176, 35.146863 ], [ 32.947998, 35.389050 ], [ 33.662109, 35.371135 ], [ 34.573975, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.870117, 22.004175 ], [ 37.188721, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.485352, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.424029 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.951724 ], [ 36.749268, 16.288506 ], [ 36.320801, 14.817371 ], [ 36.430664, 14.424040 ], [ 36.265869, 13.560562 ], [ 35.859375, 12.576010 ], [ 35.255127, 12.082296 ], [ 34.826660, 11.318481 ], [ 34.727783, 10.908830 ], [ 34.255371, 10.628216 ], [ 33.958740, 9.579084 ], [ 33.958740, 9.459899 ], [ 33.826904, 9.481572 ], [ 33.837891, 9.979671 ], [ 33.717041, 10.325728 ], [ 33.211670, 10.725381 ], [ 33.090820, 11.436955 ], [ 33.211670, 12.178965 ], [ 32.739258, 12.243392 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.354980, 9.806504 ], [ 30.838623, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.619141, 10.087854 ], [ 29.520264, 9.795678 ], [ 29.003906, 9.600750 ], [ 28.970947, 9.394871 ], [ 27.971191, 9.394871 ], [ 27.828369, 9.600750 ], [ 27.114258, 9.633246 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.131117 ], [ 25.795898, 10.412183 ], [ 25.070801, 10.271681 ], [ 24.796143, 9.806504 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.807373, 8.667918 ], [ 23.455811, 8.950193 ], [ 23.389893, 9.264779 ], [ 23.554688, 9.676569 ], [ 23.554688, 10.087854 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.684514 ], [ 22.500000, 12.264864 ], [ 22.291260, 12.651058 ], [ 21.939697, 12.586732 ], [ 22.038574, 12.951029 ], [ 22.291260, 13.368243 ], [ 22.181396, 13.784737 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.027344, 15.675932 ], [ 23.884277, 15.612456 ], [ 23.840332, 19.580493 ], [ 23.851318, 20.004322 ], [ 25.004883, 20.004322 ], [ 25.004883, 22.004175 ], [ 36.870117, 22.004175 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.352295, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.385498, 35.630512 ], [ 41.000977, 34.415973 ], [ 38.792725, 33.376412 ], [ 36.837158, 32.314991 ], [ 35.705566, 32.713355 ], [ 35.837402, 32.870360 ], [ 35.826416, 33.275435 ], [ 36.068115, 33.824794 ], [ 36.606445, 34.198173 ], [ 36.452637, 34.597042 ], [ 36.002197, 34.642247 ], [ 35.903320, 35.406961 ], [ 36.145020, 35.817813 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.067871, 36.624345 ], [ 38.166504, 36.897194 ], [ 38.704834, 36.712467 ], [ 39.517822, 36.712467 ], [ 40.671387, 37.090240 ], [ 41.209717, 37.072710 ], [ 42.352295, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.955399 ], [ 38.518066, 14.509144 ], [ 39.100342, 14.743011 ], [ 39.342041, 14.530415 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.115267 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.543840 ], [ 42.000732, 12.103781 ], [ 41.660156, 11.630716 ], [ 41.737061, 11.350797 ], [ 41.759033, 11.049038 ], [ 42.319336, 11.038255 ], [ 42.550049, 11.102947 ], [ 42.780762, 10.930405 ], [ 42.561035, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.297119, 9.535749 ], [ 43.681641, 9.188870 ], [ 45.000000, 8.700499 ], [ 45.878906, 8.385431 ], [ 45.878906, 5.976680 ], [ 45.000000, 5.036227 ], [ 44.967041, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.247812 ], [ 42.132568, 4.236856 ], [ 41.857910, 3.919060 ], [ 41.176758, 3.919060 ], [ 40.770264, 4.258768 ], [ 39.858398, 3.842332 ], [ 39.561768, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.671875, 3.612107 ], [ 38.441162, 3.590178 ], [ 38.122559, 3.601142 ], [ 36.859131, 4.444997 ], [ 36.156006, 4.444997 ], [ 35.815430, 4.773521 ], [ 35.815430, 5.342583 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.255371, 6.828261 ], [ 34.079590, 7.220800 ], [ 33.563232, 7.710992 ], [ 32.958984, 7.787194 ], [ 33.299561, 8.352823 ], [ 33.826904, 8.374562 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.579084 ], [ 34.255371, 10.628216 ], [ 34.727783, 10.908830 ], [ 34.826660, 11.318481 ], [ 35.255127, 12.082296 ], [ 35.859375, 12.576010 ], [ 36.265869, 13.560562 ], [ 36.430664, 14.424040 ], [ 37.595215, 14.211139 ], [ 37.902832, 14.955399 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.189209, 32.528289 ], [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.397949, 31.484893 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.189209, 32.528289 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.319092, 12.393659 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.458491 ], [ 42.780762, 10.930405 ], [ 42.550049, 11.102947 ], [ 42.319336, 11.038255 ], [ 41.759033, 11.049038 ], [ 41.737061, 11.350797 ], [ 41.660156, 11.630716 ], [ 42.000732, 12.103781 ], [ 42.352295, 12.543840 ], [ 42.780762, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.412847 ], [ 19.852295, 21.493964 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.027344, 15.675932 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.784737 ], [ 22.291260, 13.368243 ], [ 22.038574, 12.951029 ], [ 21.939697, 12.586732 ], [ 22.291260, 12.651058 ], [ 22.500000, 12.264864 ], [ 22.510986, 11.684514 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.146066 ], [ 22.236328, 10.973550 ], [ 21.719971, 10.563422 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.069551 ], [ 18.808594, 8.982749 ], [ 18.907471, 8.635334 ], [ 18.391113, 8.276727 ], [ 17.962646, 7.896030 ], [ 16.710205, 7.504089 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.281982, 7.416942 ], [ 15.435791, 7.689217 ], [ 15.117188, 8.385431 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.961045 ], [ 13.952637, 9.546583 ], [ 14.172363, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.919434, 10.887254 ], [ 14.963379, 11.555380 ], [ 14.897461, 12.221918 ], [ 14.490967, 12.854649 ], [ 14.600830, 13.325485 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.303955, 17.926476 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.725291 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.867318 ], [ 15.864258, 23.412847 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.736084, 39.470125 ], [ 45.736084, 39.317300 ], [ 45.878906, 39.113014 ], [ 45.878906, 38.788345 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.878906, 40.204050 ], [ 45.878906, 39.724089 ], [ 45.615234, 39.901309 ], [ 45.878906, 40.204050 ] ] ], [ [ [ 45.878906, 40.229218 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 40.229218 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 34.903953 ], [ 45.878906, 33.330528 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.903953 ] ] ], [ [ [ 45.878906, 35.764343 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.230957, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.791260, 39.715638 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 45.878906, 38.788345 ], [ 45.878906, 35.764343 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.157012 ], [ 40.396729, 31.886887 ], [ 41.890869, 31.194008 ], [ 44.714355, 29.180941 ], [ 45.000000, 29.161756 ], [ 45.878906, 29.132970 ], [ 45.878906, 17.287709 ], [ 45.395508, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.424029 ], [ 44.066162, 17.413546 ], [ 43.791504, 17.319176 ], [ 43.385010, 17.581194 ], [ 43.110352, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.351768 ], [ 42.648926, 16.772987 ], [ 42.352295, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.759033, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.803467, 20.334326 ], [ 39.144287, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.583583 ], [ 38.496094, 23.684774 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.568877 ], [ 35.134277, 28.062286 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.603814 ], [ 34.837646, 28.960089 ], [ 34.958496, 29.353452 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.507324, 30.002517 ], [ 37.672119, 30.334954 ], [ 38.001709, 30.505484 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.008076 ], [ 39.199219, 32.157012 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.755371, 2.328460 ], [ 12.359619, 2.196727 ], [ 12.952881, 2.317483 ], [ 13.073730, 2.262595 ], [ 13.007812, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.029541, 1.395126 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.359131, -0.878872 ], [ 8.822021, -0.878872 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.294434, 0.263671 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.054628 ], [ 11.271973, 2.262595 ], [ 11.755371, 2.328460 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.458491 ], [ 43.472900, 11.275387 ], [ 43.670654, 10.865676 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.541821 ], [ 45.560303, 10.692996 ], [ 45.878906, 10.736175 ], [ 45.878906, 8.385431 ], [ 45.000000, 8.700499 ], [ 43.681641, 9.188870 ], [ 43.297119, 9.535749 ], [ 42.923584, 10.022948 ], [ 42.561035, 10.574222 ], [ 42.780762, 10.930405 ], [ 43.143311, 11.458491 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.247812 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.911267 ], [ 34.672852, 1.175455 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.878872 ], [ 29.586182, -0.878872 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.208740 ], [ 29.838867, 0.000000 ], [ 29.871826, 0.593251 ], [ 30.091553, 1.065612 ], [ 30.465088, 1.581830 ], [ 30.849609, 1.845384 ], [ 31.179199, 2.207705 ], [ 30.772705, 2.339438 ], [ 30.838623, 3.513421 ], [ 31.245117, 3.776559 ], [ 31.882324, 3.557283 ], [ 32.684326, 3.787522 ], [ 33.387451, 3.787522 ], [ 34.002686, 4.247812 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.773521 ], [ 36.156006, 4.444997 ], [ 36.859131, 4.444997 ], [ 38.122559, 3.601142 ], [ 38.441162, 3.590178 ], [ 38.671875, 3.612107 ], [ 38.891602, 3.502455 ], [ 39.561768, 3.425692 ], [ 39.858398, 3.842332 ], [ 40.770264, 4.258768 ], [ 41.176758, 3.919060 ], [ 41.857910, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.011963, -0.878872 ], [ 33.903809, -0.878872 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.672852, 1.175455 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.052754 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.247812 ], [ 35.299072, 5.506640 ] ] ] } } ] } ] } , @@ -570,34 +564,34 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 54.572062 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 1.680908, 52.736292 ], [ 1.560059, 52.099757 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.778155 ], [ -0.878906, 50.757310 ], [ -0.878906, 54.572062 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.710449, 66.861082 ], [ 15.391846, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.557129, 64.788168 ], [ 13.919678, 64.444372 ], [ 13.568115, 64.048171 ], [ 12.579346, 64.067396 ], [ 11.931152, 63.129538 ], [ 11.997070, 61.799093 ], [ 12.634277, 61.291349 ], [ 12.304688, 60.119619 ], [ 11.469727, 59.433903 ], [ 11.030273, 58.853542 ], [ 10.360107, 59.467408 ], [ 8.382568, 58.315260 ], [ 7.053223, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.306396, 59.662192 ], [ 4.987793, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.558350, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.359619, 65.879215 ], [ 13.128662, 66.513260 ], [ 13.557129, 66.861082 ], [ 15.710449, 66.861082 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.861082 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.394761 ], [ 23.906250, 66.009086 ], [ 22.181396, 65.721594 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.852783, 62.749696 ], [ 17.116699, 61.338809 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.863770, 58.955674 ], [ 16.831055, 58.722599 ], [ 16.446533, 57.040730 ], [ 15.875244, 56.102683 ], [ 14.666748, 56.200593 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.360381 ], [ 12.623291, 56.304349 ], [ 11.788330, 57.439037 ], [ 11.030273, 58.853542 ], [ 11.469727, 59.433903 ], [ 12.304688, 60.119619 ], [ 12.634277, 61.291349 ], [ 11.997070, 61.799093 ], [ 11.931152, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.048171 ], [ 13.919678, 64.444372 ], [ 13.557129, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.391846, 66.513260 ], [ 15.710449, 66.861082 ], [ 23.554688, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.976807, 51.474540 ], [ 5.603027, 51.034486 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.127622 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.801025, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.592529, 50.380502 ], [ 3.120117, 50.778155 ], [ 2.658691, 50.798991 ], [ 2.515869, 51.151786 ], [ 3.317871, 51.344339 ], [ 4.042969, 51.268789 ], [ 4.976807, 51.474540 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.240234, 49.901711 ], [ 6.185303, 49.460984 ], [ 5.899658, 49.439557 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.127622 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.393311, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.376809 ], [ 8.778076, 41.582580 ], [ 8.547363, 42.252918 ], [ 8.745117, 42.625876 ], [ 9.393311, 43.012681 ] ] ], [ [ [ 2.515869, 51.151786 ], [ 2.658691, 50.798991 ], [ 3.120117, 50.778155 ], [ 3.592529, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.899658, 49.439557 ], [ 6.185303, 49.460984 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.470703, 47.620975 ], [ 7.196045, 47.450380 ], [ 6.734619, 47.539455 ], [ 6.767578, 47.286682 ], [ 6.042480, 46.724800 ], [ 6.020508, 46.271037 ], [ 6.503906, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.706179 ], [ 7.097168, 45.336702 ], [ 6.745605, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.691708 ], [ 6.525879, 43.125043 ], [ 4.559326, 43.397065 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.823730, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.382373 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.944584 ], [ 2.515869, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.680183 ], [ 18.698730, 54.438103 ], [ 19.665527, 54.425322 ], [ 20.895996, 54.310114 ], [ 22.730713, 54.329338 ], [ 23.247070, 54.220285 ], [ 23.488770, 53.910810 ], [ 23.532715, 53.468431 ], [ 23.807373, 53.087426 ], [ 23.796387, 52.689702 ], [ 23.203125, 52.489470 ], [ 23.510742, 52.025459 ], [ 23.521729, 51.577070 ], [ 24.027100, 50.708634 ], [ 23.928223, 50.422519 ], [ 23.422852, 50.310392 ], [ 22.521973, 49.475263 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.610107, 49.468124 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.830322, 49.217597 ], [ 19.324951, 49.575102 ], [ 18.907471, 49.432413 ], [ 18.391113, 49.986552 ], [ 17.644043, 50.050085 ], [ 17.556152, 50.359480 ], [ 16.864014, 50.471491 ], [ 16.721191, 50.219095 ], [ 16.171875, 50.422519 ], [ 16.237793, 50.694718 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.103522 ], [ 14.611816, 51.747439 ], [ 14.688721, 52.093008 ], [ 14.436035, 52.623060 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.245495 ], [ 14.117432, 53.755207 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.851315 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.204834, 46.852678 ], [ 16.369629, 46.837650 ], [ 16.567383, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.325928, 45.729191 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.414062, 45.467836 ], [ 13.710938, 45.498647 ], [ 13.941650, 45.590978 ], [ 13.699951, 46.019853 ], [ 13.809814, 46.505954 ], [ 14.633789, 46.430285 ], [ 15.139160, 46.656977 ], [ 16.007080, 46.687131 ], [ 16.204834, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 50.999929 ], [ 15.018311, 51.103522 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.694718 ], [ 16.171875, 50.422519 ], [ 16.721191, 50.219095 ], [ 16.864014, 50.471491 ], [ 17.556152, 50.359480 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.986552 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.317961 ], [ 18.171387, 49.274973 ], [ 18.105469, 49.045070 ], [ 17.918701, 48.994636 ], [ 17.885742, 48.900838 ], [ 17.545166, 48.799627 ], [ 17.105713, 48.814099 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.037868 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.552978 ], [ 13.601074, 48.879167 ], [ 13.029785, 49.303636 ], [ 12.524414, 49.546598 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.923813 ], [ 14.304199, 51.117317 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.324951, 49.575102 ], [ 19.830322, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.610107, 49.468124 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.421910 ], [ 21.873779, 48.319734 ], [ 20.797119, 48.625647 ], [ 20.478516, 48.560250 ], [ 20.236816, 48.327039 ], [ 19.764404, 48.202710 ], [ 19.665527, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.698730, 47.879513 ], [ 17.852783, 47.761484 ], [ 17.490234, 47.864774 ], [ 16.984863, 48.122101 ], [ 16.875000, 48.472921 ], [ 17.105713, 48.814099 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.900838 ], [ 17.918701, 48.994636 ], [ 18.105469, 49.045070 ], [ 18.171387, 49.274973 ], [ 18.402100, 49.317961 ], [ 18.555908, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.432413 ], [ 19.324951, 49.575102 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.505954 ], [ 16.885986, 46.377254 ], [ 17.633057, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.905300 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.863656 ], [ 18.555908, 45.081279 ], [ 17.863770, 45.065762 ], [ 17.006836, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.003651 ], [ 15.963135, 45.236218 ], [ 15.754395, 44.816916 ], [ 16.237793, 44.347422 ], [ 16.457520, 44.040219 ], [ 16.918945, 43.667872 ], [ 17.292480, 43.444943 ], [ 17.677002, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.512207, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.018066, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.380859, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.073521 ], [ 14.260254, 45.236218 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.677979, 45.483244 ], [ 13.710938, 45.498647 ], [ 14.414062, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.325928, 45.729191 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.567383, 46.505954 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.215088, 43.524655 ], [ 19.478760, 43.349150 ], [ 19.632568, 43.213183 ], [ 19.962158, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.072021, 42.585444 ], [ 19.797363, 42.496403 ], [ 19.742432, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.951320 ], [ 18.885498, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.709717, 43.197167 ], [ 19.028320, 43.428988 ], [ 19.215088, 43.524655 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 46.172223 ], [ 20.214844, 46.126556 ], [ 20.764160, 45.736860 ], [ 20.874023, 45.413876 ], [ 21.478271, 45.182037 ], [ 21.566162, 44.770137 ], [ 22.148438, 44.480830 ], [ 22.456055, 44.699898 ], [ 22.708740, 44.574817 ], [ 22.478027, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.609863, 42.900113 ], [ 22.434082, 42.577355 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.317939 ], [ 21.917725, 42.301690 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.317939 ], [ 21.665039, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.674359 ], [ 21.434326, 42.859860 ], [ 21.269531, 42.908160 ], [ 21.148682, 43.068888 ], [ 20.961914, 43.133061 ], [ 20.819092, 43.269206 ], [ 20.632324, 43.213183 ], [ 20.500488, 42.884015 ], [ 20.258789, 42.811522 ], [ 20.335693, 42.900113 ], [ 19.962158, 43.109004 ], [ 19.632568, 43.213183 ], [ 19.478760, 43.349150 ], [ 19.215088, 43.524655 ], [ 19.456787, 43.564472 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.863656 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.905300 ], [ 19.599609, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.742432, 42.690511 ], [ 19.797363, 42.496403 ], [ 20.072021, 42.585444 ], [ 20.280762, 42.317939 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.853196 ], [ 20.467529, 41.516804 ], [ 20.610352, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.838749 ], [ 20.994873, 40.580585 ], [ 20.676270, 40.438586 ], [ 20.654297, 40.313043 ], [ 19.390869, 40.313043 ], [ 19.313965, 40.730608 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.544678, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.742432, 42.690511 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.767840 ], [ 34.145508, 51.563412 ], [ 34.222412, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.771208 ], [ 35.354004, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.397461, 50.380502 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.922935 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.231991 ], [ 39.737549, 47.901614 ], [ 38.770752, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.100045 ], [ 37.430420, 47.025206 ], [ 36.760254, 46.702202 ], [ 35.826416, 46.649436 ], [ 34.958496, 46.271037 ], [ 35.024414, 45.652448 ], [ 35.507812, 45.406164 ], [ 36.529541, 45.467836 ], [ 36.331787, 45.112300 ], [ 35.244141, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.552246, 45.034715 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.739502, 46.331758 ], [ 31.673584, 46.709736 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.035109 ], [ 29.608154, 45.290347 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.234863, 45.490946 ], [ 28.487549, 45.598666 ], [ 28.663330, 45.943511 ], [ 28.937988, 46.255847 ], [ 28.861084, 46.437857 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.377254 ], [ 29.761963, 46.346928 ], [ 30.025635, 46.422713 ], [ 29.838867, 46.528635 ], [ 29.904785, 46.672056 ], [ 29.564209, 46.927759 ], [ 29.410400, 47.346267 ], [ 29.047852, 47.509780 ], [ 29.124756, 47.850031 ], [ 28.674316, 48.114767 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.465637 ], [ 26.861572, 48.370848 ], [ 26.619873, 48.217353 ], [ 26.202393, 48.217353 ], [ 25.949707, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.763428, 47.982568 ], [ 23.137207, 48.092757 ], [ 22.708740, 47.879513 ], [ 22.642822, 48.151428 ], [ 22.082520, 48.421910 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.521973, 49.475263 ], [ 23.422852, 50.310392 ], [ 23.928223, 50.422519 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.577070 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.890054 ], [ 25.323486, 51.910391 ], [ 26.334229, 51.828988 ], [ 27.454834, 51.590723 ], [ 28.245850, 51.570241 ], [ 28.619385, 51.426614 ], [ 28.992920, 51.604372 ], [ 29.256592, 51.364921 ], [ 30.157471, 51.412912 ], [ 30.552979, 51.316881 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.038977 ], [ 31.783447, 52.099757 ], [ 32.156982, 52.059246 ], [ 32.409668, 52.288323 ], [ 32.717285, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.472989 ], [ 28.135986, 59.299552 ], [ 27.421875, 58.722599 ], [ 27.718506, 57.792089 ], [ 27.290039, 57.474497 ], [ 26.466064, 57.474497 ], [ 25.598145, 57.844751 ], [ 25.169678, 57.967331 ], [ 24.312744, 57.792089 ], [ 24.433594, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.187185 ], [ 24.609375, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.608887, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.180908, 40.313043 ], [ 22.983398, 40.313043 ], [ 22.818604, 40.472024 ], [ 22.675781, 40.313043 ], [ 20.654297, 40.313043 ], [ 20.676270, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.763916, 40.979898 ], [ 22.060547, 41.153842 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.828642 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.179932, 56.170023 ], [ 29.234619, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.788929 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.761719, 54.813348 ], [ 31.387939, 54.156001 ], [ 31.794434, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.409668, 53.618579 ], [ 32.695312, 53.350551 ], [ 32.299805, 53.133590 ], [ 31.497803, 53.166534 ], [ 31.300049, 53.074228 ], [ 31.541748, 52.742943 ], [ 31.783447, 52.099757 ], [ 30.926514, 52.038977 ], [ 30.618896, 51.822198 ], [ 30.552979, 51.316881 ], [ 30.157471, 51.412912 ], [ 29.256592, 51.364921 ], [ 28.992920, 51.604372 ], [ 28.619385, 51.426614 ], [ 28.245850, 51.570241 ], [ 27.454834, 51.590723 ], [ 26.334229, 51.828988 ], [ 25.323486, 51.910391 ], [ 24.554443, 51.890054 ], [ 24.005127, 51.618017 ], [ 23.521729, 51.577070 ], [ 23.510742, 52.025459 ], [ 23.203125, 52.489470 ], [ 23.796387, 52.689702 ], [ 23.807373, 53.087426 ], [ 23.532715, 53.468431 ], [ 23.488770, 53.910810 ], [ 24.455566, 53.904338 ], [ 25.532227, 54.284469 ], [ 25.762939, 54.844990 ], [ 26.586914, 55.166319 ], [ 26.499023, 55.615589 ], [ 27.103271, 55.782751 ], [ 28.179932, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.334961, 43.897892 ], [ 24.104004, 43.739352 ], [ 25.565186, 43.691708 ], [ 26.070557, 43.945372 ], [ 27.246094, 44.174325 ], [ 27.971191, 43.810747 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.674561, 42.577355 ], [ 27.993164, 42.008489 ], [ 27.136230, 42.138968 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.236511 ], [ 24.488525, 41.582580 ], [ 23.697510, 41.310824 ], [ 22.950439, 41.335576 ], [ 22.884521, 42.000325 ], [ 22.379150, 42.317939 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.577355 ], [ 22.609863, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.653809, 44.237328 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.608887, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.180908, 40.313043 ], [ 22.983398, 40.313043 ], [ 22.818604, 40.472024 ], [ 22.675781, 40.313043 ], [ 20.654297, 40.313043 ], [ 20.676270, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.763916, 40.979898 ], [ 22.060547, 41.153842 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.828642 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.217353 ], [ 26.927490, 48.122101 ], [ 27.235107, 47.827908 ], [ 27.553711, 47.405785 ], [ 28.125000, 46.807580 ], [ 28.157959, 46.369674 ], [ 28.059082, 45.943511 ], [ 28.234863, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.608154, 45.290347 ], [ 29.630127, 45.034715 ], [ 29.146729, 44.816916 ], [ 28.839111, 44.910359 ], [ 28.553467, 43.707594 ], [ 27.971191, 43.810747 ], [ 27.246094, 44.174325 ], [ 26.070557, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.104004, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.478027, 44.410240 ], [ 22.708740, 44.574817 ], [ 22.456055, 44.699898 ], [ 22.148438, 44.480830 ], [ 21.566162, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.413876 ], [ 20.764160, 45.736860 ], [ 20.214844, 46.126556 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.104492, 47.672786 ], [ 22.708740, 47.879513 ], [ 23.137207, 48.092757 ], [ 23.763428, 47.982568 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.949707, 47.989922 ], [ 26.202393, 48.217353 ], [ 26.619873, 48.217353 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.465637 ], [ 28.256836, 48.158757 ], [ 28.674316, 48.114767 ], [ 29.124756, 47.850031 ], [ 29.047852, 47.509780 ], [ 29.410400, 47.346267 ], [ 29.564209, 46.927759 ], [ 29.904785, 46.672056 ], [ 29.838867, 46.528635 ], [ 30.025635, 46.422713 ], [ 29.761963, 46.346928 ], [ 29.168701, 46.377254 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.437857 ], [ 28.937988, 46.255847 ], [ 28.663330, 45.943511 ], [ 28.487549, 45.598666 ], [ 28.234863, 45.490946 ], [ 28.059082, 45.943511 ], [ 28.157959, 46.369674 ], [ 28.125000, 46.807580 ], [ 27.553711, 47.405785 ], [ 27.235107, 47.827908 ], [ 26.927490, 48.122101 ], [ 26.619873, 48.217353 ], [ 26.861572, 48.370848 ], [ 27.520752, 48.465637 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.556510 ], [ 40.924072, 43.381098 ], [ 42.396240, 43.221190 ], [ 43.758545, 42.738944 ], [ 43.934326, 42.553080 ], [ 44.538574, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.472412, 42.504503 ], [ 45.780029, 42.090070 ], [ 45.878906, 42.057450 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.244772 ], [ 43.582764, 41.095912 ], [ 42.615967, 41.582580 ], [ 41.550293, 41.533254 ], [ 41.704102, 41.959490 ], [ 41.451416, 42.642041 ], [ 40.880127, 43.012681 ], [ 40.319824, 43.125043 ], [ 39.957275, 43.436966 ], [ 40.078125, 43.556510 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.788818, 40.313043 ], [ 8.393555, 40.313043 ], [ 8.393555, 40.380028 ], [ 8.162842, 40.946714 ], [ 8.712158, 40.896906 ], [ 8.843994, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 12.150879, 47.115000 ], [ 12.381592, 46.769968 ], [ 13.809814, 46.505954 ], [ 13.699951, 46.019853 ], [ 13.941650, 45.590978 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.598290 ], [ 12.590332, 44.087585 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.951320 ], [ 15.930176, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.880295 ], [ 18.380127, 40.354917 ], [ 18.402100, 40.313043 ], [ 17.556152, 40.313043 ], [ 16.875000, 40.438586 ], [ 16.787109, 40.313043 ], [ 14.897461, 40.313043 ], [ 14.699707, 40.605612 ], [ 14.062500, 40.788860 ], [ 13.853760, 40.979898 ], [ 13.623047, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.705729 ], [ 11.195068, 42.358544 ], [ 10.513916, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.363133 ], [ 8.426514, 44.229457 ], [ 7.855225, 43.771094 ], [ 7.437744, 43.691708 ], [ 7.547607, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.745605, 45.026950 ], [ 7.097168, 45.336702 ], [ 6.800537, 45.706179 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.821143 ], [ 8.316650, 46.164614 ], [ 8.492432, 46.004593 ], [ 8.964844, 46.035109 ], [ 9.184570, 46.437857 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.483265 ], [ 10.447998, 46.890232 ], [ 11.052246, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.115000 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.517822, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.550293, 41.533254 ], [ 42.615967, 41.582580 ], [ 43.582764, 41.095912 ], [ 43.637695, 40.979898 ], [ 43.747559, 40.738933 ], [ 43.670654, 40.313043 ], [ 27.158203, 40.313043 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.016652 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.136230, 42.138968 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.992920, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 40.996484 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.608887, 40.313043 ], [ 26.246338, 40.313043 ], [ 26.048584, 40.613952 ], [ 26.059570, 40.822124 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.608887, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.136230, 42.138968 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 40.313043 ], [ 45.747070, 40.313043 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.244772 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ] ] ] } } ] } ] } @@ -605,6 +599,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.168945, 71.184211 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.185103 ], [ 31.102295, 69.557553 ], [ 29.399414, 69.158650 ], [ 28.597412, 69.064638 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.162746 ], [ 26.180420, 69.824471 ], [ 25.686035, 69.092100 ], [ 24.730225, 68.648556 ], [ 23.664551, 68.891231 ], [ 22.357178, 68.843700 ], [ 21.247559, 69.368703 ], [ 20.643311, 69.107777 ], [ 20.028076, 69.064638 ], [ 19.874268, 68.407268 ], [ 17.995605, 68.568414 ], [ 17.731934, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.391846, 66.513260 ], [ 15.073242, 66.160511 ], [ 12.700195, 66.160511 ], [ 13.128662, 66.513260 ], [ 14.765625, 67.809245 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.816891 ], [ 21.379395, 70.255741 ], [ 23.027344, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.984770 ], [ 28.168945, 71.184211 ] ] ], [ [ [ 19.896240, 79.335219 ], [ 20.621338, 79.171335 ], [ 21.544189, 78.956665 ], [ 19.028320, 78.562667 ], [ 18.468018, 77.825640 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.808262 ], [ 15.908203, 76.770602 ], [ 13.765869, 77.379906 ], [ 14.666748, 77.734951 ], [ 13.172607, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.931396, 79.171335 ], [ 10.766602, 79.335219 ], [ 19.896240, 79.335219 ] ] ], [ [ [ 22.884521, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.853412 ], [ 22.489014, 77.444552 ], [ 20.731201, 77.676467 ], [ 21.412354, 77.934055 ], [ 20.808105, 78.253624 ], [ 22.884521, 78.455425 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.983643, 68.616534 ], [ 23.543701, 67.937524 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.394761 ], [ 23.774414, 66.160511 ], [ 15.073242, 66.160511 ], [ 15.391846, 66.513260 ], [ 16.105957, 67.301737 ], [ 16.765137, 68.015798 ], [ 17.731934, 68.011685 ], [ 17.995605, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.028076, 69.064638 ], [ 20.643311, 69.107777 ] ] ] } } ] } ] } , @@ -629,6 +625,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.939209, -48.625647 ], [ 69.576416, -48.936935 ], [ 70.521240, -49.066668 ], [ 70.565186, -49.253465 ], [ 70.279541, -49.710273 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.939209, -48.625647 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.536133, -65.816282 ], [ 55.415039, -65.874725 ], [ 56.359863, -65.973325 ], [ 57.161865, -66.249163 ], [ 57.216797, -66.513260 ], [ 57.260742, -66.679087 ], [ 57.733154, -66.861082 ], [ 50.756836, -66.861082 ], [ 50.954590, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.249163 ], [ 52.613525, -66.053716 ], [ 53.613281, -65.897167 ], [ 54.536133, -65.816282 ] ] ], [ [ [ 87.484131, -66.861082 ], [ 87.758789, -66.513260 ], [ 87.989502, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.736572, -66.861082 ], [ 87.484131, -66.861082 ] ] ] ] } } ] } ] } , @@ -642,25 +640,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.219482, 41.640078 ], [ 46.636963, 41.178654 ], [ 46.505127, 41.062786 ], [ 45.966797, 41.120746 ], [ 45.219727, 41.409776 ], [ 44.967041, 41.244772 ], [ 44.121094, 41.153842 ], [ 44.121094, 41.640078 ], [ 46.219482, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 9.026153 ], [ 45.000000, 8.700499 ], [ 46.944580, 7.993957 ], [ 47.790527, 8.004837 ], [ 45.000000, 5.036227 ], [ 44.967041, 5.003394 ], [ 44.121094, 4.970560 ], [ 44.121094, 9.026153 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.706055, 41.640078 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.062786 ], [ 76.849365, 40.979898 ], [ 76.530762, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.363288 ], [ 73.817139, 39.892880 ], [ 73.959961, 39.656456 ], [ 73.674316, 39.427707 ], [ 71.784668, 39.283294 ], [ 70.554199, 39.605688 ], [ 69.466553, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.653076, 39.935013 ], [ 71.015625, 40.245992 ], [ 71.773682, 40.145289 ], [ 73.059082, 40.863680 ], [ 72.795410, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.516804 ], [ 70.576172, 41.640078 ], [ 78.706055, 41.640078 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.757324, 41.640078 ], [ 49.108887, 41.286062 ], [ 49.328613, 40.979898 ], [ 49.614258, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.394287, 40.254377 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.814031 ], [ 48.878174, 38.324420 ], [ 48.636475, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.065186, 39.580290 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.461644 ], [ 46.032715, 39.631077 ], [ 45.615234, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.120746 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.219482, 41.640078 ], [ 46.900635, 41.640078 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.988281, 41.409776 ], [ 48.328857, 41.640078 ], [ 48.757324, 41.640078 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.736084, 39.470125 ], [ 45.736084, 39.317300 ], [ 46.142578, 38.736946 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.602783, 25.214881 ], [ 51.394043, 24.627045 ], [ 51.108398, 24.557116 ], [ 50.811768, 24.756808 ], [ 50.745850, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 29.602118 ], [ 44.714355, 29.180941 ], [ 45.000000, 29.161756 ], [ 46.571045, 29.094577 ], [ 47.460938, 28.998532 ], [ 47.713623, 28.526622 ], [ 48.416748, 28.555576 ], [ 48.812256, 27.693256 ], [ 49.295654, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.686730 ], [ 50.207520, 26.273714 ], [ 50.108643, 25.948166 ], [ 50.240479, 25.611810 ], [ 50.526123, 25.324167 ], [ 50.657959, 24.996016 ], [ 50.811768, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.394043, 24.627045 ], [ 51.580811, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 22.998852 ], [ 55.008545, 22.492257 ], [ 55.206299, 22.705255 ], [ 55.667725, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 18.999803 ], [ 49.119873, 18.615013 ], [ 48.186035, 18.166730 ], [ 47.471924, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.424029 ], [ 44.121094, 17.413546 ], [ 44.121094, 29.602118 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.236947 ], [ 57.403564, 23.875792 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.447021, 22.664710 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.115249 ], [ 58.491211, 20.427013 ], [ 58.029785, 20.478482 ], [ 57.821045, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.238770, 18.947856 ], [ 56.612549, 18.573362 ], [ 56.513672, 18.083201 ], [ 56.282959, 17.874203 ], [ 55.656738, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.272217, 17.224758 ], [ 54.788818, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.646718 ], [ 51.998291, 18.999803 ], [ 54.997559, 20.004322 ], [ 55.667725, 22.004175 ], [ 55.206299, 22.705255 ], [ 55.239258, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.524902, 23.936055 ], [ 55.986328, 24.126702 ], [ 55.799561, 24.266997 ], [ 55.887451, 24.916331 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.391870 ], [ 56.480713, 26.313113 ], [ 56.392822, 25.898762 ], [ 56.260986, 25.710837 ], [ 56.074219, 26.056783 ], [ 56.359863, 26.391870 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.051270, 41.640078 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.269550 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.052848 ], [ 63.522949, 39.359785 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.978845 ], [ 66.522217, 37.361426 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.657732 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.107765 ], [ 64.544678, 36.315125 ], [ 63.984375, 36.004673 ], [ 63.193359, 35.853440 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.215820, 35.648369 ], [ 61.127930, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.413800 ], [ 58.436279, 37.518440 ], [ 57.326660, 38.030786 ], [ 56.623535, 38.117272 ], [ 56.184082, 37.935533 ], [ 55.513916, 37.961523 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.195331 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.950865 ], [ 53.096924, 39.291797 ], [ 53.360596, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.964844, 41.640078 ], [ 55.118408, 41.640078 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.319076 ], [ 56.997070, 41.640078 ], [ 60.051270, 41.640078 ] ] ], [ [ [ 52.888184, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.569580, 41.640078 ], [ 52.888184, 41.640078 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.042480, 10.639014 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.075684, 8.080985 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.214943 ], [ 46.560059, 2.855263 ], [ 45.560303, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.121094, 1.087581 ], [ 44.121094, 4.970560 ], [ 44.967041, 5.003394 ], [ 45.000000, 5.036227 ], [ 47.790527, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.449062 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.426187 ], [ 49.724121, 11.576907 ], [ 50.262451, 11.684514 ], [ 50.734863, 12.017830 ], [ 51.108398, 12.028576 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.449062 ], [ 48.482666, 8.841651 ], [ 47.790527, 8.004837 ], [ 46.944580, 7.993957 ], [ 45.000000, 8.700499 ], [ 44.121094, 9.026153 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.541821 ], [ 45.560303, 10.692996 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.124507 ], [ 48.021240, 11.189180 ], [ 48.383789, 11.372339 ], [ 48.944092, 11.415418 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ], [ 90.725098, 28.062286 ], [ 90.010986, 28.294707 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.207609 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.844674 ], [ 83.902588, 29.324720 ], [ 83.342285, 29.468297 ], [ 82.331543, 30.116622 ], [ 81.529541, 30.420256 ], [ 81.112061, 30.183122 ], [ 79.716797, 30.883369 ], [ 78.739014, 31.512996 ], [ 78.453369, 32.620870 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.990236 ], [ 78.815918, 33.504759 ], [ 78.914795, 34.325292 ], [ 77.838135, 35.496456 ], [ 76.190186, 35.897950 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.422526 ], [ 74.827881, 37.987504 ], [ 74.860840, 38.376115 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.427707 ], [ 73.959961, 39.656456 ], [ 73.817139, 39.892880 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.062786 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.529541, 30.420256 ], [ 82.331543, 30.116622 ], [ 83.342285, 29.468297 ], [ 83.902588, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.012207, 28.642389 ], [ 85.825195, 28.207609 ], [ 86.956787, 27.974998 ], [ 88.121338, 27.877928 ], [ 88.044434, 27.449790 ], [ 88.176270, 26.814266 ], [ 88.055420, 26.411551 ], [ 87.231445, 26.401711 ], [ 86.022949, 26.627818 ], [ 85.253906, 26.725987 ], [ 84.671631, 27.235095 ], [ 83.309326, 27.362011 ], [ 82.001953, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.090332, 28.796546 ], [ 80.474854, 29.726222 ], [ 81.112061, 30.183122 ], [ 81.529541, 30.420256 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.264779 ], [ 81.298828, 8.559294 ], [ 81.793213, 7.525873 ], [ 81.639404, 6.479067 ], [ 81.221924, 6.195168 ], [ 80.343018, 5.965754 ], [ 79.870605, 6.762806 ], [ 79.694824, 8.200616 ], [ 80.145264, 9.828154 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.294707 ], [ 90.725098, 28.062286 ], [ 90.878906, 28.062286 ], [ 90.878906, 26.833875 ], [ 90.373535, 26.873081 ], [ 90.000000, 26.784847 ], [ 89.747314, 26.716174 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.285033 ], [ 90.010986, 28.294707 ] ] ] } } ] } ] } , @@ -670,7 +662,7 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.640869, 42.875964 ], [ 76.003418, 42.988576 ], [ 77.662354, 42.964463 ], [ 79.145508, 42.859860 ], [ 79.639893, 42.496403 ], [ 80.255127, 42.350425 ], [ 80.123291, 42.122673 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.062786 ], [ 76.849365, 40.979898 ], [ 76.530762, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.363288 ], [ 74.674072, 40.313043 ], [ 72.070312, 40.313043 ], [ 73.059082, 40.863680 ], [ 72.795410, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.516804 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.191406, 42.706660 ], [ 71.839600, 42.843751 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.634033, 42.755080 ], [ 59.974365, 42.220382 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.269550 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.767334, 40.313043 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.921143, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.503662, 41.779505 ], [ 52.943115, 42.114524 ], [ 54.074707, 42.326062 ], [ 54.755859, 42.041134 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.319076 ], [ 56.931152, 41.828642 ], [ 57.788086, 42.171546 ], [ 58.634033, 42.755080 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.988281, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.328613, 40.979898 ], [ 49.614258, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.328369, 40.313043 ], [ 45.747070, 40.313043 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.244772 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.120746 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.142578, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.747803, 49.296472 ], [ 88.011475, 48.596592 ], [ 88.857422, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.285645, 47.694974 ], [ 90.878906, 46.995241 ], [ 90.878906, 46.611715 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.674072, 40.313043 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.062786 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.123291, 42.122673 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.916206 ], [ 80.870361, 43.181147 ], [ 79.969482, 44.918139 ], [ 81.947021, 45.313529 ], [ 82.463379, 45.537137 ], [ 83.177490, 47.331377 ], [ 85.166016, 47.002734 ], [ 85.715332, 47.450380 ], [ 85.770264, 48.458352 ], [ 86.594238, 48.545705 ], [ 87.363281, 49.217597 ], [ 87.747803, 49.296472 ] ] ] } } ] } @@ -709,6 +701,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.852051, 0.878872 ], [ 110.511475, 0.769020 ], [ 110.390625, 0.878872 ], [ 110.852051, 0.878872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.958008, -8.276727 ], [ 127.331543, -8.396300 ], [ 126.968994, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.090332, -9.394871 ], [ 125.068359, -9.091249 ], [ 124.969482, -8.895926 ], [ 125.090332, -8.657057 ], [ 125.947266, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.958008, -8.276727 ] ] ] } } ] } ] } , @@ -716,23 +710,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.214844, 20.097206 ], [ 110.786133, 20.076570 ], [ 111.005859, 19.694314 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.677471 ], [ 109.478760, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.362976 ], [ 109.116211, 19.818390 ], [ 110.214844, 20.097206 ] ] ], [ [ [ 126.694336, 41.640078 ], [ 126.177979, 41.104191 ], [ 125.925293, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.266357, 39.926588 ], [ 122.871094, 39.639538 ], [ 122.135010, 39.172659 ], [ 121.058350, 38.899583 ], [ 121.585693, 39.359785 ], [ 121.376953, 39.749434 ], [ 122.167969, 40.421860 ], [ 121.640625, 40.946714 ], [ 120.772705, 40.597271 ], [ 119.641113, 39.901309 ], [ 119.025879, 39.249271 ], [ 118.048096, 39.206719 ], [ 117.531738, 38.736946 ], [ 118.059082, 38.065392 ], [ 118.883057, 37.900865 ], [ 118.916016, 37.448697 ], [ 119.707031, 37.160317 ], [ 120.827637, 37.866181 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.650793 ], [ 120.640869, 36.111253 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.376412 ], [ 121.234131, 32.463426 ], [ 121.904297, 31.690782 ], [ 121.893311, 30.949347 ], [ 121.267090, 30.675715 ], [ 121.508789, 30.145127 ], [ 122.091064, 29.831114 ], [ 121.937256, 29.017748 ], [ 121.684570, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.399170, 27.049342 ], [ 119.586182, 25.740529 ], [ 118.652344, 24.547123 ], [ 117.279053, 23.624395 ], [ 115.894775, 22.786311 ], [ 114.763184, 22.664710 ], [ 114.147949, 22.228090 ], [ 113.807373, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.786133, 21.401934 ], [ 110.445557, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.632568, 21.012727 ], [ 109.863281, 21.391705 ], [ 108.522949, 21.718680 ], [ 108.050537, 21.555284 ], [ 107.039795, 21.810508 ], [ 106.567383, 22.217920 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.479980, 22.816694 ], [ 103.502197, 22.705255 ], [ 102.711182, 22.705255 ], [ 102.172852, 22.461802 ], [ 101.656494, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.271973, 21.197216 ], [ 101.184082, 21.432617 ], [ 101.151123, 21.851302 ], [ 100.415039, 21.555284 ], [ 99.986572, 21.739091 ], [ 99.239502, 22.116177 ], [ 99.536133, 22.948277 ], [ 98.898926, 23.140360 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.895883 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.918526 ], [ 98.712158, 26.745610 ], [ 98.679199, 27.508271 ], [ 98.250732, 27.751608 ], [ 97.910156, 28.333395 ], [ 97.327881, 28.265682 ], [ 96.251221, 28.410728 ], [ 96.591797, 28.835050 ], [ 96.119385, 29.449165 ], [ 95.405273, 29.027355 ], [ 94.570312, 29.276816 ], [ 93.416748, 28.642389 ], [ 92.504883, 27.897349 ], [ 91.691895, 27.771051 ], [ 91.263428, 28.042895 ], [ 90.725098, 28.062286 ], [ 90.010986, 28.294707 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.042895 ], [ 89.121094, 27.644606 ], [ 89.121094, 41.640078 ], [ 104.908447, 41.640078 ], [ 104.963379, 41.599013 ], [ 105.062256, 41.640078 ], [ 126.694336, 41.640078 ] ] ], [ [ [ 128.155518, 41.640078 ], [ 128.210449, 41.467428 ], [ 127.342529, 41.500350 ], [ 127.133789, 41.640078 ], [ 128.155518, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.121094, 26.145576 ], [ 89.351807, 26.017298 ], [ 89.835205, 25.967922 ], [ 89.923096, 25.274504 ], [ 90.000000, 25.254633 ], [ 90.867920, 25.135339 ], [ 91.801758, 25.145285 ], [ 92.373047, 24.976099 ], [ 91.911621, 24.126702 ], [ 91.472168, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.624395 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.320081 ], [ 92.307129, 21.473518 ], [ 92.373047, 20.673905 ], [ 92.087402, 21.197216 ], [ 92.021484, 21.698265 ], [ 91.834717, 22.187405 ], [ 91.417236, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.390714 ], [ 90.274658, 21.841105 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.034730 ], [ 89.703369, 21.861499 ], [ 89.417725, 21.963425 ], [ 89.121094, 22.034730 ], [ 89.121094, 26.145576 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.294707 ], [ 90.725098, 28.062286 ], [ 91.263428, 28.042895 ], [ 91.691895, 27.771051 ], [ 92.098389, 27.449790 ], [ 92.032471, 26.833875 ], [ 91.219482, 26.804461 ], [ 90.373535, 26.873081 ], [ 90.000000, 26.784847 ], [ 89.747314, 26.716174 ], [ 89.121094, 26.980829 ], [ 89.121094, 27.644606 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.285033 ], [ 90.010986, 28.294707 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.118408, 20.416717 ], [ 100.546875, 20.107523 ], [ 100.601807, 19.508020 ], [ 101.282959, 19.466592 ], [ 101.041260, 18.406655 ], [ 101.063232, 17.507867 ], [ 102.117920, 18.104087 ], [ 102.414551, 17.936929 ], [ 102.996826, 17.957832 ], [ 103.205566, 18.312811 ], [ 103.952637, 18.239786 ], [ 104.721680, 17.424029 ], [ 104.776611, 16.446622 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.721761 ], [ 105.216064, 14.275030 ], [ 104.282227, 14.413400 ], [ 102.985840, 14.221789 ], [ 102.348633, 13.389620 ], [ 102.590332, 12.189704 ], [ 101.689453, 12.651058 ], [ 100.832520, 12.629618 ], [ 100.975342, 13.410994 ], [ 100.096436, 13.410994 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.958030 ], [ 99.217529, 9.243093 ], [ 99.876709, 9.210560 ], [ 100.283203, 8.298470 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.860985 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.217012 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.340675 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.151855, 8.352823 ], [ 98.261719, 8.971897 ], [ 98.558350, 9.936388 ], [ 99.041748, 10.962764 ], [ 99.591064, 11.888853 ], [ 99.195557, 12.801088 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.827412 ], [ 98.426514, 14.626109 ], [ 98.195801, 15.125159 ], [ 98.536377, 15.305380 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.836090 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.800293, 18.625425 ], [ 98.250732, 19.704658 ], [ 98.964844, 19.756364 ], [ 99.547119, 20.190035 ], [ 100.118408, 20.416717 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.333395 ], [ 98.250732, 27.751608 ], [ 98.679199, 27.508271 ], [ 98.712158, 26.745610 ], [ 98.668213, 25.918526 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.895883 ], [ 98.657227, 24.066528 ], [ 98.898926, 23.140360 ], [ 99.536133, 22.948277 ], [ 99.239502, 22.116177 ], [ 99.986572, 21.739091 ], [ 100.415039, 21.555284 ], [ 101.151123, 21.851302 ], [ 101.184082, 21.432617 ], [ 100.327148, 20.786931 ], [ 100.118408, 20.416717 ], [ 99.547119, 20.190035 ], [ 98.964844, 19.756364 ], [ 98.250732, 19.704658 ], [ 97.800293, 18.625425 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.836090 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.305380 ], [ 98.195801, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.827412 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.801088 ], [ 99.591064, 11.888853 ], [ 99.041748, 10.962764 ], [ 98.558350, 9.936388 ], [ 98.459473, 10.671404 ], [ 98.767090, 11.436955 ], [ 98.426514, 12.028576 ], [ 98.514404, 13.122280 ], [ 98.107910, 13.635310 ], [ 97.778320, 14.838612 ], [ 97.602539, 16.098598 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.372314, 15.718239 ], [ 94.812012, 15.802825 ], [ 94.185791, 16.035255 ], [ 94.537354, 17.277219 ], [ 94.328613, 18.208480 ], [ 93.537598, 19.362976 ], [ 93.658447, 19.725342 ], [ 93.076172, 19.859727 ], [ 92.373047, 20.673905 ], [ 92.307129, 21.473518 ], [ 92.647705, 21.320081 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.065186, 22.705255 ], [ 93.284912, 23.039298 ], [ 93.328857, 24.076559 ], [ 94.108887, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.603271, 25.165173 ], [ 95.152588, 25.997550 ], [ 95.119629, 26.568877 ], [ 96.416016, 27.264396 ], [ 97.130127, 27.088473 ], [ 97.053223, 27.702984 ], [ 97.404785, 27.877928 ], [ 97.327881, 28.265682 ], [ 97.910156, 28.333395 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.567383, 22.217920 ], [ 107.039795, 21.810508 ], [ 108.050537, 21.555284 ], [ 106.710205, 20.694462 ], [ 105.886230, 19.756364 ], [ 105.666504, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.270264, 16.077486 ], [ 108.874512, 15.273587 ], [ 109.335938, 13.421681 ], [ 109.204102, 11.662996 ], [ 108.369141, 11.005904 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.161133, 8.602747 ], [ 104.798584, 9.243093 ], [ 105.073242, 9.914744 ], [ 104.337158, 10.487812 ], [ 105.205078, 10.887254 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.566144 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.200488 ], [ 107.567139, 15.199386 ], [ 107.314453, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.269665 ], [ 104.183350, 19.621892 ], [ 104.820557, 19.890723 ], [ 104.436035, 20.756114 ], [ 103.205566, 20.766387 ], [ 102.755127, 21.677848 ], [ 102.172852, 22.461802 ], [ 102.711182, 22.705255 ], [ 103.502197, 22.705255 ], [ 104.479980, 22.816694 ], [ 105.325928, 23.352343 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.461802 ], [ 102.755127, 21.677848 ], [ 103.205566, 20.766387 ], [ 104.436035, 20.756114 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.621892 ], [ 103.897705, 19.269665 ], [ 105.095215, 18.667063 ], [ 106.556396, 16.604610 ], [ 107.314453, 15.908508 ], [ 107.567139, 15.199386 ], [ 107.380371, 14.200488 ], [ 106.501465, 14.572951 ], [ 106.040039, 13.880746 ], [ 105.216064, 14.275030 ], [ 105.545654, 14.721761 ], [ 105.589600, 15.570128 ], [ 104.776611, 16.446622 ], [ 104.721680, 17.424029 ], [ 103.952637, 18.239786 ], [ 103.205566, 18.312811 ], [ 102.996826, 17.957832 ], [ 102.414551, 17.936929 ], [ 102.117920, 18.104087 ], [ 101.063232, 17.507867 ], [ 101.041260, 18.406655 ], [ 101.282959, 19.466592 ], [ 100.601807, 19.508020 ], [ 100.546875, 20.107523 ], [ 100.118408, 20.416717 ], [ 100.327148, 20.786931 ], [ 101.184082, 21.432617 ], [ 101.271973, 21.197216 ], [ 101.799316, 21.176729 ], [ 101.656494, 22.319589 ], [ 102.172852, 22.461802 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.353271, 38.608286 ], [ 129.210205, 37.431251 ], [ 129.462891, 36.782892 ], [ 129.462891, 35.630512 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.885931 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.388779 ], [ 126.375732, 34.930979 ], [ 126.562500, 35.684072 ], [ 126.112061, 36.721274 ], [ 126.859131, 36.897194 ], [ 126.177979, 37.753344 ], [ 126.232910, 37.840157 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.255436 ], [ 127.781982, 38.307181 ], [ 128.210449, 38.367502 ], [ 128.353271, 38.608286 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.704590, 41.640078 ], [ 129.671631, 41.599013 ], [ 129.704590, 40.979898 ], [ 129.704590, 40.880295 ], [ 129.188232, 40.663973 ], [ 129.012451, 40.488737 ], [ 128.627930, 40.187267 ], [ 127.968750, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.507324, 39.325799 ], [ 127.386475, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.353271, 38.608286 ], [ 128.210449, 38.367502 ], [ 127.781982, 38.307181 ], [ 127.067871, 38.255436 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.840157 ], [ 126.177979, 37.753344 ], [ 125.694580, 37.944198 ], [ 125.573730, 37.753344 ], [ 125.277100, 37.666429 ], [ 125.244141, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.716797, 38.108628 ], [ 124.991455, 38.548165 ], [ 125.222168, 38.668356 ], [ 125.134277, 38.848264 ], [ 125.386963, 39.385264 ], [ 125.321045, 39.554883 ], [ 124.738770, 39.656456 ], [ 124.266357, 39.926588 ], [ 125.079346, 40.572240 ], [ 125.925293, 40.979898 ], [ 126.177979, 41.104191 ], [ 126.694336, 41.640078 ], [ 127.133789, 41.640078 ], [ 127.342529, 41.500350 ], [ 128.210449, 41.467428 ], [ 128.155518, 41.640078 ], [ 129.704590, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.125244, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.703448 ], [ 119.179688, 5.408211 ], [ 119.113770, 5.014339 ], [ 118.443604, 4.970560 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.302591 ], [ 115.861816, 4.302591 ], [ 115.521240, 3.173425 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.219390 ], [ 112.862549, 1.493971 ], [ 112.379150, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.977736 ], [ 110.511475, 0.769020 ], [ 109.830322, 1.340210 ], [ 109.665527, 2.010086 ], [ 110.401611, 1.658704 ], [ 111.170654, 1.845384 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.521666 ], [ 114.664307, 4.006740 ], [ 114.873047, 4.346411 ], [ 115.345459, 4.313546 ], [ 115.455322, 5.451959 ], [ 116.224365, 6.140555 ], [ 116.729736, 6.926427 ], [ 117.125244, 6.926427 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.217012 ], [ 102.370605, 6.129631 ], [ 102.963867, 5.528511 ], [ 103.381348, 4.850154 ], [ 103.436279, 4.182073 ], [ 103.337402, 3.721745 ], [ 103.425293, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.625758 ], [ 104.227295, 1.296276 ], [ 103.524170, 1.230374 ], [ 102.568359, 1.966167 ], [ 101.392822, 2.756504 ], [ 101.271973, 3.272146 ], [ 100.700684, 3.940981 ], [ 100.557861, 4.762573 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.261230, 6.642783 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.353271, 38.608286 ], [ 129.210205, 37.431251 ], [ 129.462891, 36.782892 ], [ 129.462891, 35.630512 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.885931 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.388779 ], [ 126.375732, 34.930979 ], [ 126.562500, 35.684072 ], [ 126.112061, 36.721274 ], [ 126.859131, 36.897194 ], [ 126.177979, 37.753344 ], [ 126.232910, 37.840157 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.255436 ], [ 127.781982, 38.307181 ], [ 128.210449, 38.367502 ], [ 128.353271, 38.608286 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.847168, -0.878872 ], [ 131.868896, -0.692122 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.417092 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.571280 ], [ 120.882568, 1.307260 ], [ 121.662598, 1.010690 ], [ 122.926025, 0.878872 ], [ 124.079590, 0.911827 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 127.935791, 2.174771 ], [ 128.001709, 1.625758 ], [ 128.594971, 1.537901 ], [ 128.682861, 1.131518 ], [ 128.638916, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.375244, -0.780005 ], [ 128.144531, -0.878872 ], [ 128.089600, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.812442 ], [ 127.935791, 2.174771 ] ] ], [ [ [ 117.015381, 4.302591 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.284551 ], [ 117.872314, 1.823423 ], [ 118.992920, 0.900842 ], [ 117.806396, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.487793, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.324951, -0.878872 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 2.010086 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.769020 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.900842 ], [ 112.379150, 1.406109 ], [ 112.862549, 1.493971 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.173425 ], [ 115.861816, 4.302591 ], [ 117.015381, 4.302591 ] ] ], [ [ [ 95.295410, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.689941, 3.173425 ], [ 100.645752, 2.097920 ], [ 101.656494, 2.086941 ], [ 102.502441, 1.395126 ], [ 103.073730, 0.560294 ], [ 103.842773, 0.109863 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.449205 ], [ 97.174072, 3.305050 ], [ 96.427002, 3.864255 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.484768 ] ] ], [ [ [ 121.893311, -0.878872 ], [ 123.343506, -0.615223 ], [ 123.288574, -0.878872 ], [ 121.893311, -0.878872 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.455322, 5.451959 ], [ 115.345459, 4.313546 ], [ 114.873047, 4.346411 ], [ 114.664307, 4.006740 ], [ 114.202881, 4.521666 ], [ 114.598389, 4.904887 ], [ 115.455322, 5.451959 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 66.861082 ], [ 135.878906, 55.203953 ], [ 135.120850, 54.730964 ], [ 135.878906, 54.667478 ], [ 135.878906, 44.300264 ], [ 135.000000, 43.516689 ], [ 134.868164, 43.397065 ], [ 133.538818, 42.811522 ], [ 132.901611, 42.795401 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.220382 ], [ 130.638428, 42.391009 ], [ 130.638428, 42.900113 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.111254 ], [ 131.022949, 44.964798 ], [ 131.879883, 45.321254 ], [ 133.099365, 45.143305 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.212106 ], [ 134.505615, 47.576526 ], [ 135.000000, 48.436490 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.472921 ], [ 133.374023, 48.180739 ], [ 132.506104, 47.791016 ], [ 130.989990, 47.791016 ], [ 130.583496, 48.727209 ], [ 129.396973, 49.439557 ], [ 127.661133, 49.759978 ], [ 127.287598, 50.736455 ], [ 126.936035, 51.351201 ], [ 126.562500, 51.781436 ], [ 125.947266, 52.796119 ], [ 125.068359, 53.159947 ], [ 123.574219, 53.461890 ], [ 122.244873, 53.429174 ], [ 121.003418, 53.252069 ], [ 120.179443, 52.756243 ], [ 120.728760, 52.516221 ], [ 120.739746, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.289551, 50.141706 ], [ 117.883301, 49.510944 ], [ 116.674805, 49.887557 ], [ 115.488281, 49.802541 ], [ 114.960938, 50.141706 ], [ 114.367676, 50.247205 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.375220 ], [ 110.665283, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.479004, 49.282140 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.622803, 50.275299 ], [ 103.677979, 50.092393 ], [ 102.260742, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.515580 ], [ 99.986572, 51.631657 ], [ 98.865967, 52.045734 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.261963, 49.724479 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.152832, 50.478483 ], [ 93.109131, 50.492463 ], [ 92.230225, 50.798991 ], [ 90.714111, 50.331436 ], [ 90.000000, 50.014799 ], [ 89.121094, 49.610710 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.574219, 53.461890 ], [ 125.068359, 53.159947 ], [ 125.947266, 52.796119 ], [ 126.562500, 51.781436 ], [ 126.936035, 51.351201 ], [ 127.287598, 50.736455 ], [ 127.661133, 49.759978 ], [ 129.396973, 49.439557 ], [ 130.583496, 48.727209 ], [ 130.989990, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.374023, 48.180739 ], [ 135.000000, 48.472921 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.505615, 47.576526 ], [ 134.110107, 47.212106 ], [ 133.769531, 46.118942 ], [ 133.099365, 45.143305 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.964798 ], [ 131.286621, 44.111254 ], [ 131.143799, 42.932296 ], [ 130.638428, 42.900113 ], [ 130.638428, 42.391009 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.423457 ], [ 128.056641, 41.992160 ], [ 128.210449, 41.467428 ], [ 127.342529, 41.500350 ], [ 126.870117, 41.820455 ], [ 126.177979, 41.104191 ], [ 125.925293, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.749756, 40.313043 ], [ 122.036133, 40.313043 ], [ 122.167969, 40.421860 ], [ 121.640625, 40.946714 ], [ 120.772705, 40.597271 ], [ 120.311279, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 47.997274 ], [ 90.000000, 47.768868 ], [ 90.285645, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.282617 ], [ 92.131348, 45.112300 ], [ 93.482666, 44.972571 ], [ 94.691162, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.767822, 43.317185 ], [ 96.350098, 42.722804 ], [ 97.448730, 42.747012 ], [ 99.514160, 42.520700 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.512602 ], [ 103.315430, 41.910453 ], [ 104.523926, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.130821 ], [ 107.742920, 42.480200 ], [ 109.248047, 42.520700 ], [ 110.412598, 42.867912 ], [ 111.126709, 43.405047 ], [ 111.829834, 43.739352 ], [ 111.665039, 44.071800 ], [ 111.346436, 44.457310 ], [ 111.873779, 45.104546 ], [ 112.434082, 45.011419 ], [ 113.466797, 44.809122 ], [ 114.455566, 45.336702 ], [ 115.982666, 45.729191 ], [ 116.718750, 46.384833 ], [ 117.421875, 46.672056 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.772949, 47.047669 ], [ 118.861084, 47.746711 ], [ 118.059082, 48.063397 ], [ 117.290039, 47.694974 ], [ 116.312256, 47.850031 ], [ 115.740967, 47.724545 ], [ 115.488281, 48.136767 ], [ 116.191406, 49.131408 ], [ 116.674805, 49.887557 ], [ 117.883301, 49.510944 ], [ 119.289551, 50.141706 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.739746, 51.964577 ], [ 120.728760, 52.516221 ], [ 120.179443, 52.756243 ], [ 121.003418, 53.252069 ], [ 122.244873, 53.429174 ], [ 123.574219, 53.461890 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.391009 ], [ 130.781250, 42.220382 ], [ 130.396729, 42.277309 ], [ 129.968262, 41.943149 ], [ 129.671631, 41.599013 ], [ 129.704590, 40.979898 ], [ 129.704590, 40.880295 ], [ 129.188232, 40.663973 ], [ 129.012451, 40.488737 ], [ 128.792725, 40.313043 ], [ 124.749756, 40.313043 ], [ 125.079346, 40.572240 ], [ 125.925293, 40.979898 ], [ 126.177979, 41.104191 ], [ 126.870117, 41.820455 ], [ 127.342529, 41.500350 ], [ 128.210449, 41.467428 ], [ 128.056641, 41.992160 ], [ 129.594727, 42.423457 ], [ 129.990234, 42.988576 ] ] ] } } ] } ] } , @@ -763,6 +761,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.744873, -40.705628 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.997070, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.293457, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.065607 ], [ 148.018799, -42.407235 ], [ 147.908936, -43.213183 ], [ 147.568359, -42.940339 ], [ 146.865234, -43.636075 ], [ 146.667480, -43.580391 ], [ 146.052246, -43.548548 ], [ 145.437012, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.722900, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.744873, -40.705628 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.878906, -66.031411 ], [ 136.208496, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.778918 ], [ 137.010498, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.266856 ], [ 134.758301, -66.209308 ], [ 135.000000, -65.775744 ], [ 135.032959, -65.721594 ], [ 135.065918, -65.307240 ] ] ], [ [ [ 140.141602, -66.861082 ], [ 140.811768, -66.817872 ], [ 142.119141, -66.817872 ], [ 143.063965, -66.796238 ], [ 144.371338, -66.835165 ], [ 144.711914, -66.861082 ], [ 140.141602, -66.861082 ] ] ] ] } } ] } ] } , @@ -770,9 +770,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.121094, -1.098565 ], [ 134.143066, -1.153487 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.107606 ], [ 135.461426, -3.370856 ], [ 136.296387, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.185791, -2.054003 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.602864 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.298470 ], [ 139.130859, -8.091862 ], [ 138.878174, -8.385431 ], [ 137.614746, -8.407168 ], [ 138.043213, -7.602108 ], [ 138.669434, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.397273 ], [ 135.988770, -4.543570 ], [ 135.164795, -4.466904 ], [ 135.000000, -4.357366 ], [ 134.121094, -3.820408 ], [ 134.121094, -1.098565 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.208984, -6.893707 ], [ 134.121094, -6.129631 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.849121, -16.467695 ], [ 167.519531, -16.594081 ], [ 167.178955, -16.161921 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.629639, -14.626109 ], [ 167.113037, -14.934170 ], [ 167.266846, -15.739388 ], [ 167.003174, -15.612456 ], [ 166.794434, -15.665354 ], [ 166.651611, -15.390136 ], [ 166.629639, -14.626109 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.803955, -40.497092 ], [ 173.056641, -40.979898 ], [ 173.243408, -41.335576 ], [ 173.869629, -40.979898 ], [ 173.957520, -40.930115 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.352072 ], [ 174.243164, -41.640078 ], [ 171.760254, -41.640078 ], [ 171.947021, -41.516804 ], [ 172.089844, -40.979898 ], [ 172.100830, -40.955011 ], [ 172.803955, -40.497092 ] ] ], [ [ [ 173.001709, -34.452218 ], [ 173.551025, -35.003003 ], [ 174.331055, -35.263562 ], [ 174.616699, -36.155618 ], [ 175.341797, -37.212832 ], [ 175.352783, -36.527295 ], [ 175.814209, -36.800488 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.883525 ], [ 177.440186, -37.961523 ], [ 178.011475, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.275146, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.209473, -39.147103 ], [ 176.934814, -39.453161 ], [ 177.033691, -39.876019 ], [ 176.890869, -40.069665 ], [ 176.242676, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.330811, -41.640078 ], [ 175.209961, -41.640078 ], [ 175.067139, -41.426253 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.231934, -40.455307 ], [ 174.902344, -39.909736 ], [ 173.825684, -39.512517 ], [ 173.847656, -39.147103 ], [ 174.572754, -38.796908 ], [ 174.748535, -38.030786 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.712467 ], [ 174.320068, -36.536123 ], [ 173.836670, -36.120128 ], [ 173.056641, -35.236646 ], [ 172.639160, -34.524661 ], [ 173.001709, -34.452218 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.323242, -10.206813 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.487812 ], [ 162.399902, -10.822515 ], [ 161.696777, -10.822515 ], [ 161.323242, -10.206813 ] ] ], [ [ [ 159.708252, -9.243093 ], [ 160.367432, -9.405710 ], [ 160.686035, -9.611582 ], [ 160.850830, -9.871452 ], [ 160.466309, -9.893099 ], [ 159.851074, -9.795678 ], [ 159.642334, -9.644077 ], [ 159.708252, -9.243093 ] ] ], [ [ [ 160.916748, -8.320212 ], [ 161.279297, -9.123792 ], [ 161.674805, -9.600750 ], [ 161.531982, -9.784851 ], [ 160.784912, -8.917634 ], [ 160.576172, -8.320212 ], [ 160.916748, -8.320212 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 159.642334, -8.015716 ], [ 159.873047, -8.341953 ], [ 159.916992, -8.537565 ], [ 159.136963, -8.113615 ], [ 158.587646, -7.754537 ], [ 158.214111, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.544189, -6.599131 ], [ 157.137451, -7.024572 ], [ 157.532959, -7.351571 ], [ 157.335205, -7.406048 ], [ 156.906738, -7.177201 ], [ 156.489258, -6.762806 ], [ 156.544189, -6.599131 ] ] ] ] } } ] } ] } , @@ -785,6 +783,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 66.861082 ], [ 180.878906, 66.861082 ], [ 180.878906, 66.026947 ], [ 180.120850, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.703613, 64.534272 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.912354, 63.253412 ], [ 179.373779, 62.980189 ], [ 179.483643, 62.568045 ], [ 179.230957, 62.303688 ], [ 177.363281, 62.522458 ], [ 174.572754, 61.767926 ], [ 173.682861, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.332031, 59.883425 ], [ 168.903809, 60.576175 ], [ 166.300049, 59.789580 ], [ 165.838623, 60.157910 ], [ 164.871826, 59.734253 ], [ 163.542480, 59.866883 ], [ 163.212891, 59.209688 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.838903 ], [ 163.190918, 57.615992 ], [ 163.059082, 56.157788 ], [ 162.125244, 56.121060 ], [ 161.696777, 55.285372 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.342149 ], [ 160.026855, 53.199452 ], [ 158.532715, 52.961875 ], [ 158.236084, 51.944265 ], [ 156.785889, 51.013755 ], [ 156.423340, 51.699800 ], [ 155.994873, 53.159947 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.770788 ], [ 156.752930, 57.362090 ], [ 156.807861, 57.833055 ], [ 158.367920, 58.054632 ], [ 160.147705, 59.316375 ], [ 161.872559, 60.343260 ], [ 163.674316, 61.143235 ], [ 164.476318, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.125732, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.719971, 61.433515 ], [ 154.215088, 59.756395 ], [ 155.039062, 59.142135 ], [ 152.808838, 58.881942 ], [ 151.270752, 58.779591 ], [ 151.336670, 59.506455 ], [ 149.787598, 59.656642 ], [ 148.546143, 59.164668 ], [ 145.491943, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.120850, 54.730964 ], [ 136.702881, 54.603892 ], [ 137.197266, 53.975474 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.252389 ], [ 139.899902, 54.188155 ], [ 141.350098, 53.087426 ], [ 141.383057, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.515137, 50.043030 ], [ 140.064697, 48.443778 ], [ 138.559570, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.867676, 45.143305 ], [ 135.516357, 43.992815 ], [ 135.000000, 43.516689 ], [ 134.868164, 43.397065 ], [ 134.121094, 43.068888 ], [ 134.121094, 47.219568 ], [ 134.505615, 47.576526 ], [ 135.000000, 48.436490 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.472921 ], [ 134.121094, 48.319734 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ] ] ], [ [ [ 142.657471, 54.367759 ], [ 143.261719, 52.742943 ], [ 143.239746, 51.754240 ], [ 143.646240, 50.750359 ], [ 144.656982, 48.973006 ], [ 143.173828, 49.303636 ], [ 142.558594, 47.864774 ], [ 143.536377, 46.837650 ], [ 143.503418, 46.134170 ], [ 142.745361, 46.739861 ], [ 142.097168, 45.966425 ], [ 141.910400, 46.807580 ], [ 142.020264, 47.783635 ], [ 141.899414, 48.857487 ], [ 142.141113, 49.617828 ], [ 142.185059, 50.951506 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.657471, 54.367759 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.505615, 47.576526 ], [ 134.121094, 47.219568 ], [ 134.121094, 48.319734 ], [ 135.000000, 48.472921 ], [ 135.021973, 48.480204 ] ] ] } } ] } ] } , @@ -839,12 +839,16 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.896134 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.896134 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, 66.687784 ], [ -175.001221, 66.687784 ], [ -175.012207, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.342041, 66.335300 ], [ -174.396973, 66.513260 ], [ -174.451904, 66.687784 ], [ -171.381226, 66.687784 ], [ -171.013184, 66.513260 ], [ -169.898071, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.437718 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.251755 ], [ -173.891602, 64.282760 ], [ -174.655151, 64.630939 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.519792 ], [ -178.357544, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.687134, 66.111619 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.005493, 64.974712 ], [ -180.439453, 64.827917 ], [ -180.439453, 66.687784 ], [ -180.000000, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.718262, 66.337505 ], [ -165.574951, 66.337505 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ] ] ], [ [ [ -161.965942, 66.337505 ], [ -162.196655, 66.513260 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.041960 ], [ -157.060547, 71.193067 ], [ -157.060547, 66.337505 ], [ -161.965942, 66.337505 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -174.342041, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.439453, 66.337505 ], [ -180.439453, 69.101899 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.012207, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.342041, 66.337505 ] ] ], [ [ [ -174.342041, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.912834 ], [ -171.013184, 66.513260 ], [ -170.645142, 66.337505 ], [ -174.342041, 66.337505 ] ] ], [ [ [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.022217, 71.556217 ], [ -177.577515, 71.269067 ], [ -177.665405, 71.132764 ], [ -178.692627, 70.893280 ], [ -180.000000, 70.832051 ], [ -180.439453, 70.812202 ], [ -180.439453, 71.372864 ], [ -180.000000, 71.516203 ] ] ] ] } } ] } ] } , @@ -1058,11 +1062,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 0.439449 ], [ -67.060547, -10.228437 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -68.049316, -10.714587 ], [ -68.269043, -11.016689 ], [ -68.785400, -11.038255 ], [ -69.526978, -10.951978 ], [ -70.092773, -11.124507 ], [ -70.548706, -11.011297 ], [ -70.482788, -9.492408 ], [ -71.301270, -10.077037 ], [ -72.185669, -10.055403 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.015137, -9.031578 ], [ -73.569946, -8.423470 ], [ -73.987427, -7.525873 ], [ -73.723755, -7.340675 ], [ -73.723755, -6.920974 ], [ -73.119507, -6.631870 ], [ -73.218384, -6.091398 ], [ -72.965698, -5.741708 ], [ -72.894287, -5.276948 ], [ -71.746216, -4.592852 ], [ -70.927734, -4.401183 ], [ -70.795898, -4.253290 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.576416, -0.549308 ], [ -70.021362, -0.186767 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.439449 ], [ -67.060547, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.015869, 0.439449 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.186767 ], [ -69.576416, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.691528, -3.743671 ], [ -70.048828, -2.723583 ], [ -70.812378, -2.257106 ], [ -71.411133, -2.344926 ], [ -71.773682, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.070068, -2.306506 ], [ -73.657837, -1.257834 ], [ -74.124756, -1.005197 ], [ -74.443359, -0.532829 ], [ -75.108032, -0.054932 ], [ -75.371704, -0.153808 ], [ -75.646362, 0.000000 ], [ -75.800171, 0.082397 ], [ -76.294556, 0.417477 ], [ -76.574707, 0.258178 ], [ -77.426147, 0.395505 ], [ -77.448120, 0.439449 ], [ -70.015869, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.448120, 0.439449 ], [ -77.426147, 0.395505 ], [ -76.574707, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.800171, 0.082397 ], [ -75.646362, 0.000000 ], [ -75.371704, -0.153808 ], [ -75.234375, -0.911827 ], [ -75.547485, -1.559866 ], [ -76.635132, -2.608352 ], [ -77.838135, -3.003384 ], [ -78.453369, -3.875216 ], [ -78.640137, -4.549046 ], [ -79.205933, -4.959615 ], [ -79.623413, -4.455951 ], [ -80.029907, -4.346411 ], [ -80.441895, -4.423090 ], [ -80.469360, -4.061536 ], [ -80.183716, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.657738 ], [ -79.985962, -2.218684 ], [ -80.370483, -2.685174 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.966167 ], [ -80.936279, -1.060120 ], [ -80.584717, -0.906334 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.018921, 0.362546 ], [ -80.035400, 0.439449 ], [ -77.448120, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.228437 ], [ -67.060547, -22.350076 ], [ -67.977905, -22.350076 ], [ -68.093262, -21.943046 ], [ -68.219604, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.966675, -18.984220 ], [ -69.098511, -18.260653 ], [ -69.592896, -17.581194 ], [ -68.961182, -16.499299 ], [ -69.389648, -15.660065 ], [ -69.158936, -15.326572 ], [ -69.340210, -14.955399 ], [ -68.950195, -14.455958 ], [ -68.928223, -13.603278 ], [ -68.878784, -12.897489 ], [ -68.664551, -12.559925 ], [ -69.526978, -10.951978 ], [ -68.785400, -11.038255 ], [ -68.269043, -11.016689 ], [ -68.049316, -10.714587 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.228437 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.015869, 0.439449 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.186767 ], [ -69.576416, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.691528, -3.743671 ], [ -70.048828, -2.723583 ], [ -70.812378, -2.257106 ], [ -71.411133, -2.344926 ], [ -71.773682, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.070068, -2.306506 ], [ -73.657837, -1.257834 ], [ -74.124756, -1.005197 ], [ -74.443359, -0.532829 ], [ -75.108032, -0.054932 ], [ -75.371704, -0.153808 ], [ -75.646362, 0.000000 ], [ -75.800171, 0.082397 ], [ -76.294556, 0.417477 ], [ -76.574707, 0.258178 ], [ -77.426147, 0.395505 ], [ -77.448120, 0.439449 ], [ -70.015869, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.592896, -17.581194 ], [ -69.098511, -18.260653 ], [ -68.966675, -18.984220 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.219604, -21.493964 ], [ -68.093262, -21.943046 ], [ -67.977905, -22.350076 ], [ -70.224609, -22.350076 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.164185, -19.756364 ], [ -70.372925, -18.349312 ], [ -69.856567, -18.093644 ], [ -69.592896, -17.581194 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.532829 ], [ -74.124756, -1.005197 ], [ -73.657837, -1.257834 ], [ -73.070068, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.773682, -2.169281 ], [ -71.411133, -2.344926 ], [ -70.812378, -2.257106 ], [ -70.048828, -2.723583 ], [ -70.691528, -3.743671 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.253290 ], [ -70.927734, -4.401183 ], [ -71.746216, -4.592852 ], [ -72.894287, -5.276948 ], [ -72.965698, -5.741708 ], [ -73.218384, -6.091398 ], [ -73.119507, -6.631870 ], [ -73.723755, -6.920974 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.525873 ], [ -73.569946, -8.423470 ], [ -73.015137, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.055403 ], [ -71.301270, -10.077037 ], [ -70.482788, -9.492408 ], [ -70.548706, -11.011297 ], [ -70.092773, -11.124507 ], [ -69.526978, -10.951978 ], [ -68.664551, -12.559925 ], [ -68.878784, -12.897489 ], [ -68.928223, -13.603278 ], [ -68.950195, -14.455958 ], [ -69.340210, -14.955399 ], [ -69.158936, -15.326572 ], [ -69.389648, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.581194 ], [ -69.856567, -18.093644 ], [ -70.372925, -18.349312 ], [ -71.372681, -17.774843 ], [ -71.460571, -17.361125 ], [ -73.443604, -16.357039 ], [ -75.239868, -15.268288 ], [ -76.008911, -14.647368 ], [ -76.420898, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.090820, -10.379765 ], [ -79.035645, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.535278, -6.539103 ], [ -81.249390, -6.135093 ], [ -80.925293, -5.692516 ], [ -81.408691, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.183716, -3.820408 ], [ -80.469360, -4.061536 ], [ -80.441895, -4.423090 ], [ -80.029907, -4.346411 ], [ -79.623413, -4.455951 ], [ -79.205933, -4.959615 ], [ -78.640137, -4.549046 ], [ -78.453369, -3.875216 ], [ -77.838135, -3.003384 ], [ -76.635132, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.911827 ], [ -75.371704, -0.153808 ], [ -75.108032, -0.054932 ] ] ] } } ] } ] } , @@ -1070,16 +1074,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.050171, 21.545066 ], [ -86.813965, 21.330315 ], [ -86.846924, 20.848545 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.434692, 19.471771 ], [ -87.588501, 19.041349 ], [ -87.835693, 18.260653 ], [ -88.088379, 18.516075 ], [ -88.489380, 18.484819 ], [ -88.846436, 17.884659 ], [ -89.027710, 17.999632 ], [ -89.148560, 17.957832 ], [ -89.143066, 17.806226 ], [ -90.000000, 17.816686 ], [ -90.439453, 17.816686 ], [ -90.439453, 20.730428 ], [ -90.280151, 20.997343 ], [ -90.000000, 21.110125 ], [ -89.598999, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.458181 ], [ -87.050171, 21.545066 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.104858, 18.349312 ], [ -88.121338, 18.077979 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.302612, 17.130292 ], [ -88.242188, 17.035777 ], [ -88.357544, 16.530898 ], [ -88.549805, 16.267414 ], [ -88.731079, 16.235772 ], [ -88.928833, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.148560, 17.014768 ], [ -89.143066, 17.806226 ], [ -89.148560, 17.957832 ], [ -89.027710, 17.999632 ], [ -88.846436, 17.884659 ], [ -88.489380, 18.484819 ], [ -88.302612, 18.500447 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.351807, 14.424040 ], [ -89.060669, 14.338904 ], [ -88.840942, 14.141902 ], [ -88.538818, 13.982046 ], [ -88.505859, 13.843414 ], [ -88.066406, 13.966054 ], [ -87.857666, 13.891411 ], [ -87.725830, 13.784737 ], [ -87.791748, 13.384276 ], [ -87.901611, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.840942, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.662001 ], [ -90.093384, 13.736717 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.928736 ], [ -89.719849, 14.136576 ], [ -89.533081, 14.243087 ], [ -89.588013, 14.360191 ], [ -89.351807, 14.424040 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.013769 ], [ -83.144531, 14.997852 ], [ -83.232422, 14.902322 ], [ -83.281860, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.518066, 13.565902 ], [ -83.551025, 13.127629 ], [ -83.496094, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.318536 ], [ -83.721313, 11.894228 ], [ -83.649902, 11.630716 ], [ -83.853149, 11.372339 ], [ -83.809204, 11.102947 ], [ -83.655396, 10.941192 ], [ -83.897095, 10.725381 ], [ -84.188232, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.671631, 11.081385 ], [ -84.902344, 10.951978 ], [ -85.561523, 11.216122 ], [ -85.709839, 11.086775 ], [ -86.055908, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.141376 ], [ -87.165527, 12.458033 ], [ -87.670898, 12.908198 ], [ -87.555542, 13.063426 ], [ -87.390747, 12.913552 ], [ -87.319336, 12.983148 ], [ -87.006226, 13.025966 ], [ -86.879883, 13.255986 ], [ -86.731567, 13.261333 ], [ -86.753540, 13.752725 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.768731 ], [ -86.094360, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.512085, 14.077973 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.050659, 14.551684 ], [ -84.924316, 14.790817 ], [ -84.819946, 14.817371 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.620794 ], [ -84.226685, 14.748323 ], [ -83.973999, 14.748323 ], [ -83.627930, 14.881087 ], [ -83.490601, 15.013769 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.561523, 11.216122 ], [ -84.902344, 10.951978 ], [ -84.671631, 11.081385 ], [ -84.358521, 11.000512 ], [ -84.188232, 10.795537 ], [ -83.897095, 10.725381 ], [ -83.655396, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.990491 ], [ -82.545776, 9.568251 ], [ -82.930298, 9.476154 ], [ -82.924805, 9.074976 ], [ -82.721558, 8.923060 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.624472 ], [ -82.913818, 8.423470 ], [ -82.963257, 8.222364 ], [ -83.507080, 8.445205 ], [ -83.710327, 8.657057 ], [ -83.594971, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.908081, 9.291886 ], [ -84.303589, 9.486990 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.973755, 10.087854 ], [ -84.913330, 9.795678 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.833567 ], [ -85.660400, 9.930977 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.439196 ], [ -85.660400, 10.752366 ], [ -85.940552, 10.892648 ], [ -85.561523, 11.216122 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.101807, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.596924, 21.017855 ], [ -75.668335, 20.735566 ], [ -74.932251, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.295044, 20.050771 ], [ -74.959717, 19.921713 ], [ -75.635376, 19.875226 ], [ -76.322021, 19.952696 ], [ -77.755737, 19.854561 ], [ -77.085571, 20.411569 ], [ -77.492065, 20.673905 ], [ -78.134766, 20.740703 ], [ -78.480835, 21.028110 ], [ -78.722534, 21.596151 ], [ -79.282837, 21.560393 ], [ -80.216675, 21.825807 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.034730 ], [ -81.820679, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.101807, 22.350076 ] ] ], [ [ [ -83.243408, 22.350076 ], [ -83.496094, 22.167058 ], [ -83.908081, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.912471 ], [ -84.545288, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.446411, 22.202663 ], [ -84.358521, 22.350076 ], [ -83.243408, 22.350076 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.884659 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.224134 ], [ -78.217163, 18.453557 ], [ -77.799683, 18.526492 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.586914, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.647761 ], [ -69.768677, 19.295590 ], [ -69.224854, 19.311143 ], [ -69.252319, 19.015384 ], [ -68.807373, 18.979026 ], [ -68.318481, 18.609807 ], [ -68.692017, 18.203262 ], [ -69.164429, 18.422290 ], [ -69.625854, 18.380592 ], [ -69.955444, 18.427502 ], [ -70.131226, 18.245003 ], [ -70.515747, 18.182388 ], [ -70.669556, 18.427502 ], [ -70.999146, 18.281518 ], [ -71.400146, 17.596903 ], [ -71.658325, 17.759150 ], [ -71.707764, 18.046644 ], [ -71.685791, 18.318026 ], [ -71.943970, 18.615013 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.586914, 19.885557 ] ] ] } } @@ -1091,14 +1089,14 @@ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.854370, 1.378651 ], [ -77.854614, 0.807468 ], [ -77.667847, 0.823946 ], [ -77.426147, 0.395505 ], [ -76.574707, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.800171, 0.082397 ], [ -75.646362, 0.000000 ], [ -75.371704, -0.153808 ], [ -75.322266, -0.439449 ], [ -80.447388, -0.439449 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.018921, 0.362546 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.983228 ], [ -78.854370, 1.378651 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.751709, 12.436577 ], [ -71.400146, 12.377563 ], [ -71.136475, 12.114523 ], [ -71.334229, 11.775948 ], [ -71.971436, 11.609193 ], [ -72.229614, 11.108337 ], [ -72.614136, 10.822515 ], [ -72.905273, 10.450000 ], [ -73.026123, 9.736128 ], [ -73.306274, 9.150909 ], [ -72.789917, 9.085824 ], [ -72.658081, 8.624472 ], [ -72.438354, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.443848, 7.422389 ], [ -72.196655, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.092773, 6.959144 ], [ -69.389648, 6.102322 ], [ -68.983154, 6.206090 ], [ -68.263550, 6.151478 ], [ -67.697754, 6.266158 ], [ -67.500000, 6.173324 ], [ -67.340698, 6.096860 ], [ -67.521973, 5.555848 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.620850, 3.836851 ], [ -67.500000, 3.710782 ], [ -67.335205, 3.540835 ], [ -67.302246, 3.316018 ], [ -67.500000, 3.124061 ], [ -67.807617, 2.822344 ], [ -67.500000, 2.630301 ], [ -67.445068, 2.602864 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.856365 ], [ -67.066040, 1.131518 ], [ -67.258301, 1.719102 ], [ -67.500000, 1.993616 ], [ -67.538452, 2.037534 ], [ -67.868042, 1.691649 ], [ -69.818115, 1.713612 ], [ -69.807129, 1.087581 ], [ -69.219360, 0.983228 ], [ -69.252319, 0.604237 ], [ -69.450073, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.186767 ], [ -69.713745, -0.439449 ], [ -74.569702, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.371704, -0.153808 ], [ -75.646362, 0.000000 ], [ -75.800171, 0.082397 ], [ -76.294556, 0.417477 ], [ -76.574707, 0.258178 ], [ -77.426147, 0.395505 ], [ -77.667847, 0.823946 ], [ -77.854614, 0.807468 ], [ -78.854370, 1.378651 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.662109, 2.268084 ], [ -78.425903, 2.630301 ], [ -77.931519, 2.696148 ], [ -77.508545, 3.326986 ], [ -77.129517, 3.847812 ], [ -77.497559, 4.088932 ], [ -77.305298, 4.669505 ], [ -77.530518, 5.583184 ], [ -77.316284, 5.845545 ], [ -77.475586, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.934115 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.667918 ], [ -76.838379, 8.640765 ], [ -76.085815, 9.335252 ], [ -75.673828, 9.443643 ], [ -75.662842, 9.774025 ], [ -75.481567, 10.617418 ], [ -74.904785, 11.081385 ], [ -74.278564, 11.102947 ], [ -74.196167, 11.313094 ], [ -73.416138, 11.226898 ], [ -72.625122, 11.732924 ], [ -72.240601, 11.953349 ], [ -71.751709, 12.436577 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.569702, -0.439449 ], [ -75.322266, -0.439449 ], [ -75.371704, -0.153808 ], [ -75.108032, -0.054932 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.938477, 41.310824 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.569946, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.328247, 40.979898 ], [ -72.240601, 41.120746 ], [ -72.020874, 40.979898 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.195328 ], [ -90.153809, 29.118574 ], [ -90.439453, 29.128172 ], [ -90.439453, 41.310824 ], [ -71.938477, 41.310824 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.189697, 25.209911 ], [ -77.887573, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.777710, 23.709924 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.189697, 25.209911 ] ] ], [ [ [ -77.788696, 27.039557 ], [ -76.997681, 26.588527 ], [ -77.173462, 25.878994 ], [ -77.354736, 26.007424 ], [ -77.338257, 26.529565 ], [ -77.788696, 26.926968 ], [ -77.788696, 27.039557 ] ] ], [ [ [ -78.508301, 26.868181 ], [ -77.849121, 26.838776 ], [ -77.821655, 26.578702 ], [ -78.909302, 26.421390 ], [ -78.980713, 26.789751 ], [ -78.508301, 26.868181 ] ] ] ] } } ] } ] } , @@ -1123,12 +1121,16 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 75.969558 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.380005, 75.482018 ], [ -84.786987, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.057373, 75.336721 ], [ -79.832153, 74.923713 ], [ -80.458374, 74.657110 ], [ -81.947021, 74.441992 ], [ -83.226929, 74.563812 ], [ -86.099854, 74.409546 ], [ -88.148804, 74.391820 ], [ -89.763794, 74.515490 ], [ -90.000000, 74.544794 ], [ -90.439453, 74.597405 ], [ -90.439453, 75.969558 ] ] ], [ [ [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -76.223145, 79.018574 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.899558 ], [ -78.359985, 77.508873 ], [ -79.760742, 77.209560 ], [ -79.617920, 76.983861 ], [ -77.909546, 77.022159 ], [ -77.887573, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.171997, 76.453917 ], [ -86.110840, 76.298652 ], [ -87.599487, 76.420423 ], [ -89.489136, 76.471918 ], [ -89.615479, 76.951655 ], [ -87.769775, 77.177903 ], [ -88.258667, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.973755, 77.538540 ], [ -86.341553, 78.179588 ], [ -87.962036, 78.371576 ], [ -87.154541, 78.758158 ], [ -85.380249, 78.996578 ], [ -85.237427, 79.171335 ], [ -85.171509, 79.253586 ], [ -76.140747, 79.253586 ] ] ], [ [ [ -86.204224, 79.253586 ], [ -86.583252, 79.171335 ], [ -87.187500, 79.039482 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.248032 ], [ -90.439453, 78.230117 ], [ -90.439453, 79.253586 ], [ -86.204224, 79.253586 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.367899 ], [ -67.060547, 76.104754 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.008582 ], [ -68.774414, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.060547, 77.367899 ] ] ], [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.420647 ], [ -71.043091, 77.635365 ], [ -73.295288, 78.043795 ], [ -73.157959, 78.432316 ], [ -69.373169, 78.913440 ], [ -67.500000, 79.162043 ], [ -67.060547, 79.219732 ], [ -67.060547, 77.394300 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 80.635422 ], [ -90.000000, 80.579842 ], [ -89.450684, 80.509454 ], [ -87.808228, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -86.583252, 79.171335 ], [ -86.962280, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.635422 ] ] ], [ [ [ -67.060547, 82.732092 ], [ -67.060547, 81.650118 ], [ -67.500000, 81.540928 ], [ -67.659302, 81.501241 ], [ -67.500000, 81.502052 ], [ -67.060547, 81.502864 ], [ -67.060547, 81.105113 ], [ -67.500000, 80.989712 ], [ -67.840576, 80.899800 ], [ -69.472046, 80.616633 ], [ -71.180420, 79.799664 ], [ -73.240356, 79.633945 ], [ -73.877563, 79.430356 ], [ -76.909790, 79.323013 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -75.953979, 79.088462 ], [ -85.303345, 79.088462 ], [ -85.237427, 79.171335 ], [ -85.094604, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.929321, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464060 ], [ -84.100342, 80.579842 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.197754, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.041938 ], [ -90.098877, 82.085171 ], [ -90.000000, 82.087440 ], [ -88.934326, 82.117630 ], [ -86.967773, 82.279430 ], [ -85.501099, 82.652438 ], [ -84.259644, 82.600269 ], [ -83.177490, 82.319912 ], [ -82.683105, 82.676285 ], [ -82.606201, 82.732092 ], [ -67.060547, 82.732092 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.219732 ], [ -67.060547, 79.088462 ], [ -68.060303, 79.088462 ], [ -67.060547, 79.219732 ] ] ], [ [ [ -67.060547, 79.990487 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.117621 ], [ -67.500000, 80.357916 ], [ -67.153931, 80.515792 ], [ -67.060547, 80.534782 ], [ -67.060547, 79.990487 ] ] ] ] } } ] } ] } , @@ -1165,6 +1167,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.917480, -55.528631 ], [ -67.939453, -55.534848 ], [ -67.939453, -55.528631 ], [ -67.917480, -55.528631 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.810059, -63.270712 ], [ -57.222290, -63.526522 ], [ -57.595825, -63.857616 ], [ -58.612061, -64.151347 ], [ -59.046021, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.308967 ], [ -61.298218, -64.543718 ], [ -62.023315, -64.799865 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.803345, -66.425537 ], [ -63.748169, -66.504502 ], [ -63.759155, -66.513260 ], [ -64.050293, -66.687784 ], [ -66.901245, -66.687784 ], [ -66.582642, -66.513260 ], [ -66.055298, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.601609 ], [ -64.176636, -65.171500 ], [ -63.627319, -64.897920 ], [ -63.001099, -64.642704 ], [ -62.039795, -64.583827 ], [ -61.413574, -64.270839 ], [ -60.710449, -64.074601 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.702289 ], [ -58.595581, -63.389061 ], [ -57.810059, -63.270712 ] ] ] } } ] } ] } , @@ -1179,20 +1183,12 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.332168 ], [ -44.648438, -23.352343 ], [ -45.351562, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.647705, -24.886436 ], [ -48.493652, -25.878994 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.176469 ], [ -48.663940, -28.188244 ], [ -48.889160, -28.676130 ], [ -49.586792, -29.224096 ], [ -50.696411, -30.982319 ], [ -51.575317, -31.779547 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.197328 ], [ -53.371582, -33.770015 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.855079 ], [ -55.975342, -30.883369 ], [ -56.975098, -30.111870 ], [ -57.623291, -30.216355 ], [ -56.288452, -28.854296 ], [ -55.162354, -27.882784 ], [ -54.492188, -27.474161 ], [ -53.646240, -26.922070 ], [ -53.629761, -26.125850 ], [ -54.129639, -25.547398 ], [ -54.624023, -25.740529 ], [ -54.426270, -25.160201 ], [ -54.294434, -24.572104 ], [ -54.294434, -24.021379 ], [ -54.651489, -23.840626 ], [ -55.030518, -24.001308 ], [ -55.398560, -23.956136 ], [ -55.519409, -23.574057 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.284014 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.908936, -21.534847 ], [ -44.560547, -21.534847 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.975098, -30.111870 ], [ -55.975342, -30.883369 ], [ -55.601807, -30.855079 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.805542, -34.397845 ], [ -54.937134, -34.953493 ], [ -55.673218, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.815552, -34.461277 ], [ -58.425293, -33.911454 ], [ -58.348389, -33.261657 ], [ -58.134155, -33.040903 ], [ -58.145142, -32.045333 ], [ -57.875977, -31.015279 ], [ -57.623291, -30.216355 ], [ -56.975098, -30.111870 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.908936, -21.534847 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.284014 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.574057 ], [ -55.398560, -23.956136 ], [ -55.030518, -24.001308 ], [ -54.651489, -23.840626 ], [ -54.294434, -24.021379 ], [ -54.294434, -24.572104 ], [ -54.426270, -25.160201 ], [ -54.624023, -25.740529 ], [ -54.788818, -26.622908 ], [ -55.695190, -27.386401 ], [ -56.486206, -27.547242 ], [ -57.612305, -27.396155 ], [ -58.617554, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.777100, -25.160201 ], [ -58.809814, -24.771772 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.880815 ], [ -62.682495, -22.248429 ], [ -62.451782, -21.534847 ], [ -57.908936, -21.534847 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -22.482106 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.811631 ], [ -67.104492, -22.735657 ], [ -66.983643, -22.988738 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.101633 ], [ -67.939453, -24.302047 ], [ -67.939453, -22.482106 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.504150, 0.439449 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.619995, -0.236205 ], [ -48.587036, -1.235866 ], [ -47.823486, -0.582265 ], [ -46.565552, -0.939289 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.554375 ], [ -44.560547, -1.966167 ], [ -44.560547, -2.619326 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.685174 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.284014 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.870483, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.947388, -19.399249 ], [ -57.678223, -18.963442 ], [ -57.496948, -18.171950 ], [ -57.733154, -17.555009 ], [ -58.282471, -17.271973 ], [ -58.386841, -16.878147 ], [ -58.238525, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.249023, -15.077428 ], [ -60.265503, -14.647368 ], [ -60.457764, -14.354870 ], [ -60.501709, -13.774066 ], [ -61.083984, -13.480448 ], [ -61.715698, -13.491131 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.629618 ], [ -64.313965, -12.463396 ], [ -65.401611, -11.566144 ], [ -65.319214, -10.898042 ], [ -65.445557, -10.509417 ], [ -65.335693, -9.763198 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -67.939453, -10.660608 ], [ -67.939453, 0.439449 ], [ -50.504150, 0.439449 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.962158, -22.075459 ], [ -64.742432, -22.350076 ], [ -66.747437, -22.350076 ], [ -66.373901, -21.943046 ], [ -66.275024, -21.830907 ] ] ], [ [ [ -64.160156, -22.350076 ], [ -63.984375, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.682495, -22.248429 ], [ -62.572632, -22.350076 ], [ -64.160156, -22.350076 ] ] ] ] } } ] } ] } , @@ -1200,13 +1196,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.098999, 18.521283 ], [ -66.280518, 18.516075 ], [ -65.769653, 18.427502 ], [ -65.588379, 18.229351 ], [ -65.846558, 17.973508 ], [ -66.599121, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.241821, 18.375379 ], [ -67.098999, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.880493, 10.714587 ], [ -62.731934, 10.417586 ], [ -62.385864, 9.947209 ], [ -61.589355, 9.871452 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.602747 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.292969, 7.046379 ], [ -60.545654, 6.855532 ], [ -61.160889, 6.697343 ], [ -61.138916, 6.233395 ], [ -61.408081, 5.960290 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.968628, 4.538094 ], [ -62.083740, 4.160158 ], [ -62.803345, 4.006740 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.627075, 4.149201 ], [ -64.813843, 4.056056 ], [ -64.368896, 3.798484 ], [ -64.407349, 3.124061 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.410787 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.198608, 1.493971 ], [ -64.610596, 1.329226 ], [ -65.352173, 1.093073 ], [ -65.549927, 0.790990 ], [ -66.324463, 0.725078 ], [ -66.873779, 1.252342 ], [ -67.181396, 2.251617 ], [ -67.445068, 2.602864 ], [ -67.500000, 2.630301 ], [ -67.807617, 2.822344 ], [ -67.500000, 3.124061 ], [ -67.302246, 3.316018 ], [ -67.335205, 3.540835 ], [ -67.500000, 3.710782 ], [ -67.620850, 3.836851 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.555848 ], [ -67.340698, 6.096860 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.266158 ], [ -67.939453, 6.217012 ], [ -67.939453, 10.552622 ], [ -67.500000, 10.547221 ], [ -67.296753, 10.547221 ], [ -66.225586, 10.649811 ], [ -65.654297, 10.201407 ], [ -64.890747, 10.077037 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.639014 ], [ -63.078003, 10.703792 ], [ -61.880493, 10.714587 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.892648 ], [ -60.897217, 10.854886 ], [ -60.935669, 10.109486 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.087854 ], [ -61.660767, 10.363555 ], [ -61.682739, 10.757763 ], [ -61.105957, 10.892648 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.030518, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.398804, 4.214943 ], [ -54.008789, 3.617589 ], [ -54.179077, 3.189879 ], [ -54.266968, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.096436, 2.526037 ], [ -55.568848, 2.421764 ], [ -55.975342, 2.509573 ], [ -56.074219, 2.218684 ], [ -55.903931, 2.021065 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.767478 ], [ -57.282715, 3.332470 ], [ -57.601318, 3.332470 ], [ -58.046265, 4.061536 ], [ -57.859497, 4.576425 ], [ -57.914429, 4.811839 ], [ -57.304688, 5.074529 ], [ -57.145386, 5.971217 ], [ -55.947876, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.030518, 6.025848 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.244128 ], [ -59.979858, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.765625, 4.423090 ], [ -59.540405, 3.957421 ], [ -59.815063, 3.606625 ], [ -59.974365, 2.756504 ], [ -59.716187, 2.251617 ], [ -59.644775, 1.784990 ], [ -59.029541, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.112183, 1.504954 ], [ -57.661743, 1.680667 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.861855 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.903931, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.975342, 2.509573 ], [ -55.568848, 2.421764 ], [ -55.096436, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.085693, 2.103409 ], [ -53.778076, 2.377857 ], [ -53.552856, 2.333949 ], [ -53.421021, 2.054003 ], [ -52.937622, 2.125367 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.239240 ], [ -51.657715, 4.154679 ], [ -51.317139, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.900286 ], [ -49.976807, 1.735574 ], [ -49.949341, 1.043643 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.619995, -0.236205 ], [ -48.614502, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.691649 ], [ -67.868042, 1.691649 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.993616 ], [ -67.258301, 1.719102 ], [ -67.066040, 1.131518 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.352173, 1.093073 ], [ -64.610596, 1.329226 ], [ -64.198608, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.410787 ], [ -64.270020, 2.498597 ], [ -64.407349, 3.124061 ], [ -64.368896, 3.798484 ], [ -64.813843, 4.056056 ], [ -64.627075, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.803345, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.968628, 4.538094 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.216064, 5.244128 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.880493, 10.714587 ], [ -62.731934, 10.417586 ], [ -62.385864, 9.947209 ], [ -61.589355, 9.871452 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.602747 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.292969, 7.046379 ], [ -60.545654, 6.855532 ], [ -61.160889, 6.697343 ], [ -61.138916, 6.233395 ], [ -61.408081, 5.960290 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.968628, 4.538094 ], [ -62.083740, 4.160158 ], [ -62.803345, 4.006740 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.627075, 4.149201 ], [ -64.813843, 4.056056 ], [ -64.368896, 3.798484 ], [ -64.407349, 3.124061 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.410787 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.198608, 1.493971 ], [ -64.610596, 1.329226 ], [ -65.352173, 1.093073 ], [ -65.549927, 0.790990 ], [ -66.324463, 0.725078 ], [ -66.873779, 1.252342 ], [ -67.181396, 2.251617 ], [ -67.445068, 2.602864 ], [ -67.500000, 2.630301 ], [ -67.807617, 2.822344 ], [ -67.500000, 3.124061 ], [ -67.302246, 3.316018 ], [ -67.335205, 3.540835 ], [ -67.500000, 3.710782 ], [ -67.620850, 3.836851 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.555848 ], [ -67.340698, 6.096860 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.266158 ], [ -67.939453, 6.217012 ], [ -67.939453, 10.552622 ], [ -67.500000, 10.547221 ], [ -67.296753, 10.547221 ], [ -66.225586, 10.649811 ], [ -65.654297, 10.201407 ], [ -64.890747, 10.077037 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.639014 ], [ -63.078003, 10.703792 ], [ -61.880493, 10.714587 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.697754, 6.266158 ], [ -67.500000, 6.173324 ], [ -67.340698, 6.096860 ], [ -67.521973, 5.555848 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.620850, 3.836851 ], [ -67.500000, 3.710782 ], [ -67.335205, 3.540835 ], [ -67.302246, 3.316018 ], [ -67.500000, 3.124061 ], [ -67.807617, 2.822344 ], [ -67.500000, 2.630301 ], [ -67.445068, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.873779, 1.252342 ], [ -67.066040, 1.131518 ], [ -67.258301, 1.719102 ], [ -67.500000, 1.993616 ], [ -67.538452, 2.037534 ], [ -67.868042, 1.691649 ], [ -67.939453, 1.691649 ], [ -67.939453, 6.217012 ], [ -67.697754, 6.266158 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.408211 ], [ -51.822510, 4.565474 ], [ -51.657715, 4.154679 ], [ -52.250977, 3.239240 ], [ -52.558594, 2.504085 ], [ -52.937622, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.552856, 2.333949 ], [ -53.778076, 2.377857 ], [ -54.085693, 2.103409 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.008789, 3.623071 ], [ -54.398804, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ] } } ] } ] } , @@ -1219,12 +1215,16 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.583130, 60.335105 ], [ -63.803101, 59.442282 ], [ -62.501221, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.648315, 58.211238 ], [ -67.500000, 58.269066 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.869641 ], [ -64.583130, 60.335105 ] ] ], [ [ [ -67.939453, 66.269067 ], [ -67.939453, 66.687784 ], [ -61.929932, 66.687784 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.388161 ], [ -67.500000, 66.313242 ], [ -67.939453, 66.269067 ] ] ], [ [ [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ], [ -67.088013, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.319214, 64.382691 ], [ -64.671021, 63.393982 ], [ -65.011597, 62.674143 ], [ -66.275024, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ] ] ], [ [ [ -67.939453, 63.233627 ], [ -67.500000, 62.965212 ], [ -67.368164, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.165161, 61.931197 ], [ -67.500000, 62.127004 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.045647 ], [ -44.785767, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.263428, 60.852938 ], [ -48.262939, 60.858288 ], [ -49.235229, 61.407236 ], [ -49.899902, 62.382731 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.278442, 65.176112 ], [ -53.662720, 66.100494 ], [ -53.459473, 66.513260 ], [ -53.377075, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 68.481941 ], [ -67.500000, 68.360725 ], [ -66.450806, 68.067150 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.927908 ], [ -61.853027, 66.861082 ], [ -62.083740, 66.337505 ], [ -66.637573, 66.337505 ], [ -66.719971, 66.388161 ], [ -67.241821, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.481941 ] ] ], [ [ [ -67.939453, 68.940633 ], [ -67.939453, 70.132898 ], [ -67.917480, 70.121695 ], [ -67.500000, 69.716202 ], [ -66.967163, 69.185993 ], [ -67.500000, 69.052858 ], [ -67.939453, 68.940633 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.547363, 66.337505 ], [ -53.459473, 66.513260 ], [ -53.300171, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.356673 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.146920 ], [ -50.872192, 69.928415 ], [ -52.014771, 69.574813 ], [ -52.558594, 69.426691 ], [ -53.453979, 69.283371 ], [ -54.684448, 69.609292 ], [ -54.750366, 70.289117 ], [ -54.360352, 70.821227 ], [ -53.432007, 70.835658 ], [ -51.388550, 70.570631 ], [ -53.107910, 71.205460 ], [ -54.003296, 71.547525 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.655020 ], [ -54.717407, 72.585761 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -56.530151, 74.019543 ], [ -56.667480, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } ] } ] } , @@ -1237,12 +1237,16 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ], [ -61.847534, 82.628514 ], [ -61.891479, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.725560 ], [ -67.500000, 81.540928 ], [ -67.659302, 81.501241 ], [ -67.500000, 81.502052 ], [ -65.478516, 81.506921 ], [ -67.500000, 80.989712 ], [ -67.840576, 80.899800 ], [ -67.939453, 80.883278 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.104048 ], [ -67.428589, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -67.500000, 80.048561 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.156200 ], [ -67.500000, 80.357916 ], [ -67.153931, 80.515792 ], [ -63.687744, 81.214014 ], [ -62.232056, 81.320764 ], [ -62.649536, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.135132, 82.199320 ], [ -53.041992, 81.888381 ], [ -50.388794, 82.438651 ], [ -48.004761, 82.064721 ], [ -46.598511, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ] ] ], [ [ [ -44.560547, 81.669241 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.200065 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -46.197510, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.669241 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 83.089955 ], [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.899703 ], [ -62.166138, 82.676285 ], [ -61.847534, 82.628514 ], [ -61.853027, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.089955 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 83.025552 ], [ -44.560547, 82.620052 ], [ -46.768799, 82.620052 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -45.000000, 82.947749 ], [ -44.560547, 83.025552 ] ] ] } } ] } ] } , @@ -1279,12 +1283,16 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.189453, 66.687784 ], [ -34.200439, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.353760, 65.977798 ], [ -37.045898, 65.937514 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.458261 ], [ -40.671387, 64.839597 ], [ -40.682373, 64.139369 ], [ -41.187744, 63.482410 ], [ -42.819214, 62.681707 ], [ -42.418213, 61.900165 ], [ -43.379517, 60.097718 ], [ -44.785767, 60.037417 ], [ -45.000000, 60.155176 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.189453, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, 64.275608 ], [ -22.060547, 63.881808 ], [ -22.763672, 63.959085 ], [ -22.500000, 64.079404 ], [ -22.060547, 64.275608 ] ] ], [ [ [ -22.060547, 64.465691 ], [ -22.500000, 64.564960 ], [ -23.955688, 64.890928 ], [ -22.500000, 65.051285 ], [ -22.186890, 65.086018 ], [ -22.225342, 65.378282 ], [ -22.500000, 65.408017 ], [ -24.323730, 65.610684 ], [ -23.648071, 66.262434 ], [ -22.500000, 66.374956 ], [ -22.137451, 66.410154 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.465691 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 74.140084 ], [ -22.060547, 73.321553 ], [ -22.170410, 73.308936 ], [ -22.500000, 73.308936 ], [ -23.565674, 73.307358 ], [ -22.500000, 72.731482 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.183484 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.597266 ], [ -24.790649, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.642914 ], [ -22.131958, 71.469124 ], [ -22.060547, 71.318396 ], [ -22.060547, 70.630841 ], [ -22.500000, 70.583418 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.543213, 71.430678 ], [ -25.202637, 70.752534 ], [ -26.361694, 70.226028 ], [ -23.724976, 70.183241 ], [ -22.500000, 70.134765 ], [ -22.351685, 70.129165 ], [ -22.500000, 70.080562 ], [ -25.026855, 69.258095 ], [ -27.745972, 68.469848 ], [ -30.673828, 68.124529 ], [ -31.777954, 68.120435 ], [ -32.810669, 67.734435 ], [ -34.200439, 66.679087 ], [ -34.716797, 66.513260 ], [ -35.260620, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.137451, 66.410154 ], [ -22.060547, 66.379359 ], [ -22.060547, 66.337505 ], [ -22.884521, 66.337505 ], [ -22.137451, 66.410154 ] ] ] } } ] } ] } , @@ -1334,10 +1342,6 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.062744, 22.350076 ], [ -13.007812, 21.943046 ], [ -12.930908, 21.325198 ], [ -16.847534, 21.335432 ], [ -17.061768, 20.997343 ], [ -17.017822, 21.422390 ], [ -14.749146, 21.499075 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -14.210815, 22.350076 ], [ -13.062744, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.439453, 21.509296 ], [ 0.439453, 14.934170 ], [ 0.000000, 14.928862 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.971320 ], [ -1.999512, 14.557001 ], [ -2.191772, 14.248411 ], [ -2.966309, 13.800741 ], [ -3.103638, 13.539201 ], [ -3.521118, 13.336175 ], [ -4.004517, 13.475106 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.711410 ], [ -5.196533, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.817261, 10.223031 ], [ -6.047974, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.428391 ], [ -6.849976, 10.136524 ], [ -7.624512, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.333130, 10.493213 ], [ -8.283691, 10.790141 ], [ -8.410034, 10.908830 ], [ -8.618774, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.377075, 11.393879 ], [ -8.783569, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.590820, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.299438, 12.076924 ], [ -11.458740, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.469727, 12.752874 ], [ -11.552124, 13.143678 ], [ -11.925659, 13.421681 ], [ -12.123413, 13.992706 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.651245, 15.130462 ], [ -10.085449, 15.331870 ], [ -9.700928, 15.262989 ], [ -9.552612, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.317383, 16.204125 ], [ -5.487671, 16.325411 ], [ -6.113892, 21.943046 ], [ -6.157837, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.143678 ], [ -11.469727, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.388294 ], [ -12.205811, 12.463396 ], [ -12.277222, 12.356100 ], [ -12.496948, 12.334636 ], [ -13.216553, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.814819, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.272026 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.282719 ], [ -13.842773, 13.507155 ], [ -14.046021, 13.795406 ], [ -14.375610, 13.624633 ], [ -14.688721, 13.629972 ], [ -15.084229, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.715698, 13.592600 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.623037 ], [ -16.463013, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.622559, 16.367580 ], [ -15.133667, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.551147, 12.629618 ], [ -13.699951, 12.586732 ], [ -13.716431, 12.248760 ], [ -13.826294, 12.141376 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.381104, 11.506940 ], [ -14.683228, 11.528470 ], [ -15.128174, 11.038255 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.611328, 12.173595 ], [ -16.677246, 12.382928 ], [ -16.149902, 12.549202 ], [ -15.814819, 12.517028 ], [ -15.551147, 12.629618 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.157837, 22.350076 ], [ -6.113892, 21.943046 ], [ -5.487671, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.537109, 15.501326 ], [ -9.552612, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.331870 ], [ -10.651245, 15.130462 ], [ -11.348877, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.832275, 14.801439 ], [ -12.172852, 14.615478 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.133667, 16.588817 ], [ -15.622559, 16.367580 ], [ -16.122437, 16.457159 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.144409, 18.109308 ], [ -16.254272, 19.098458 ], [ -16.375122, 19.596019 ], [ -16.276245, 20.092047 ], [ -16.534424, 20.565939 ], [ -17.061768, 20.997343 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.325198 ], [ -13.007812, 21.943046 ], [ -13.062744, 22.350076 ], [ -6.157837, 22.350076 ] ] ] } } @@ -1346,12 +1350,12 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.491943, 8.716789 ], [ -10.502930, 8.347388 ], [ -10.228271, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.395153 ], [ -11.200562, 7.106344 ], [ -11.436768, 6.784626 ], [ -11.705933, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.947388, 7.798079 ], [ -13.123169, 8.162556 ], [ -13.244019, 8.901353 ], [ -12.711182, 9.340672 ], [ -12.595825, 9.622414 ], [ -12.425537, 9.833567 ], [ -12.150879, 9.860628 ], [ -11.914673, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.525619 ], [ -6.047974, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.368958 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.822742 ], [ -4.328613, 9.611582 ], [ -3.982544, 9.860628 ], [ -3.510132, 9.898510 ], [ -2.828979, 9.644077 ], [ -2.559814, 8.216927 ], [ -2.982788, 7.378810 ], [ -3.246460, 6.249776 ], [ -2.812500, 5.386336 ], [ -2.856445, 4.992450 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.178482 ], [ -4.647217, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.531372, 4.702354 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.362843 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.569580, 5.708914 ], [ -7.992554, 6.124170 ], [ -8.311157, 6.195168 ], [ -8.602295, 6.468151 ], [ -8.388062, 6.910067 ], [ -8.486938, 7.395153 ], [ -8.437500, 7.683773 ], [ -8.278198, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.314777 ], [ -8.201294, 8.456072 ], [ -7.833252, 8.575590 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.228760, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.849976, 10.136524 ], [ -6.668701, 10.428391 ], [ -6.492920, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 22.350076 ], [ 0.439453, 21.509296 ], [ 0.000000, 21.795208 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 14.934170 ], [ 0.439453, 13.976715 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 0.439453, 14.934170 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.439453, 11.005904 ], [ 0.439453, 8.857934 ], [ 0.368042, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.439453, 8.857934 ], [ 0.439453, 5.697982 ], [ 0.000000, 5.533978 ], [ -0.505371, 5.342583 ], [ -1.065674, 4.997922 ], [ -1.966553, 4.707828 ], [ -2.856445, 4.992450 ], [ -2.812500, 5.386336 ], [ -3.246460, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.559814, 8.216927 ], [ -2.966309, 10.395975 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.011297 ], [ -0.763550, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } ] } ] } @@ -1362,8 +1366,6 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.654338 ], [ -8.684692, 27.396155 ], [ -8.684692, 25.878994 ], [ -11.969604, 25.933347 ], [ -11.936646, 23.372514 ], [ -12.875977, 23.286765 ], [ -13.117676, 22.771117 ], [ -13.007812, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.738159, 21.534847 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -13.892212, 23.689805 ], [ -12.502441, 24.771772 ], [ -12.030029, 26.032106 ], [ -11.716919, 26.106121 ], [ -11.392822, 26.882880 ], [ -10.552368, 26.990619 ], [ -10.189819, 26.863281 ], [ -9.733887, 26.863281 ], [ -9.415283, 27.088473 ], [ -8.794556, 27.122702 ], [ -8.816528, 27.654338 ], [ -8.668213, 27.654338 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.976099 ], [ -1.549072, 22.791375 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.069946, 21.534847 ], [ -6.113892, 21.943046 ], [ -6.454468, 24.956180 ], [ -4.921875, 24.976099 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.921875, 24.976099 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.069946, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.007812, 21.943046 ], [ -13.117676, 22.771117 ], [ -12.875977, 23.286765 ], [ -11.936646, 23.372514 ], [ -11.969604, 25.933347 ], [ -8.684692, 25.878994 ], [ -8.684692, 27.396155 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 36.257563 ], [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.549072, 22.791375 ], [ -4.921875, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.662720, 27.591066 ], [ -8.673706, 28.839862 ], [ -7.058716, 29.578234 ], [ -6.058960, 29.730992 ], [ -5.240479, 30.002517 ], [ -4.861450, 30.500751 ], [ -3.691406, 30.897511 ], [ -3.647461, 31.639352 ], [ -3.070679, 31.723495 ], [ -2.614746, 32.096536 ], [ -1.307373, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.790771, 34.529187 ], [ -2.169800, 35.169318 ], [ -1.208496, 35.715298 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.439453, 36.257563 ] ] ] } } @@ -1374,8 +1376,6 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.569580, 55.131790 ], [ -7.366333, 54.594345 ], [ -7.569580, 54.059388 ], [ -6.954346, 54.072283 ], [ -6.196289, 53.868725 ], [ -6.031494, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.669148 ], [ -9.975586, 51.818803 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.327637, 54.664301 ], [ -7.569580, 55.131790 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.747289 ], [ -6.756592, 43.568452 ], [ -5.410767, 43.572432 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.456906 ], [ -1.900635, 43.421009 ], [ -1.505127, 43.032761 ], [ 0.000000, 42.662241 ], [ 0.340576, 42.581400 ], [ 0.439453, 42.638000 ], [ 0.439453, 40.647304 ], [ -6.860962, 40.647304 ], [ -6.855469, 40.979898 ], [ -6.849976, 41.112469 ], [ -6.388550, 41.380930 ], [ -6.668701, 41.881831 ], [ -7.250977, 41.918629 ], [ -7.421265, 41.791793 ], [ -8.014526, 41.791793 ], [ -8.261719, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.024730 ], [ -7.976074, 43.747289 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 49.827353 ], [ 0.439453, 42.638000 ], [ 0.340576, 42.581400 ], [ 0.000000, 42.662241 ], [ -1.505127, 43.032761 ], [ -1.900635, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.192017, 46.016039 ], [ -2.224731, 47.062638 ], [ -2.960815, 47.569114 ], [ -4.493408, 47.953145 ], [ -4.592285, 48.683708 ], [ -3.295898, 48.900838 ], [ -1.614990, 48.643798 ], [ -1.933594, 49.777717 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.681847 ], [ 0.439453, 49.827353 ] ] ] } } ] } ] } @@ -1389,6 +1389,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 73.307358 ], [ -22.939453, 74.140084 ], [ -21.351929, 74.140084 ], [ -21.005859, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.170410, 73.308936 ], [ -22.500000, 73.308936 ], [ -22.939453, 73.307358 ] ] ], [ [ [ -22.939453, 71.847674 ], [ -22.500000, 71.642914 ], [ -22.131958, 71.469124 ], [ -21.752930, 70.663607 ], [ -22.500000, 70.583418 ], [ -22.939453, 70.535883 ], [ -22.939453, 71.847674 ] ] ], [ [ [ -22.939453, 72.971189 ], [ -22.500000, 72.731482 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.183484 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.319122 ], [ -22.939453, 72.971189 ] ] ], [ [ [ -22.939453, 70.153423 ], [ -22.500000, 70.134765 ], [ -22.351685, 70.129165 ], [ -22.500000, 70.080562 ], [ -22.939453, 69.941607 ], [ -22.939453, 70.153423 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.137451, 66.410154 ], [ -21.967163, 66.337505 ], [ -22.884521, 66.337505 ], [ -22.137451, 66.410154 ] ] ], [ [ [ -16.748657, 66.337505 ], [ -16.210327, 66.513260 ], [ -16.166382, 66.526392 ], [ -15.853271, 66.513260 ], [ -14.507446, 66.456275 ], [ -14.551392, 66.337505 ], [ -16.748657, 66.337505 ] ] ] ] } } ] } ] } , @@ -1438,7 +1440,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.885010, -21.534847 ], [ 20.879517, -21.815608 ], [ 19.896240, -21.851302 ], [ 19.896240, -28.459033 ], [ 19.000854, -28.974507 ], [ 18.462524, -29.046566 ], [ 17.836304, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.221069, -28.357568 ], [ 16.825562, -28.081674 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.210571, -27.093364 ], [ 14.990845, -26.115986 ], [ 14.743652, -25.393661 ], [ 14.408569, -23.850674 ], [ 14.386597, -22.654572 ], [ 14.260254, -22.111088 ], [ 14.100952, -21.943046 ], [ 13.870239, -21.698265 ], [ 13.765869, -21.534847 ], [ 20.885010, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.896240, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.758667, -25.869109 ], [ 20.665283, -26.475490 ], [ 20.890503, -26.828973 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.032106 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.502785 ], [ 22.939453, -25.448235 ], [ 22.939453, -33.911454 ], [ 22.571411, -33.865854 ], [ 22.500000, -33.893217 ], [ 21.544189, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.072021, -34.795762 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.858032, -34.443159 ], [ 18.424072, -33.998027 ], [ 18.380127, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.611616 ], [ 18.248291, -32.430977 ], [ 18.220825, -31.662733 ], [ 17.567139, -30.727671 ], [ 17.061768, -29.878755 ], [ 16.347656, -28.574874 ], [ 16.825562, -28.081674 ], [ 17.221069, -28.357568 ], [ 17.385864, -28.782104 ], [ 17.836304, -28.854296 ], [ 18.462524, -29.046566 ], [ 19.000854, -28.974507 ], [ 19.896240, -28.459033 ], [ 19.896240, -24.766785 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -21.534847 ], [ 22.939453, -25.448235 ], [ 22.824097, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.032106 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.890503, -26.828973 ], [ 20.665283, -26.475490 ], [ 20.758667, -25.869109 ], [ 20.165405, -24.916331 ], [ 19.896240, -24.766785 ], [ 19.896240, -21.851302 ], [ 20.879517, -21.815608 ], [ 20.885010, -21.534847 ], [ 22.939453, -21.534847 ] ] ] } } ] } ] } , @@ -1448,8 +1450,6 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.375854, -5.861939 ], [ 16.325684, -5.878332 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.473755, -8.070107 ], [ 18.132935, -7.988518 ], [ 18.462524, -7.847057 ], [ 19.017334, -7.988518 ], [ 19.165649, -7.738208 ], [ 19.418335, -7.155400 ], [ 20.039062, -7.117245 ], [ 20.093994, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.516968, -7.297088 ], [ 21.725464, -7.291639 ], [ 21.747437, -7.917793 ], [ 21.950684, -8.303906 ], [ 21.802368, -8.906780 ], [ 21.873779, -9.524914 ], [ 22.208862, -9.893099 ], [ 22.153931, -11.086775 ], [ 22.401123, -10.995120 ], [ 22.500000, -11.000512 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.995120 ], [ 22.939453, -12.902844 ], [ 22.500000, -12.902844 ], [ 21.934204, -12.897489 ], [ 21.890259, -16.082764 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.899172 ], [ 22.939453, -17.261482 ], [ 22.939453, -17.586431 ], [ 22.500000, -17.680662 ], [ 21.379395, -17.931702 ], [ 18.956909, -17.790535 ], [ 18.264771, -17.308688 ], [ 14.210815, -17.350638 ], [ 14.057007, -17.424029 ], [ 13.463745, -16.972741 ], [ 12.815552, -16.941215 ], [ 12.216797, -17.109293 ], [ 11.733398, -17.303443 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.178345, -14.450639 ], [ 12.502441, -13.549881 ], [ 12.738647, -13.138328 ], [ 13.315430, -12.484850 ], [ 13.634033, -12.039321 ], [ 13.738403, -11.296934 ], [ 13.688965, -10.730778 ], [ 13.386841, -10.374362 ], [ 13.123169, -9.768611 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.564726 ], [ 12.727661, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.321167, -6.102322 ], [ 12.733154, -5.965754 ], [ 13.024292, -5.982144 ], [ 13.375854, -5.861939 ] ] ], [ [ [ 12.623291, -4.439521 ], [ 12.996826, -4.778995 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.249598 ], [ 12.436523, -5.681584 ], [ 12.183838, -5.790897 ], [ 11.914673, -5.036227 ], [ 12.321167, -4.603803 ], [ 12.623291, -4.439521 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.500000, -11.000512 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.802368, -8.906780 ], [ 21.950684, -8.303906 ], [ 21.747437, -7.917793 ], [ 21.725464, -7.291639 ], [ 20.516968, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.942786 ], [ 20.039062, -7.117245 ], [ 19.418335, -7.155400 ], [ 19.165649, -7.738208 ], [ 19.017334, -7.988518 ], [ 18.462524, -7.847057 ], [ 18.132935, -7.988518 ], [ 17.473755, -8.070107 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.375854, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.965754 ], [ 12.321167, -6.102322 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.249598 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.778995 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.144897, -4.510714 ], [ 14.210815, -4.795417 ], [ 14.584351, -4.970560 ], [ 15.172119, -4.340934 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.408081, -1.741065 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.666016, -0.060425 ], [ 17.693481, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.814331, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.934204, -12.897489 ], [ 22.500000, -12.902844 ], [ 22.939453, -12.902844 ], [ 22.939453, -17.261482 ], [ 22.560425, -16.899172 ], [ 22.500000, -16.820316 ], [ 21.890259, -16.082764 ], [ 21.934204, -12.897489 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ], [ 19.896240, -22.350076 ], [ 19.896240, -21.851302 ], [ 20.879517, -21.815608 ], [ 20.912476, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ] ] ] } } @@ -1460,6 +1460,8 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.075459 ], [ 0.000000, 21.795208 ], [ 1.823730, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.686157, 19.854561 ], [ 3.147583, 19.694314 ], [ 3.158569, 19.056926 ], [ 4.268188, 19.155547 ], [ 4.268188, 16.851862 ], [ 3.724365, 16.183024 ], [ 3.636475, 15.570128 ], [ 2.752075, 15.411319 ], [ 1.384277, 15.321274 ], [ 1.016235, 14.966013 ], [ 0.373535, 14.928862 ], [ 0.000000, 14.928862 ], [ -0.263672, 14.923554 ], [ -0.439453, 15.056210 ], [ -0.439453, 22.075459 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 15.056210 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.994263, 13.336175 ], [ 1.021729, 12.849293 ], [ 2.175293, 12.624258 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.108337 ], [ 0.900879, 10.995120 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.439453, 15.056210 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.975586, 22.350076 ], [ 9.244995, 21.943046 ], [ 8.574829, 21.565502 ], [ 5.679932, 19.601194 ], [ 4.268188, 19.155547 ], [ 3.158569, 19.056926 ], [ 3.147583, 19.694314 ], [ 2.686157, 19.854561 ], [ 2.059937, 20.143628 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.795208 ], [ -0.439453, 22.075459 ], [ -0.439453, 22.350076 ], [ 9.975586, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.996338, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.385825 ], [ 15.688477, 19.957860 ], [ 15.298462, 17.926476 ], [ 15.249023, 16.625665 ], [ 13.974609, 15.686510 ], [ 13.540649, 14.365513 ], [ 13.958130, 13.998037 ], [ 13.952637, 13.352210 ], [ 14.595337, 13.330830 ], [ 14.496460, 12.860004 ], [ 14.210815, 12.801088 ], [ 14.183350, 12.484850 ], [ 13.996582, 12.463396 ], [ 13.320923, 13.555222 ], [ 13.084717, 13.597939 ], [ 12.304688, 13.036669 ], [ 11.530151, 13.330830 ], [ 10.991821, 13.389620 ], [ 10.700684, 13.245293 ], [ 10.112915, 13.277373 ], [ 9.525146, 12.849293 ], [ 9.014282, 12.827870 ], [ 7.805786, 13.341520 ], [ 7.333374, 13.095530 ], [ 6.822510, 13.116930 ], [ 6.443481, 13.491131 ], [ 5.443726, 13.864747 ], [ 4.367065, 13.747389 ], [ 4.108887, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.657616 ], [ 2.850952, 12.238023 ], [ 2.488403, 12.232655 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.624258 ], [ 1.021729, 12.849293 ], [ 0.994263, 13.336175 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 1.016235, 14.966013 ], [ 1.384277, 15.321274 ], [ 2.752075, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.724365, 16.183024 ], [ 4.268188, 16.851862 ], [ 4.268188, 19.155547 ], [ 5.679932, 19.601194 ], [ 8.574829, 21.565502 ], [ 9.244995, 21.943046 ], [ 9.975586, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } @@ -1468,19 +1470,15 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.900879, 10.995120 ], [ 0.774536, 10.471607 ], [ 1.422729, 9.822742 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.620483, 6.833716 ], [ 1.867676, 6.140555 ], [ 1.060181, 5.927508 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.488892, 7.411495 ], [ 0.714111, 8.314777 ], [ 0.461426, 8.678779 ], [ 0.368042, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.443726, 13.864747 ], [ 6.443481, 13.491131 ], [ 6.822510, 13.116930 ], [ 7.333374, 13.095530 ], [ 7.805786, 13.341520 ], [ 9.014282, 12.827870 ], [ 9.525146, 12.849293 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.245293 ], [ 10.991821, 13.389620 ], [ 11.530151, 13.330830 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.597939 ], [ 13.320923, 13.555222 ], [ 13.996582, 12.463396 ], [ 14.183350, 12.484850 ], [ 14.578857, 12.087667 ], [ 14.468994, 11.904979 ], [ 14.414062, 11.571525 ], [ 13.573608, 10.800933 ], [ 13.309937, 10.158153 ], [ 13.167114, 9.638661 ], [ 12.952881, 9.416548 ], [ 12.755127, 8.716789 ], [ 12.216797, 8.303906 ], [ 12.062988, 7.798079 ], [ 11.837769, 7.395153 ], [ 11.744385, 6.980954 ], [ 11.057739, 6.642783 ], [ 10.497437, 7.057282 ], [ 10.118408, 7.040927 ], [ 9.525146, 6.451776 ], [ 9.234009, 6.446318 ], [ 8.756104, 5.479300 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.899658, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.610519 ], [ 4.323120, 6.271618 ], [ 3.576050, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.868823 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.443643 ], [ 3.707886, 10.060811 ], [ 3.598022, 10.331132 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.657616 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.108887, 13.533860 ], [ 4.367065, 13.747389 ], [ 5.443726, 13.864747 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.314777 ], [ 0.488892, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.439453, 5.369929 ], [ -0.439453, 11.097556 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496460, 12.860004 ], [ 14.891968, 12.216549 ], [ 14.957886, 11.555380 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.545898, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.122681, 8.379997 ], [ 15.435791, 7.694661 ], [ 15.281982, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.479980, 4.735201 ], [ 14.952393, 4.209465 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.014356 ], [ 15.908203, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.952881, 2.322972 ], [ 12.359619, 2.191238 ], [ 11.749878, 2.328460 ], [ 11.277466, 2.262595 ], [ 9.651489, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.948364, 3.902618 ], [ 8.745117, 4.351889 ], [ 8.486938, 4.494285 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.479300 ], [ 9.234009, 6.446318 ], [ 9.525146, 6.451776 ], [ 10.118408, 7.040927 ], [ 10.497437, 7.057282 ], [ 11.057739, 6.642783 ], [ 11.744385, 6.980954 ], [ 11.837769, 7.395153 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.303906 ], [ 12.755127, 8.716789 ], [ 12.952881, 9.416548 ], [ 13.167114, 9.638661 ], [ 13.309937, 10.158153 ], [ 13.573608, 10.800933 ], [ 14.414062, 11.571525 ], [ 14.468994, 11.904979 ], [ 14.578857, 12.087667 ], [ 14.183350, 12.484850 ], [ 14.210815, 12.801088 ], [ 14.496460, 12.860004 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.140677 ], [ 22.939453, 10.860281 ], [ 22.939453, 4.685930 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.406616, 4.028659 ], [ 21.659546, 4.225900 ], [ 20.928955, 4.324501 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.934937, 4.707828 ], [ 18.544922, 4.203986 ], [ 18.451538, 3.502455 ], [ 17.808838, 3.562765 ], [ 17.133179, 3.727227 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.558963 ], [ 15.864258, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.952393, 4.209465 ], [ 14.479980, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.281982, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.292725, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.890588 ], [ 18.391113, 8.282163 ], [ 18.912964, 8.629903 ], [ 18.814087, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.725464, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.043647 ], [ 22.862549, 11.140677 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.502455 ], [ 18.391113, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.896729, 1.741065 ], [ 17.775879, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.693481, 0.000000 ], [ 17.666016, -0.060425 ], [ 17.633057, -0.439449 ], [ 14.227295, -0.439449 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.038452 ], [ 14.276733, 1.197423 ], [ 14.024048, 1.395126 ], [ 13.282471, 1.312751 ], [ 13.002319, 1.828913 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.941162, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.133179, 3.727227 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.072510, 22.350076 ], [ 18.918457, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.543668 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.934204, 12.586732 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.973550 ], [ 21.725464, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.074976 ], [ 18.814087, 8.982749 ], [ 18.912964, 8.629903 ], [ 18.391113, 8.282163 ], [ 17.962646, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.281982, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.122681, 8.379997 ], [ 14.979858, 8.798225 ], [ 14.545898, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.172363, 10.022948 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.924927, 10.892648 ], [ 14.957886, 11.555380 ], [ 14.891968, 12.216549 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.352210 ], [ 13.958130, 13.998037 ], [ 13.540649, 14.365513 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.298462, 17.926476 ], [ 15.688477, 19.957860 ], [ 15.902710, 20.385825 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.996338, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.072510, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.359619, 2.191238 ], [ 12.952881, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.828913 ], [ 13.282471, 1.312751 ], [ 14.024048, 1.395126 ], [ 14.276733, 1.197423 ], [ 13.842773, 0.038452 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.060120 ], [ 11.277466, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.030755 ], [ 20.291748, 4.691404 ], [ 20.928955, 4.324501 ], [ 21.659546, 4.225900 ], [ 22.406616, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 22.939453, 4.685930 ], [ 22.939453, -0.439449 ], [ 17.633057, -0.439449 ], [ 17.666016, -0.060425 ], [ 17.693481, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.775879, 0.856902 ], [ 17.896729, 1.741065 ], [ 18.094482, 2.366880 ], [ 18.391113, 2.899153 ], [ 18.451538, 3.502455 ], [ 18.544922, 4.203986 ], [ 18.934937, 4.707828 ], [ 19.467773, 5.030755 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 15.543668 ], [ 22.939453, 10.860281 ], [ 22.862549, 11.140677 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.500000, 12.259496 ], [ 22.285767, 12.645698 ], [ 21.934204, 12.586732 ], [ 22.038574, 12.956383 ], [ 22.296753, 13.373588 ], [ 22.181396, 13.784737 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.104613 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.785505 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.543668 ] ] ] } } ] } ] } , @@ -1490,13 +1488,13 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.533447, 41.310824 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.022339, 40.842905 ], [ 21.000366, 40.580585 ], [ 20.676270, 40.434405 ], [ 20.615845, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.694507 ], [ 19.962158, 39.913950 ], [ 19.407349, 40.250184 ], [ 19.319458, 40.726446 ], [ 19.352417, 40.979898 ], [ 19.390869, 41.310824 ], [ 20.533447, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.348326 ], [ 10.211792, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.030273, 37.090240 ], [ 11.101685, 36.901587 ], [ 10.601807, 36.408021 ], [ 10.590820, 35.946883 ], [ 10.936890, 35.697456 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.329828 ], [ 10.338135, 33.783713 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.760867 ], [ 9.948120, 31.377089 ], [ 10.057983, 30.963479 ], [ 9.970093, 30.538608 ], [ 9.481201, 30.306503 ], [ 9.058228, 32.101190 ], [ 8.437500, 32.505129 ], [ 8.432007, 32.750323 ], [ 7.613525, 33.344296 ], [ 7.525635, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.377075, 35.478565 ], [ 8.217773, 36.434542 ], [ 8.421021, 36.945502 ], [ 9.508667, 37.348326 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.258569 ], [ 22.851562, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.330857 ], [ 22.774658, 37.304645 ], [ 22.939453, 36.923548 ], [ 22.939453, 36.416862 ], [ 22.500000, 36.408021 ], [ 22.489014, 36.408021 ], [ 21.670532, 36.844461 ], [ 21.296997, 37.644685 ], [ 21.121216, 38.311491 ], [ 20.731201, 38.771216 ], [ 20.220337, 39.338546 ], [ 20.148926, 39.626846 ], [ 20.615845, 40.111689 ], [ 20.676270, 40.434405 ], [ 21.000366, 40.580585 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 22.939453, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.116526 ], [ 7.734375, 36.884014 ], [ 8.421021, 36.945502 ], [ 8.217773, 36.434542 ], [ 8.377075, 35.478565 ], [ 8.140869, 34.655804 ], [ 7.525635, 34.098159 ], [ 7.613525, 33.344296 ], [ 8.432007, 32.750323 ], [ 8.437500, 32.505129 ], [ 9.058228, 32.101190 ], [ 9.481201, 30.306503 ], [ 9.805298, 29.425245 ], [ 9.860229, 28.960089 ], [ 9.684448, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.629517, 27.142257 ], [ 9.717407, 26.509905 ], [ 9.321899, 26.096255 ], [ 9.909668, 25.363882 ], [ 9.948120, 24.936257 ], [ 10.305176, 24.377121 ], [ 10.772095, 24.562112 ], [ 11.563110, 24.096619 ], [ 11.997070, 23.473324 ], [ 9.244995, 21.943046 ], [ 8.525391, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.075459 ], [ -0.439453, 35.840082 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.505371, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.164062, 36.782892 ], [ 4.817505, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.262207, 37.112146 ], [ 7.327881, 37.116526 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.796631, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.533447, 41.310824 ], [ 22.796631, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.229550 ], [ 15.161133, 37.444335 ], [ 15.309448, 37.134045 ], [ 15.100708, 36.619937 ], [ 14.337158, 36.998166 ], [ 13.826294, 37.103384 ], [ 12.431030, 37.614231 ], [ 12.568359, 38.125915 ], [ 13.743896, 38.035112 ], [ 15.518188, 38.229550 ] ] ], [ [ [ 16.463013, 41.310824 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.876141 ], [ 18.374634, 40.354917 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.171631, 39.423464 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.688477, 38.216604 ], [ 15.891724, 38.749799 ], [ 16.111450, 38.963680 ], [ 15.721436, 39.542176 ], [ 15.413818, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.705200, 40.605612 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.788086, 41.310824 ], [ 16.463013, 41.310824 ] ] ], [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.501269 ], [ 9.667969, 39.176917 ], [ 9.217529, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.712158, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.791892 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.713355 ], [ 15.243530, 32.263911 ], [ 15.715942, 31.377089 ], [ 16.611328, 31.179910 ], [ 18.023071, 30.765439 ], [ 19.088745, 30.268556 ], [ 19.572144, 30.524413 ], [ 20.055542, 30.987028 ], [ 19.819336, 31.751525 ], [ 20.132446, 32.236036 ], [ 20.852051, 32.708733 ], [ 21.544189, 32.842674 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.579221 ], [ 22.939453, 21.534847 ], [ 19.764404, 21.534847 ], [ 18.918457, 21.943046 ], [ 15.858765, 23.407806 ], [ 14.853516, 22.862256 ], [ 14.144897, 22.492257 ], [ 13.579102, 23.039298 ], [ 11.997070, 23.473324 ], [ 11.563110, 24.096619 ], [ 10.772095, 24.562112 ], [ 10.305176, 24.377121 ], [ 9.948120, 24.936257 ], [ 9.909668, 25.363882 ], [ 9.321899, 26.096255 ], [ 9.717407, 26.509905 ], [ 9.629517, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.684448, 28.144660 ], [ 9.860229, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.306503 ], [ 9.970093, 30.538608 ], [ 10.057983, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.760867 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.039298 ], [ 14.144897, 22.492257 ], [ 14.853516, 22.862256 ], [ 14.996338, 21.943046 ], [ 15.062256, 21.534847 ], [ 8.525391, 21.534847 ], [ 9.244995, 21.943046 ], [ 11.997070, 23.473324 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.407806 ], [ 18.918457, 21.943046 ], [ 19.764404, 21.534847 ], [ 15.062256, 21.534847 ], [ 14.996338, 21.943046 ], [ 14.853516, 22.862256 ], [ 15.858765, 23.407806 ] ] ] } } ] } @@ -1510,41 +1508,35 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.007769 ], [ 11.958618, 54.197797 ], [ 12.518921, 54.470038 ], [ 13.645020, 54.075506 ], [ 14.117432, 53.758454 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.089633 ], [ 14.606323, 51.744038 ], [ 15.018311, 51.106971 ], [ 14.573364, 51.003386 ], [ 14.309692, 51.117317 ], [ 14.057007, 50.927276 ], [ 13.337402, 50.732978 ], [ 12.969360, 50.485474 ], [ 12.238770, 50.264765 ], [ 12.414551, 49.968889 ], [ 12.518921, 49.546598 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.875554 ], [ 13.244019, 48.414619 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.635784 ], [ 12.930908, 47.468950 ], [ 12.623291, 47.672786 ], [ 12.139893, 47.702368 ], [ 11.425781, 47.524620 ], [ 10.546875, 47.565407 ], [ 10.404053, 47.301585 ], [ 9.898682, 47.580231 ], [ 9.596558, 47.524620 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.016257 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.802463 ], [ 5.987549, 51.852746 ], [ 6.591797, 51.852746 ], [ 6.844482, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.102661, 53.693454 ], [ 7.937622, 53.748711 ], [ 8.124390, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.574829, 54.396550 ], [ 8.525391, 54.961848 ], [ 9.283447, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971313, 51.474540 ], [ 5.608521, 51.037940 ], [ 6.157837, 50.802463 ], [ 6.042480, 50.127622 ], [ 5.784302, 50.088869 ], [ 5.674438, 49.528774 ], [ 4.801025, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.125610, 50.781629 ], [ 2.658691, 50.795519 ], [ 2.515869, 51.148340 ], [ 3.312378, 51.344339 ], [ 4.048462, 51.268789 ], [ 4.971313, 51.474540 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.240234, 49.901711 ], [ 6.185303, 49.464554 ], [ 5.899658, 49.443129 ], [ 5.674438, 49.528774 ], [ 5.784302, 50.088869 ], [ 6.042480, 50.127622 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.596558, 47.524620 ], [ 9.635010, 47.346267 ], [ 9.481201, 47.103784 ], [ 9.931641, 46.920255 ], [ 10.442505, 46.893985 ], [ 10.365601, 46.483265 ], [ 9.920654, 46.316584 ], [ 9.184570, 46.441642 ], [ 8.964844, 46.035109 ], [ 8.492432, 46.004593 ], [ 8.316650, 46.164614 ], [ 7.756348, 45.824971 ], [ 7.272949, 45.775186 ], [ 6.844482, 45.989329 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.724800 ], [ 6.767578, 47.286682 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.519897, 47.831596 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.008664 ], [ 9.558105, 42.151187 ], [ 9.228516, 41.380930 ], [ 8.778076, 41.582580 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.008664 ] ] ], [ [ [ 2.515869, 51.148340 ], [ 2.658691, 50.795519 ], [ 3.125610, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.674438, 49.528774 ], [ 5.899658, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.286682 ], [ 6.036987, 46.724800 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.710015 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.695680 ], [ 6.531372, 43.129052 ], [ 4.559326, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.829224, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.581400 ], [ 0.000000, 42.662241 ], [ -0.439453, 42.771211 ], [ -0.439453, 49.532339 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.515869, 51.148340 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.041260, 55.363503 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.980591, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.200806, 56.022948 ], [ 9.953613, 55.776573 ], [ 9.651489, 55.469513 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.961848 ], [ 8.118896, 55.516192 ], [ 8.113403, 55.776573 ], [ 8.107910, 56.022948 ], [ 10.200806, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.254517, 49.037868 ], [ 16.029053, 48.734455 ], [ 16.501465, 48.785152 ], [ 16.962891, 48.596592 ], [ 16.880493, 48.469279 ], [ 16.979370, 48.122101 ], [ 16.902466, 47.713458 ], [ 16.342163, 47.713458 ], [ 16.534424, 47.494937 ], [ 16.204834, 46.852678 ], [ 16.012573, 46.683363 ], [ 15.139160, 46.656977 ], [ 14.633789, 46.430285 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.766206 ], [ 12.150879, 47.115000 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.751153 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.103784 ], [ 9.635010, 47.346267 ], [ 9.596558, 47.524620 ], [ 9.898682, 47.580231 ], [ 10.404053, 47.301585 ], [ 10.546875, 47.565407 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.702368 ], [ 12.623291, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.635784 ], [ 12.881470, 48.290503 ], [ 13.244019, 48.414619 ], [ 13.595581, 48.875554 ], [ 14.337158, 48.556614 ], [ 14.902954, 48.965794 ], [ 15.254517, 49.037868 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.309692, 51.117317 ], [ 14.573364, 51.003386 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.721191, 50.215580 ], [ 16.869507, 50.474987 ], [ 17.556152, 50.362985 ], [ 17.649536, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.545166, 48.799627 ], [ 17.100220, 48.817716 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.254517, 49.037868 ], [ 14.902954, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.875554 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.264765 ], [ 12.969360, 50.485474 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.309692, 51.117317 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.204834, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.567383, 46.502173 ], [ 15.770874, 46.236853 ], [ 15.671997, 45.832627 ], [ 15.325928, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.633246 ], [ 14.414062, 45.467836 ], [ 13.716431, 45.498647 ], [ 13.936157, 45.590978 ], [ 13.699951, 46.016039 ], [ 13.804321, 46.509735 ], [ 14.633789, 46.430285 ], [ 15.139160, 46.656977 ], [ 16.012573, 46.683363 ], [ 16.204834, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.502173 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.555908, 45.081279 ], [ 17.863770, 45.069641 ], [ 17.001343, 45.232349 ], [ 16.534424, 45.213004 ], [ 16.320190, 45.003651 ], [ 15.957642, 45.232349 ], [ 15.748901, 44.816916 ], [ 16.237793, 44.351350 ], [ 16.457520, 44.040219 ], [ 16.913452, 43.667872 ], [ 17.297974, 43.444943 ], [ 17.677002, 43.028745 ], [ 18.561401, 42.650122 ], [ 18.451538, 42.480200 ], [ 17.512207, 42.851806 ], [ 16.929932, 43.209180 ], [ 16.018066, 43.508721 ], [ 15.172119, 44.241264 ], [ 15.375366, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.077400 ], [ 14.260254, 45.232349 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.677979, 45.483244 ], [ 13.716431, 45.498647 ], [ 14.414062, 45.467836 ], [ 14.595337, 45.633246 ], [ 14.935913, 45.471688 ], [ 15.325928, 45.452424 ], [ 15.325928, 45.733025 ], [ 15.671997, 45.832627 ], [ 15.770874, 46.236853 ], [ 16.567383, 46.502173 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.232349 ], [ 17.863770, 45.069641 ], [ 18.555908, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.368896, 44.863656 ], [ 19.116211, 44.422011 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.220581, 43.524655 ], [ 19.033813, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.561401, 42.650122 ], [ 17.677002, 43.028745 ], [ 17.297974, 43.444943 ], [ 16.913452, 43.667872 ], [ 16.457520, 44.040219 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.816916 ], [ 15.957642, 45.232349 ], [ 16.320190, 45.003651 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.232349 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.571540 ], [ 19.824829, 49.217597 ], [ 20.418091, 49.432413 ], [ 20.890503, 49.328702 ], [ 21.610107, 49.471694 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.088013, 48.421910 ], [ 21.873779, 48.319734 ], [ 20.802612, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.327039 ], [ 19.769897, 48.202710 ], [ 19.660034, 48.264913 ], [ 19.176636, 48.111099 ], [ 18.775635, 48.081749 ], [ 18.698730, 47.879513 ], [ 17.858276, 47.757791 ], [ 17.490234, 47.868459 ], [ 16.979370, 48.122101 ], [ 16.880493, 48.469279 ], [ 17.100220, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.105469, 49.045070 ], [ 18.171387, 49.271389 ], [ 18.402100, 49.314380 ], [ 18.555908, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.571540 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.273206 ], [ 20.956421, 43.129052 ], [ 21.143188, 43.068888 ], [ 21.275024, 42.908160 ], [ 21.439819, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.682435 ], [ 21.665039, 42.439674 ], [ 21.544189, 42.322001 ], [ 21.577148, 42.244785 ], [ 21.351929, 42.208176 ], [ 20.764160, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.216314 ], [ 20.286255, 42.322001 ], [ 20.072021, 42.589489 ], [ 20.258789, 42.811522 ], [ 20.494995, 42.884015 ], [ 20.637817, 43.217187 ], [ 20.813599, 43.273206 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.502173 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.555908, 45.081279 ], [ 17.863770, 45.069641 ], [ 17.001343, 45.232349 ], [ 16.534424, 45.213004 ], [ 16.320190, 45.003651 ], [ 15.957642, 45.232349 ], [ 15.748901, 44.816916 ], [ 16.237793, 44.351350 ], [ 16.457520, 44.040219 ], [ 16.913452, 43.667872 ], [ 17.297974, 43.444943 ], [ 17.677002, 43.028745 ], [ 18.561401, 42.650122 ], [ 18.451538, 42.480200 ], [ 17.512207, 42.851806 ], [ 16.929932, 43.209180 ], [ 16.018066, 43.508721 ], [ 15.172119, 44.241264 ], [ 15.375366, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.077400 ], [ 14.260254, 45.232349 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.677979, 45.483244 ], [ 13.716431, 45.498647 ], [ 14.414062, 45.467836 ], [ 14.595337, 45.633246 ], [ 14.935913, 45.471688 ], [ 15.325928, 45.452424 ], [ 15.325928, 45.733025 ], [ 15.671997, 45.832627 ], [ 15.770874, 46.236853 ], [ 16.567383, 46.502173 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.686473 ], [ 19.802856, 42.500453 ], [ 20.072021, 42.589489 ], [ 20.286255, 42.322001 ], [ 20.522461, 42.216314 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.022339, 40.842905 ], [ 21.005859, 40.647304 ], [ 19.335938, 40.647304 ], [ 19.319458, 40.726446 ], [ 19.352417, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.718030 ], [ 19.374390, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.686473 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.594116, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.764160, 45.733025 ], [ 20.874023, 45.417732 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.476911 ], [ 22.461548, 44.703802 ], [ 22.500000, 44.680372 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.173135 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.698586 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 21.917725, 42.301690 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.322001 ], [ 21.665039, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.678397 ], [ 21.439819, 42.863886 ], [ 21.275024, 42.908160 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.129052 ], [ 20.813599, 43.273206 ], [ 20.637817, 43.217187 ], [ 20.494995, 42.884015 ], [ 20.258789, 42.811522 ], [ 20.341187, 42.900113 ], [ 19.956665, 43.104994 ], [ 19.632568, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.220581, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.422011 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.284469 ], [ 22.730713, 54.326135 ], [ 22.648315, 54.581613 ], [ 22.758179, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 49.862776 ], [ 22.939453, 47.997274 ], [ 22.708740, 47.883197 ], [ 22.642822, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.088013, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.774658, 49.027063 ], [ 22.516479, 49.475263 ], [ 22.939453, 49.862776 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.802612, 48.625647 ], [ 21.873779, 48.319734 ], [ 22.088013, 48.421910 ], [ 22.500000, 48.221013 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 21.626587, 46.995241 ], [ 21.022339, 46.316584 ], [ 20.220337, 46.126556 ], [ 19.594116, 46.172223 ], [ 18.830566, 45.909122 ], [ 18.457031, 45.759859 ], [ 17.627563, 45.951150 ], [ 16.880493, 46.381044 ], [ 16.567383, 46.502173 ], [ 16.369629, 46.841407 ], [ 16.204834, 46.852678 ], [ 16.534424, 47.494937 ], [ 16.342163, 47.713458 ], [ 16.902466, 47.713458 ], [ 16.979370, 48.122101 ], [ 17.490234, 47.868459 ], [ 17.858276, 47.757791 ], [ 18.698730, 47.879513 ], [ 18.775635, 48.081749 ], [ 19.176636, 48.111099 ], [ 19.660034, 48.264913 ], [ 19.769897, 48.202710 ], [ 20.236816, 48.327039 ], [ 20.473022, 48.563885 ], [ 20.802612, 48.625647 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.335576 ], [ 22.939453, 40.647304 ], [ 21.005859, 40.647304 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.939453, 41.335576 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.173135 ], [ 22.939453, 41.459195 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.698586 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.173135 ] ] ], [ [ [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ], [ 22.939453, 43.830564 ], [ 22.939453, 43.253205 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 47.997274 ], [ 22.939453, 43.830564 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 21.560669, 44.770137 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.764160, 45.733025 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.708740, 47.883197 ], [ 22.939453, 47.997274 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.939453, 41.459195 ], [ 22.939453, 41.335576 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.764160, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.917725, 42.301690 ], [ 22.379150, 42.322001 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.684448, 40.647304 ], [ 8.283691, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.712158, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ], [ [ [ 12.150879, 47.115000 ], [ 12.376099, 46.766206 ], [ 13.804321, 46.509735 ], [ 13.699951, 46.016039 ], [ 13.936157, 45.590978 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.590332, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.759113 ], [ 15.144653, 41.955405 ], [ 15.924683, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.891724, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.876141 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.705729 ], [ 11.189575, 42.354485 ], [ 10.513916, 42.932296 ], [ 10.200806, 43.921637 ], [ 9.700928, 44.036270 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.229457 ], [ 7.849731, 43.767127 ], [ 7.437744, 43.695680 ], [ 7.547607, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.751099, 45.026950 ], [ 7.097168, 45.332840 ], [ 6.800537, 45.710015 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.824971 ], [ 8.316650, 46.164614 ], [ 8.492432, 46.004593 ], [ 8.964844, 46.035109 ], [ 9.184570, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.365601, 46.483265 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.751153 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.115000 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.269531, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.758179, 54.857640 ], [ 22.648315, 54.581613 ], [ 22.730713, 54.326135 ], [ 22.500000, 54.326135 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.425322 ], [ 19.890747, 54.867124 ], [ 21.269531, 55.191412 ] ] ] } } ] } @@ -1554,11 +1546,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.551147, 66.687784 ], [ 15.391846, 66.513260 ], [ 15.106201, 66.193792 ], [ 13.557129, 64.788168 ], [ 13.919678, 64.444372 ], [ 13.573608, 64.048171 ], [ 12.579346, 64.067396 ], [ 11.931152, 63.129538 ], [ 11.991577, 61.799093 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.116882 ], [ 11.469727, 59.431110 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.382568, 58.312374 ], [ 7.047729, 58.077876 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.662192 ], [ 4.993286, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.552856, 63.452964 ], [ 10.530396, 64.486993 ], [ 12.359619, 65.879215 ], [ 13.128662, 66.513260 ], [ 13.342896, 66.687784 ], [ 15.551147, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.847768 ], [ 22.500000, 65.775744 ], [ 22.181396, 65.723852 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.413549 ], [ 19.780884, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.122192, 61.341444 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.869263, 58.952841 ], [ 16.831055, 58.719747 ], [ 16.446533, 57.040730 ], [ 15.880737, 56.105747 ], [ 14.666748, 56.200593 ], [ 14.364624, 55.776573 ], [ 14.188843, 55.528631 ], [ 12.886963, 55.528631 ], [ 12.804565, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.788330, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.469727, 59.431110 ], [ 12.299194, 60.116882 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.799093 ], [ 11.931152, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.573608, 64.048171 ], [ 13.919678, 64.444372 ], [ 13.557129, 64.788168 ], [ 15.106201, 66.193792 ], [ 15.391846, 66.513260 ], [ 15.551147, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 64.057785 ], [ 22.939453, 59.855851 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 21.324463, 60.718885 ], [ 21.544189, 61.705499 ], [ 21.060791, 62.608508 ], [ 21.538696, 63.189064 ], [ 22.445068, 63.818864 ], [ 22.939453, 64.057785 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.939453, 57.365052 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.325675 ], [ 22.203369, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.782827 ], [ 21.582642, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.847768 ], [ 22.500000, 65.775744 ], [ 22.181396, 65.723852 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.413549 ], [ 19.780884, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.122192, 61.341444 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.869263, 58.952841 ], [ 16.831055, 58.719747 ], [ 16.446533, 57.040730 ], [ 15.880737, 56.105747 ], [ 14.666748, 56.200593 ], [ 14.364624, 55.776573 ], [ 14.188843, 55.528631 ], [ 12.886963, 55.528631 ], [ 12.804565, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.788330, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.469727, 59.431110 ], [ 12.299194, 60.116882 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.799093 ], [ 11.931152, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.573608, 64.048171 ], [ 13.919678, 64.444372 ], [ 13.557129, 64.788168 ], [ 15.106201, 66.193792 ], [ 15.391846, 66.513260 ], [ 15.551147, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.203369, 56.337856 ], [ 22.500000, 56.325675 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.181641, 55.528631 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.203369, 56.337856 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.628784, 55.528631 ], [ 10.986328, 55.528631 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.216634 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.610909 ], [ 10.914917, 56.459455 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.191424 ], [ 9.953613, 55.776573 ], [ 9.706421, 55.528631 ], [ 8.118896, 55.528631 ], [ 8.113403, 55.776573 ], [ 8.091431, 56.541315 ], [ 8.256226, 56.809901 ], [ 8.541870, 57.109402 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } ] } ] } , @@ -1566,6 +1558,8 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.379395, 70.255741 ], [ 22.500000, 70.218593 ], [ 22.939453, 70.205576 ], [ 22.939453, 68.863517 ], [ 22.500000, 68.847665 ], [ 22.357178, 68.841718 ], [ 21.247559, 69.370638 ], [ 20.643311, 69.105818 ], [ 20.022583, 69.064638 ], [ 19.879761, 68.407268 ], [ 17.995605, 68.566406 ], [ 17.726440, 68.009628 ], [ 16.770630, 68.013742 ], [ 15.391846, 66.513260 ], [ 15.238037, 66.337505 ], [ 12.908936, 66.337505 ], [ 13.128662, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.562391 ], [ 19.182129, 69.816891 ], [ 21.379395, 70.255741 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.247559, 69.370638 ], [ 22.357178, 68.841718 ], [ 22.500000, 68.847665 ], [ 22.939453, 68.863517 ], [ 22.939453, 68.200133 ], [ 22.500000, 68.391090 ], [ 21.978149, 68.616534 ], [ 20.643311, 69.105818 ], [ 21.247559, 69.370638 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.105818 ], [ 21.978149, 68.616534 ], [ 22.500000, 68.391090 ], [ 22.939453, 68.200133 ], [ 22.939453, 66.337505 ], [ 15.238037, 66.337505 ], [ 15.391846, 66.513260 ], [ 16.111450, 67.301737 ], [ 16.770630, 68.013742 ], [ 17.726440, 68.009628 ], [ 17.995605, 68.566406 ], [ 19.879761, 68.407268 ], [ 20.022583, 69.064638 ], [ 20.643311, 69.105818 ] ] ] } } ] } ] } @@ -1610,11 +1604,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.860352, -21.534847 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.657349, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.100909 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.637005 ], [ 28.267822, -21.534847 ], [ 31.860352, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.267822, -21.534847 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.784668, -24.241956 ], [ 26.488037, -24.617057 ], [ 25.944214, -24.696934 ], [ 25.768433, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.735962, -25.388698 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.032106 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.322960 ], [ 22.060547, -21.534847 ], [ 28.267822, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.587040 ], [ 45.411987, -25.601902 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.764038, -24.462151 ], [ 43.698120, -23.574057 ], [ 43.346558, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.385010, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.432373, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.273847 ], [ 30.657349, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.668091, -23.659619 ], [ 31.931763, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.844393 ], [ 31.333008, -25.661333 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.679321, -26.396790 ], [ 30.684814, -26.745610 ], [ 31.283569, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.735799 ], [ 32.832642, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.464600, -28.299544 ], [ 32.200928, -28.753213 ], [ 31.327515, -29.401320 ], [ 30.899048, -29.912091 ], [ 30.624390, -30.424993 ], [ 30.053101, -31.142305 ], [ 28.927002, -32.170963 ], [ 28.218384, -32.773419 ], [ 27.465820, -33.224903 ], [ 26.422119, -33.614619 ], [ 25.911255, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.175171, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.593140, -33.792844 ], [ 22.988892, -33.916013 ], [ 22.571411, -33.865854 ], [ 22.500000, -33.893217 ], [ 22.060547, -34.061761 ], [ 22.060547, -26.322960 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.032106 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.502785 ], [ 23.312988, -25.269536 ], [ 23.735962, -25.388698 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.768433, -25.175117 ], [ 25.944214, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.784668, -24.241956 ], [ 27.119751, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.432373, -22.090730 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.849485 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.873992 ], [ 27.751465, -30.647364 ], [ 28.108521, -30.548070 ], [ 28.289795, -30.225848 ], [ 28.850098, -30.069094 ], [ 29.020386, -29.745302 ], [ 29.322510, -29.257649 ], [ 28.976440, -28.955282 ], [ 28.542480, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.267822, -21.534847 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.784668, -24.241956 ], [ 26.488037, -24.617057 ], [ 25.944214, -24.696934 ], [ 25.768433, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.735962, -25.388698 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.032106 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.322960 ], [ 22.060547, -21.534847 ], [ 28.267822, -21.534847 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.661333 ], [ 31.838379, -25.844393 ], [ 31.986694, -26.293415 ], [ 32.069092, -26.735799 ], [ 31.865845, -27.176469 ], [ 31.283569, -27.283926 ], [ 30.684814, -26.745610 ], [ 30.679321, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.661333 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.542480, -28.647210 ], [ 28.976440, -28.955282 ], [ 29.322510, -29.257649 ], [ 29.020386, -29.745302 ], [ 28.850098, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.108521, -30.548070 ], [ 27.751465, -30.647364 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.243270 ], [ 28.075562, -28.849485 ], [ 28.542480, -28.647210 ] ] ] } } ] } ] } , @@ -1622,25 +1618,21 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.319092, 0.439449 ], [ 43.137817, 0.291136 ], [ 42.874146, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.995483, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.989990, 0.439449 ], [ 43.319092, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.032593, -17.298199 ], [ 24.680786, -17.355882 ], [ 25.076294, -17.581194 ], [ 25.081787, -17.659726 ], [ 24.521484, -17.884659 ], [ 24.219360, -17.889887 ], [ 23.576660, -18.281518 ], [ 23.197632, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.780074 ], [ 22.500000, -17.680662 ], [ 23.214111, -17.523583 ], [ 24.032593, -17.298199 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.129028, 0.439449 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.950274 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.016182 ], [ 30.421143, -1.137010 ], [ 29.822388, -1.444549 ], [ 29.580688, -1.340210 ], [ 29.586182, -0.587758 ], [ 29.816895, -0.203247 ], [ 29.833374, 0.000000 ], [ 29.866333, 0.439449 ], [ 34.129028, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, -12.897489 ], [ 22.060547, -9.730714 ], [ 22.208862, -9.893099 ], [ 22.153931, -11.086775 ], [ 22.401123, -10.995120 ], [ 22.500000, -11.000512 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.237674 ], [ 23.906250, -11.722167 ], [ 24.082031, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.913552 ], [ 22.500000, -12.902844 ], [ 22.060547, -12.897489 ] ] ], [ [ [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.899172 ], [ 23.214111, -17.523583 ], [ 22.500000, -17.680662 ], [ 22.060547, -17.780074 ], [ 22.060547, -16.288506 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.421143, -1.137010 ], [ 30.816650, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.470581, -2.416276 ], [ 29.937744, -2.350415 ], [ 29.630127, -2.915611 ], [ 29.025879, -2.838804 ], [ 29.119263, -2.290039 ], [ 29.256592, -2.213195 ], [ 29.289551, -1.620267 ], [ 29.580688, -1.340210 ], [ 29.822388, -1.444549 ], [ 30.421143, -1.137010 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.903809, -0.950274 ], [ 34.074097, -1.060120 ], [ 37.699585, -3.096636 ], [ 37.765503, -3.677892 ], [ 39.204712, -4.674980 ], [ 38.743286, -5.911117 ], [ 38.798218, -6.473609 ], [ 39.440918, -6.839170 ], [ 39.468384, -7.100893 ], [ 39.193726, -7.705548 ], [ 39.254150, -8.010276 ], [ 39.188232, -8.483239 ], [ 39.534302, -9.112945 ], [ 39.951782, -10.098670 ], [ 40.314331, -10.314919 ], [ 39.523315, -10.898042 ], [ 38.430176, -11.286161 ], [ 37.825928, -11.270000 ], [ 37.468872, -11.566144 ], [ 36.776733, -11.593051 ], [ 36.513062, -11.722167 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.761230, -9.232249 ], [ 32.189941, -8.928487 ], [ 31.558228, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.341953 ], [ 30.201416, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.421387, -5.938436 ], [ 29.520264, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.119019, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.359889 ], [ 30.745239, -3.036298 ], [ 30.525513, -2.805885 ], [ 30.470581, -2.416276 ], [ 30.756226, -2.284551 ], [ 30.816650, -1.697139 ], [ 30.421143, -1.137010 ], [ 30.767212, -1.016182 ], [ 31.865845, -1.027167 ], [ 33.903809, -0.950274 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "name_sort": "Burundi", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.350415 ], [ 30.470581, -2.416276 ], [ 30.525513, -2.805885 ], [ 30.745239, -3.036298 ], [ 30.750732, -3.359889 ], [ 30.503540, -3.568248 ], [ 30.119019, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.278564, -3.294082 ], [ 29.025879, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.350415 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.238674 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.591884 ], [ 31.558228, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.761230, -9.232249 ], [ 33.233643, -9.676569 ], [ 33.486328, -10.525619 ], [ 33.316040, -10.795537 ], [ 33.112793, -11.609193 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.689819, -13.715372 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.948975, -16.040534 ], [ 28.828125, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.292954 ], [ 27.042847, -17.936929 ], [ 26.707764, -17.963058 ], [ 26.383667, -17.848061 ], [ 25.263062, -17.738223 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.581194 ], [ 24.680786, -17.355882 ], [ 24.032593, -17.298199 ], [ 23.214111, -17.523583 ], [ 22.560425, -16.899172 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.902844 ], [ 24.016113, -12.913552 ], [ 23.928223, -12.565287 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.722167 ], [ 24.016113, -11.237674 ], [ 23.911743, -10.925011 ], [ 24.257812, -10.951978 ], [ 24.312744, -11.264612 ], [ 24.785156, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.786703 ], [ 26.553955, -11.926478 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.526001, -12.699292 ], [ 28.932495, -13.250640 ], [ 29.701538, -13.255986 ], [ 29.613647, -12.178965 ], [ 29.338989, -12.361466 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.498535, -10.790141 ], [ 28.674316, -9.606166 ], [ 28.449097, -9.167179 ], [ 28.734741, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.238674 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.882093 ], [ 31.173706, -15.860958 ], [ 31.635132, -16.072207 ], [ 31.849365, -16.320139 ], [ 32.327271, -16.393931 ], [ 32.849121, -16.715124 ], [ 32.849121, -17.978733 ], [ 32.656860, -18.672267 ], [ 32.612915, -19.419973 ], [ 32.772217, -19.715000 ], [ 32.662354, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.657349, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.100909 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.729492, -20.853679 ], [ 27.723999, -20.499064 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.295590 ], [ 25.850830, -18.713894 ], [ 25.647583, -18.536909 ], [ 25.263062, -17.738223 ], [ 26.383667, -17.848061 ], [ 26.707764, -17.963058 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.292954 ], [ 28.465576, -16.467695 ], [ 28.828125, -16.388661 ], [ 28.948975, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.439449 ], [ 40.989990, 0.000000 ], [ 40.995483, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.885620, -2.081451 ], [ 40.638428, -2.498597 ], [ 40.264893, -2.575426 ], [ 40.122070, -3.277630 ], [ 39.797974, -3.683373 ], [ 39.605713, -4.346411 ], [ 39.204712, -4.674980 ], [ 37.765503, -3.677892 ], [ 37.699585, -3.096636 ], [ 34.074097, -1.060120 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.129028, 0.439449 ], [ 40.989990, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.280966 ], [ 34.557495, -13.581921 ], [ 34.909058, -13.565902 ], [ 35.266113, -13.886079 ], [ 35.689087, -14.610163 ], [ 35.771484, -15.897942 ], [ 35.337524, -16.109153 ], [ 35.035400, -16.799282 ], [ 34.381714, -16.183024 ], [ 34.304810, -15.480151 ], [ 34.519043, -15.013769 ], [ 34.458618, -14.615478 ], [ 34.063110, -14.360191 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.689819, -13.715372 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.112793, -11.609193 ], [ 33.316040, -10.795537 ], [ 33.486328, -10.525619 ], [ 33.233643, -9.676569 ], [ 32.761230, -9.232249 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.479126, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.599976, -14.200488 ], [ 40.775757, -14.689881 ], [ 40.479126, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.540039, -17.098792 ], [ 37.408447, -17.586431 ], [ 36.282349, -18.661859 ], [ 35.897827, -18.843913 ], [ 35.200195, -19.554614 ], [ 34.788208, -19.782211 ], [ 34.700317, -20.499064 ], [ 35.178223, -21.253542 ], [ 35.375977, -21.841105 ], [ 35.375977, -21.943046 ], [ 35.386963, -22.141620 ], [ 35.562744, -22.090730 ], [ 35.557251, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.253513 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.662354, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.612915, -19.419973 ], [ 32.656860, -18.672267 ], [ 32.849121, -17.978733 ], [ 32.849121, -16.715124 ], [ 32.327271, -16.393931 ], [ 31.849365, -16.320139 ], [ 31.635132, -16.072207 ], [ 31.173706, -15.860958 ], [ 30.338745, -15.882093 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.796128 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.360191 ], [ 34.458618, -14.615478 ], [ 34.519043, -15.013769 ], [ 34.304810, -15.480151 ], [ 34.381714, -16.183024 ], [ 35.035400, -16.799282 ], [ 35.337524, -16.109153 ], [ 35.771484, -15.897942 ], [ 35.689087, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.909058, -13.565902 ], [ 34.557495, -13.581921 ], [ 34.277344, -12.280966 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.722167 ], [ 36.776733, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.270000 ], [ 38.430176, -11.286161 ], [ 39.523315, -10.898042 ], [ 40.314331, -10.314919 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.439449 ], [ 40.989990, 0.000000 ], [ 40.995483, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.885620, -2.081451 ], [ 40.638428, -2.498597 ], [ 40.264893, -2.575426 ], [ 40.122070, -3.277630 ], [ 39.797974, -3.683373 ], [ 39.605713, -4.346411 ], [ 39.204712, -4.674980 ], [ 37.765503, -3.677892 ], [ 37.699585, -3.096636 ], [ 34.074097, -1.060120 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.129028, 0.439449 ], [ 40.989990, 0.439449 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -15.998295 ], [ 45.439453, -22.350076 ], [ 43.291626, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.434448, -21.335432 ], [ 43.895874, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.435514 ], [ 44.230957, -18.963442 ], [ 44.044189, -18.333669 ], [ 43.961792, -17.408305 ], [ 44.313354, -16.851862 ], [ 44.445190, -16.214675 ], [ 44.945068, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.439453, -15.998295 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.432373, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.273847 ], [ 30.657349, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.223145, -22.350076 ], [ 28.937988, -22.350076 ], [ 29.432373, -22.090730 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.738223 ], [ 25.647583, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.295590 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.729492, -20.853679 ], [ 28.020630, -21.483741 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.937988, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.197632, -17.868975 ], [ 23.576660, -18.281518 ], [ 24.219360, -17.889887 ], [ 24.521484, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } ] } ] } , @@ -1648,24 +1640,24 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ], [ 23.851318, 19.999160 ], [ 23.840332, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.140677 ], [ 22.977905, 10.714587 ], [ 23.554688, 10.087854 ], [ 23.554688, 9.681984 ], [ 23.395386, 9.264779 ], [ 23.461304, 8.955619 ], [ 23.807373, 8.667918 ], [ 24.565430, 8.227801 ], [ 25.114746, 7.825289 ], [ 25.125732, 7.498643 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.544560 ], [ 26.466064, 5.949363 ], [ 27.213135, 5.550381 ], [ 27.372437, 5.233187 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.653076, 5.255068 ], [ 25.279541, 5.173011 ], [ 25.131226, 4.926779 ], [ 24.807129, 4.899414 ], [ 24.411621, 5.107358 ], [ 23.296509, 4.609278 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.406616, 4.028659 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.833306 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.043647 ], [ 22.862549, 11.140677 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.502075, 22.350076 ], [ 36.688843, 22.202663 ], [ 36.864624, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 12.993853 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.060547, 12.993853 ] ] ], [ [ [ 22.060547, 12.608176 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.833306 ], [ 22.060547, 12.608176 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 21.999082 ], [ 36.886597, 21.943046 ], [ 37.188721, 21.017855 ], [ 36.968994, 20.838278 ], [ 37.117310, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.261482 ], [ 36.853638, 16.956979 ], [ 36.754761, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.430664, 14.424040 ], [ 36.271362, 13.565902 ], [ 35.864868, 12.576010 ], [ 35.260620, 12.082296 ], [ 34.832153, 11.318481 ], [ 34.733276, 10.908830 ], [ 34.255371, 10.628216 ], [ 33.964233, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.826904, 9.481572 ], [ 33.843384, 9.979671 ], [ 33.722534, 10.325728 ], [ 33.206177, 10.719984 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.178965 ], [ 32.744751, 12.248760 ], [ 32.673340, 12.023203 ], [ 32.074585, 11.974845 ], [ 32.316284, 11.679135 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.354980, 9.811916 ], [ 30.838623, 9.709057 ], [ 29.998169, 10.293301 ], [ 29.619141, 10.082446 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.971191, 9.400291 ], [ 27.833862, 9.606166 ], [ 27.114258, 9.638661 ], [ 26.751709, 9.465317 ], [ 26.477051, 9.552000 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.070801, 10.271681 ], [ 24.796143, 9.811916 ], [ 24.537964, 8.917634 ], [ 24.191895, 8.727648 ], [ 23.884277, 8.619041 ], [ 23.807373, 8.667918 ], [ 23.461304, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.554688, 9.681984 ], [ 23.554688, 10.087854 ], [ 22.977905, 10.714587 ], [ 22.862549, 11.140677 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.500000, 12.259496 ], [ 22.285767, 12.645698 ], [ 22.060547, 12.608176 ], [ 22.060547, 12.993853 ], [ 22.296753, 13.373588 ], [ 22.181396, 13.784737 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.104613 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.785505 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.840332, 19.580493 ], [ 23.851318, 19.999160 ], [ 24.999390, 20.004322 ], [ 24.999390, 21.999082 ], [ 36.864624, 21.999082 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.843384, 9.979671 ], [ 33.826904, 9.481572 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.826904, 8.379997 ], [ 33.294067, 8.352823 ], [ 32.953491, 7.787194 ], [ 33.568726, 7.710992 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.002686, 4.247812 ], [ 33.387451, 3.787522 ], [ 32.684326, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.171115 ], [ 29.718018, 4.598327 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.286158 ], [ 27.982178, 4.406660 ], [ 27.372437, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.949363 ], [ 26.213379, 6.544560 ], [ 25.795898, 6.980954 ], [ 25.125732, 7.498643 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.227801 ], [ 23.884277, 8.619041 ], [ 24.191895, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.811916 ], [ 25.070801, 10.271681 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.465317 ], [ 27.114258, 9.638661 ], [ 27.833862, 9.606166 ], [ 27.971191, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.619141, 10.082446 ], [ 29.998169, 10.293301 ], [ 30.838623, 9.709057 ], [ 31.354980, 9.811916 ], [ 31.849365, 10.531020 ], [ 32.398682, 11.081385 ], [ 32.316284, 11.679135 ], [ 32.074585, 11.974845 ], [ 32.673340, 12.023203 ], [ 32.744751, 12.248760 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.908325, 14.960706 ], [ 38.512573, 14.503826 ], [ 39.100342, 14.743011 ], [ 39.342041, 14.530415 ], [ 40.028687, 14.519780 ], [ 40.896606, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.599731, 13.453737 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.543840 ], [ 42.000732, 12.098410 ], [ 41.660156, 11.630716 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.049038 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.102947 ], [ 42.775269, 10.925011 ], [ 42.561035, 10.574222 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.676147, 9.183447 ], [ 45.000000, 8.705929 ], [ 45.439453, 8.542998 ], [ 45.439453, 5.506640 ], [ 45.000000, 5.041699 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.770264, 4.258768 ], [ 39.852905, 3.836851 ], [ 39.561768, 3.420208 ], [ 38.891602, 3.502455 ], [ 38.671875, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.122559, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.161499, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.593674 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.568726, 7.710992 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.352823 ], [ 33.826904, 8.379997 ], [ 33.975220, 8.684209 ], [ 33.964233, 9.584501 ], [ 34.255371, 10.628216 ], [ 34.733276, 10.908830 ], [ 34.832153, 11.318481 ], [ 35.260620, 12.082296 ], [ 35.864868, 12.576010 ], [ 36.271362, 13.565902 ], [ 36.430664, 14.424040 ], [ 37.595215, 14.211139 ], [ 37.908325, 14.960706 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.060669, 17.408305 ], [ 45.000000, 17.429270 ], [ 45.214233, 17.434511 ], [ 45.401001, 17.334908 ], [ 45.439453, 17.329664 ], [ 45.439453, 13.068777 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.699292 ], [ 44.494629, 12.720726 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.634978 ], [ 43.220215, 13.218556 ], [ 43.253174, 13.768731 ], [ 43.088379, 14.061988 ], [ 42.890625, 14.801439 ], [ 42.604980, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.703857, 15.718239 ], [ 42.824707, 15.913791 ], [ 42.780762, 16.346497 ], [ 43.220215, 16.667769 ], [ 43.115845, 17.088291 ], [ 43.379517, 17.581194 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.814453, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.737061, 13.923404 ], [ 42.588501, 12.999205 ], [ 43.082886, 12.699292 ], [ 42.780762, 12.458033 ], [ 42.352295, 12.543840 ], [ 42.011719, 12.865360 ], [ 41.599731, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.896606, 14.120595 ], [ 40.028687, 14.519780 ], [ 39.342041, 14.530415 ], [ 39.100342, 14.743011 ], [ 38.512573, 14.503826 ], [ 37.908325, 14.960706 ], [ 37.595215, 14.211139 ], [ 36.430664, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.754761, 16.293779 ], [ 36.853638, 16.956979 ], [ 37.166748, 17.261482 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.082886, 12.699292 ], [ 43.319092, 12.388294 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.925011 ], [ 42.555542, 11.102947 ], [ 42.313843, 11.032864 ], [ 41.753540, 11.049038 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.630716 ], [ 42.000732, 12.098410 ], [ 42.352295, 12.543840 ], [ 42.780762, 12.458033 ], [ 43.082886, 12.699292 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.329664 ], [ 45.401001, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.060669, 17.408305 ], [ 43.791504, 17.319176 ], [ 43.379517, 17.581194 ], [ 43.115845, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.346497 ], [ 42.648926, 16.772987 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.832374 ], [ 41.220703, 18.672267 ], [ 40.940552, 19.487308 ], [ 40.248413, 20.174567 ], [ 39.803467, 20.339476 ], [ 39.138794, 21.289374 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.050903, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.472900, 11.275387 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.439453, 10.666006 ], [ 45.439453, 8.542998 ], [ 45.000000, 8.705929 ], [ 43.676147, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.561035, 10.574222 ], [ 42.775269, 10.925011 ], [ 43.143311, 11.463874 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.506640 ], [ 45.439453, 1.960677 ], [ 45.000000, 1.669686 ], [ 44.066162, 1.054628 ], [ 43.137817, 0.291136 ], [ 42.874146, 0.000000 ], [ 42.473145, -0.439449 ], [ 40.989990, -0.439449 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.783938 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 45.439453, 5.506640 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.653076, 5.255068 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.233187 ], [ 27.982178, 4.406660 ], [ 28.427124, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.718018, 4.598327 ], [ 29.954224, 4.171115 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.202216 ], [ 30.855103, 1.850874 ], [ 30.470581, 1.581830 ], [ 30.086060, 1.060120 ], [ 29.877319, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.679565, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.406616, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.107358 ], [ 24.807129, 4.899414 ], [ 25.131226, 4.926779 ], [ 25.279541, 5.173011 ], [ 25.653076, 5.255068 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.815430, 5.337114 ], [ 35.815430, 4.778995 ], [ 36.161499, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.122559, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.671875, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.561768, 3.420208 ], [ 39.852905, 3.836851 ], [ 40.770264, 4.258768 ], [ 41.171265, 3.919060 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.783938 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.439449 ], [ 33.898315, -0.439449 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.672852, 1.175455 ], [ 35.035400, 1.905776 ], [ 34.595947, 3.052754 ], [ 34.480591, 3.557283 ], [ 34.002686, 4.247812 ], [ 35.299072, 5.506640 ] ] ] } } ] } ] } @@ -1674,9 +1666,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.246826, 35.366656 ], [ 25.026855, 35.424868 ], [ 25.768433, 35.353216 ], [ 25.746460, 35.178298 ], [ 26.290283, 35.299435 ], [ 26.163940, 35.003003 ], [ 24.724731, 34.921971 ], [ 24.735718, 35.083956 ], [ 23.516235, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.477051, 41.310824 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.124291 ], [ 23.900757, 39.960280 ], [ 23.340454, 39.960280 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.258569 ], [ 22.851562, 39.660685 ], [ 23.351440, 39.189691 ], [ 22.972412, 38.972222 ], [ 23.532715, 38.509490 ], [ 24.027100, 38.220920 ], [ 24.038086, 37.653383 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.409437 ], [ 22.774658, 37.304645 ], [ 23.153687, 36.421282 ], [ 22.500000, 36.408021 ], [ 22.489014, 36.408021 ], [ 22.060547, 36.637570 ], [ 22.060547, 41.149706 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.933228, 41.310824 ], [ 26.477051, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.065918, 41.310824 ], [ 44.972534, 41.248903 ], [ 43.582764, 41.091772 ], [ 43.154297, 41.310824 ], [ 45.065918, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.933228, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.933228, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 32.764181 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.189560 ], [ 23.609619, 32.189560 ], [ 23.928223, 32.017392 ], [ 24.922485, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.661541 ], [ 24.702759, 30.045322 ], [ 24.999390, 29.238477 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.764181 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.065918, 41.310824 ], [ 44.972534, 41.248903 ], [ 43.582764, 41.091772 ], [ 43.154297, 41.310824 ], [ 45.065918, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.654175, 40.254377 ], [ 44.401245, 40.006580 ], [ 44.791260, 39.711413 ], [ 44.110107, 39.427707 ], [ 44.423218, 38.281313 ], [ 44.225464, 37.970185 ], [ 44.774780, 37.169072 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.780762, 37.383253 ], [ 42.352295, 37.230328 ], [ 41.209717, 37.072710 ], [ 40.671387, 37.090240 ], [ 39.523315, 36.716871 ], [ 38.699341, 36.712467 ], [ 38.166504, 36.901587 ], [ 37.067871, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.257563 ], [ 36.150513, 35.822267 ], [ 35.782471, 36.275279 ], [ 36.161499, 36.650793 ], [ 35.551758, 36.567012 ], [ 34.716797, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.106815 ], [ 31.701050, 36.646385 ], [ 30.618896, 36.677231 ], [ 30.393677, 36.261992 ], [ 29.701538, 36.142311 ], [ 28.734741, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.207972 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.421860 ], [ 28.822632, 40.459487 ], [ 29.108276, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 31.558228, 41.310824 ], [ 37.001953, 41.310824 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.044922, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.959961, 41.310824 ], [ 28.987427, 41.298444 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.477051, 41.310824 ], [ 28.959961, 41.310824 ] ] ] ] } } , @@ -1684,7 +1676,7 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.460327, 31.320794 ], [ 28.449097, 31.024694 ], [ 28.916016, 30.869225 ], [ 29.685059, 31.184609 ], [ 30.097046, 31.475524 ], [ 30.975952, 31.555134 ], [ 31.690063, 31.428663 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.259770 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.266357, 31.217499 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.156494, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.415560 ], [ 32.420654, 29.850173 ], [ 32.321777, 29.759609 ], [ 32.733765, 28.705043 ], [ 33.348999, 27.698120 ], [ 34.107056, 26.140645 ], [ 34.475098, 25.596948 ], [ 34.793701, 25.035839 ], [ 35.694580, 23.926013 ], [ 35.491333, 23.750154 ], [ 35.524292, 23.099944 ], [ 36.688843, 22.202663 ], [ 36.864624, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 29.238477 ], [ 24.702759, 30.045322 ], [ 24.955444, 30.661541 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.592520 ], [ 36.611938, 34.202716 ], [ 36.068115, 33.824794 ], [ 35.820923, 33.275435 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.086939 ], [ 35.128784, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.352295, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.292114, 36.359375 ], [ 41.385498, 35.630512 ], [ 41.006470, 34.420505 ], [ 38.792725, 33.376412 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.837402, 32.870360 ], [ 35.820923, 33.275435 ], [ 36.068115, 33.824794 ], [ 36.611938, 34.202716 ], [ 36.447144, 34.592520 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.150513, 35.822267 ], [ 36.683350, 36.257563 ], [ 36.738281, 36.818080 ], [ 37.067871, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.712467 ], [ 39.523315, 36.716871 ], [ 40.671387, 37.090240 ], [ 41.209717, 37.072710 ], [ 42.352295, 37.230328 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.546265, 32.393878 ], [ 35.546265, 31.784217 ], [ 35.397949, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.227661, 31.756196 ], [ 34.974976, 31.868228 ], [ 35.183716, 32.532921 ] ] ] } } , @@ -1692,13 +1684,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.780762, 37.383253 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.774780, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.043557 ], [ 45.417480, 33.966142 ], [ 45.439453, 33.938803 ], [ 45.439453, 29.147364 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 41.890869, 31.189308 ], [ 40.402222, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.792725, 33.376412 ], [ 41.006470, 34.420505 ], [ 41.385498, 35.630512 ], [ 41.292114, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.352295, 37.230328 ], [ 42.780762, 37.383253 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.376412 ], [ 39.193726, 32.161663 ], [ 39.006958, 32.008076 ], [ 37.001953, 31.508313 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.002517 ], [ 36.738281, 29.864465 ], [ 36.502075, 29.506549 ], [ 36.068115, 29.195328 ], [ 34.958496, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.099982 ], [ 35.397949, 31.489578 ], [ 35.546265, 31.784217 ], [ 35.546265, 32.393878 ], [ 35.722046, 32.708733 ], [ 36.831665, 32.314991 ], [ 38.792725, 33.376412 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 21.999082 ], [ 36.886597, 21.943046 ], [ 37.018433, 21.534847 ], [ 24.999390, 21.534847 ], [ 24.999390, 21.999082 ], [ 36.864624, 21.999082 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.891033 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.334297 ], [ 44.791260, 39.711413 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.439453, 40.659806 ], [ 45.439453, 40.509623 ], [ 45.357056, 40.559721 ], [ 45.439453, 40.659806 ] ] ], [ [ [ 45.439453, 40.867834 ], [ 45.181274, 40.984045 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.867834 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.402222, 31.891551 ], [ 41.890869, 31.189308 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 45.439453, 29.147364 ], [ 45.439453, 21.534847 ], [ 39.100342, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.067383, 22.578510 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.930542, 25.601902 ], [ 36.639404, 25.824617 ], [ 36.249390, 26.568877 ], [ 35.128784, 28.062286 ], [ 34.634399, 28.057439 ], [ 34.788208, 28.608637 ], [ 34.832153, 28.955282 ], [ 34.958496, 29.358239 ], [ 36.068115, 29.195328 ], [ 36.502075, 29.506549 ], [ 36.738281, 29.864465 ], [ 37.501831, 30.002517 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.508313 ], [ 39.006958, 32.008076 ], [ 39.193726, 32.161663 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 34.043557 ], [ 45.439453, 33.938803 ], [ 45.417480, 33.966142 ], [ 45.439453, 34.043557 ] ] ], [ [ [ 45.439453, 35.969115 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.774780, 37.169072 ], [ 44.225464, 37.970185 ], [ 44.423218, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.439453, 38.891033 ], [ 45.439453, 35.969115 ] ] ] ] } } ] } ] } , @@ -1706,17 +1696,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.326135 ], [ 23.241577, 54.220285 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.807373, 53.090725 ], [ 23.801880, 52.689702 ], [ 23.197632, 52.486125 ], [ 23.510742, 52.022078 ], [ 23.527222, 51.577070 ], [ 24.032593, 50.705156 ], [ 23.922729, 50.426019 ], [ 23.428345, 50.306884 ], [ 22.516479, 49.475263 ], [ 22.774658, 49.027063 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.109838 ], [ 22.060547, 49.285723 ], [ 22.060547, 54.322931 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.326135 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.767944, 56.022948 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.767944, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 49.285723 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.088013, 48.421910 ], [ 22.060547, 48.410972 ], [ 22.060547, 49.285723 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.768433, 54.848153 ], [ 25.537720, 54.281262 ], [ 24.450073, 53.904338 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.220285 ], [ 22.730713, 54.326135 ], [ 22.648315, 54.581613 ], [ 22.758179, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.461548, 44.703802 ], [ 22.500000, 44.680372 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.209180 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.698586 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.309815 ], [ 22.060547, 44.520010 ], [ 22.142944, 44.476911 ], [ 22.461548, 44.703802 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ], [ 29.311523, 55.776573 ], [ 29.371948, 55.671389 ], [ 29.893799, 55.788929 ], [ 29.948730, 55.776573 ], [ 30.871582, 55.550388 ], [ 30.970459, 55.081512 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.156001 ], [ 31.788940, 53.975474 ], [ 31.734009, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.695312, 53.350551 ], [ 32.305298, 53.133590 ], [ 31.497803, 53.166534 ], [ 31.305542, 53.074228 ], [ 31.541748, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.822198 ], [ 30.552979, 51.320314 ], [ 30.157471, 51.416338 ], [ 29.256592, 51.368351 ], [ 28.992920, 51.600960 ], [ 28.619385, 51.426614 ], [ 28.240356, 51.573656 ], [ 27.454834, 51.590723 ], [ 26.339722, 51.832383 ], [ 25.328979, 51.910391 ], [ 24.554443, 51.890054 ], [ 24.005127, 51.618017 ], [ 23.527222, 51.577070 ], [ 23.510742, 52.022078 ], [ 23.197632, 52.486125 ], [ 23.801880, 52.689702 ], [ 23.807373, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.904338 ], [ 25.537720, 54.281262 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.166319 ], [ 26.493530, 55.615589 ], [ 27.075806, 55.776573 ], [ 27.767944, 56.022948 ], [ 28.789673, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.392700, 51.767840 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.600030 ], [ 40.078125, 49.307217 ], [ 39.677124, 48.785152 ], [ 39.896851, 48.231991 ], [ 39.737549, 47.897931 ], [ 38.770752, 47.824220 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.021461 ], [ 36.760254, 46.698435 ], [ 35.826416, 46.645665 ], [ 34.963989, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.337280, 45.112300 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.327026, 44.563077 ], [ 33.546753, 45.034715 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.517895 ], [ 33.590698, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.744995, 46.331758 ], [ 31.673584, 46.705969 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.031296 ], [ 29.602661, 45.294211 ], [ 29.152222, 45.463983 ], [ 28.679810, 45.305803 ], [ 28.234863, 45.487095 ], [ 28.487549, 45.598666 ], [ 28.657837, 45.939691 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.437857 ], [ 29.069824, 46.517296 ], [ 29.168701, 46.381044 ], [ 29.761963, 46.350719 ], [ 30.025635, 46.422713 ], [ 29.838867, 46.524855 ], [ 29.910278, 46.675826 ], [ 29.558716, 46.927759 ], [ 29.415894, 47.346267 ], [ 29.053345, 47.509780 ], [ 29.124756, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.155093 ], [ 27.520752, 48.465637 ], [ 26.856079, 48.367198 ], [ 26.619873, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.986245 ], [ 25.208130, 47.890564 ], [ 24.867554, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.763428, 47.986245 ], [ 23.142700, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.642822, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.088013, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.774658, 49.027063 ], [ 22.516479, 49.475263 ], [ 23.428345, 50.306884 ], [ 23.922729, 50.426019 ], [ 24.032593, 50.705156 ], [ 23.527222, 51.577070 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.890054 ], [ 25.328979, 51.910391 ], [ 26.339722, 51.832383 ], [ 27.454834, 51.590723 ], [ 28.240356, 51.573656 ], [ 28.619385, 51.426614 ], [ 28.992920, 51.600960 ], [ 29.256592, 51.368351 ], [ 30.157471, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.288323 ], [ 32.717285, 52.237892 ], [ 33.750000, 52.335339 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.088013, 48.421910 ], [ 22.500000, 48.221013 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.617273 ], [ 22.060547, 48.410972 ], [ 22.088013, 48.421910 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.562032 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.494019, 41.582580 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.828642 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.465637 ], [ 28.256836, 48.155093 ], [ 28.668823, 48.118434 ], [ 29.124756, 47.850031 ], [ 29.053345, 47.509780 ], [ 29.415894, 47.346267 ], [ 29.558716, 46.927759 ], [ 29.910278, 46.675826 ], [ 29.838867, 46.524855 ], [ 30.025635, 46.422713 ], [ 29.761963, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.517296 ], [ 28.861084, 46.437857 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.939691 ], [ 28.487549, 45.598666 ], [ 28.234863, 45.487095 ], [ 28.053589, 45.943511 ], [ 28.157959, 46.369674 ], [ 28.130493, 46.811339 ], [ 27.553711, 47.405785 ], [ 27.235107, 47.827908 ], [ 26.921997, 48.122101 ], [ 26.619873, 48.221013 ], [ 26.856079, 48.367198 ], [ 27.520752, 48.465637 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.659302, 44.233393 ], [ 22.944946, 43.822638 ], [ 23.334961, 43.897892 ], [ 24.098511, 43.739352 ], [ 25.570679, 43.687736 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.174325 ], [ 27.971191, 43.810747 ], [ 28.558960, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.674561, 42.577355 ], [ 27.998657, 42.008489 ], [ 27.136230, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.327326 ], [ 25.197144, 41.236511 ], [ 24.494019, 41.582580 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.698586 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.209180 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.921997, 48.122101 ], [ 27.235107, 47.827908 ], [ 27.553711, 47.405785 ], [ 28.130493, 46.811339 ], [ 28.157959, 46.369674 ], [ 28.053589, 45.943511 ], [ 28.234863, 45.487095 ], [ 28.679810, 45.305803 ], [ 29.152222, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.810747 ], [ 27.240601, 44.174325 ], [ 26.065063, 43.945372 ], [ 25.570679, 43.687736 ], [ 24.098511, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.944946, 43.822638 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 22.060547, 44.520010 ], [ 22.060547, 47.617273 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.708740, 47.883197 ], [ 23.142700, 48.096426 ], [ 23.763428, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.867554, 47.739323 ], [ 25.208130, 47.890564 ], [ 25.944214, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } , @@ -1726,6 +1716,8 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.181274, 40.984045 ], [ 45.439453, 40.867834 ], [ 45.439453, 40.659806 ], [ 45.428467, 40.647304 ], [ 43.736572, 40.647304 ], [ 43.753052, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 56.022948 ], [ 45.439453, 42.508552 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.710696 ], [ 43.928833, 42.553080 ], [ 43.758545, 42.738944 ], [ 42.396240, 43.221190 ], [ 40.924072, 43.381098 ], [ 40.078125, 43.552529 ], [ 39.957275, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.540283, 44.656932 ], [ 36.677856, 45.243953 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.240652 ], [ 37.672119, 46.638122 ], [ 39.149780, 47.043926 ], [ 39.122314, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.824220 ], [ 39.737549, 47.897931 ], [ 39.896851, 48.231991 ], [ 39.677124, 48.785152 ], [ 40.078125, 49.307217 ], [ 40.067139, 49.600030 ], [ 38.594971, 49.926472 ], [ 38.012695, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.628418, 50.226124 ], [ 35.354004, 50.576260 ], [ 35.375977, 50.774682 ], [ 35.024414, 51.206883 ], [ 34.222412, 51.255040 ], [ 34.140015, 51.566827 ], [ 34.392700, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.237892 ], [ 32.409668, 52.288323 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.541748, 52.742943 ], [ 31.305542, 53.074228 ], [ 31.497803, 53.166534 ], [ 32.305298, 53.133590 ], [ 32.695312, 53.350551 ], [ 32.404175, 53.618579 ], [ 31.734009, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.156001 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.081512 ], [ 30.871582, 55.550388 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.788929 ], [ 29.371948, 55.671389 ], [ 29.311523, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ] ] ], [ [ [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.758179, 54.857640 ], [ 22.648315, 54.581613 ], [ 22.730713, 54.326135 ], [ 22.500000, 54.326135 ], [ 22.060547, 54.322931 ], [ 22.060547, 55.059495 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 40.659806 ], [ 45.439453, 40.647304 ], [ 45.428467, 40.647304 ], [ 45.439453, 40.659806 ] ] ], [ [ [ 45.439453, 40.867834 ], [ 45.181274, 40.984045 ], [ 45.000000, 41.211722 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.265421 ], [ 45.219727, 41.409776 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.867834 ] ] ] ] } } ] } ] } @@ -1734,11 +1726,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.322510, 66.687784 ], [ 29.503784, 66.513260 ], [ 30.217896, 65.805028 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.203987 ], [ 30.036621, 63.553446 ], [ 31.514282, 62.867674 ], [ 31.140747, 62.357256 ], [ 30.212402, 61.780916 ], [ 28.070068, 60.503230 ], [ 26.257324, 60.424699 ], [ 24.494019, 60.056616 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.555892 ], [ 22.445068, 63.818864 ], [ 22.500000, 63.845512 ], [ 24.730225, 64.902580 ], [ 25.400391, 65.111460 ], [ 25.296021, 65.533446 ], [ 23.900757, 66.006852 ], [ 23.565674, 66.396961 ], [ 23.565674, 66.513260 ], [ 23.560181, 66.687784 ], [ 29.322510, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.603638, 57.847674 ], [ 26.466064, 57.477450 ], [ 27.290039, 57.474497 ], [ 27.767944, 57.243394 ], [ 27.855835, 56.758746 ], [ 28.174438, 56.170023 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.099620 ], [ 24.999390, 56.163906 ], [ 24.862061, 56.371335 ], [ 23.878784, 56.273861 ], [ 22.500000, 56.325675 ], [ 22.203369, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.586559 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ], [ 23.318481, 57.004850 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.792089 ], [ 25.164185, 57.970244 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.862061, 56.371335 ], [ 24.999390, 56.163906 ], [ 25.532227, 56.099620 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.203369, 56.337856 ], [ 22.500000, 56.325675 ], [ 23.878784, 56.273861 ], [ 24.862061, 56.371335 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.311523, 55.776573 ], [ 29.371948, 55.671389 ], [ 29.893799, 55.788929 ], [ 29.948730, 55.776573 ], [ 30.871582, 55.550388 ], [ 30.877075, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.075806, 55.776573 ], [ 28.174438, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.560181, 66.687784 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.006852 ], [ 22.500000, 65.775744 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.635623 ], [ 22.060547, 66.687784 ], [ 23.560181, 66.687784 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.877075, 55.528631 ], [ 30.871582, 55.550388 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.788929 ], [ 29.371948, 55.671389 ], [ 29.311523, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.855835, 56.758746 ], [ 27.767944, 57.243394 ], [ 27.290039, 57.474497 ], [ 27.718506, 57.792089 ], [ 27.421875, 58.725451 ], [ 28.130493, 59.299552 ], [ 27.982178, 59.475779 ], [ 29.119263, 60.029186 ], [ 28.070068, 60.503230 ], [ 30.212402, 61.780916 ], [ 31.140747, 62.357256 ], [ 31.514282, 62.867674 ], [ 30.036621, 63.553446 ], [ 30.443115, 64.203987 ], [ 29.542236, 64.949139 ], [ 30.217896, 65.805028 ], [ 29.503784, 66.513260 ], [ 29.322510, 66.687784 ], [ 33.502808, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 34.815674, 65.899410 ], [ 34.876099, 65.435435 ], [ 34.942017, 64.413549 ], [ 36.232910, 64.110602 ], [ 37.012939, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.143806 ], [ 39.594727, 64.520097 ], [ 40.435181, 64.764759 ], [ 39.765015, 65.497020 ], [ 42.094116, 66.476016 ], [ 43.016968, 66.418945 ], [ 43.950806, 66.069318 ], [ 44.324341, 66.513260 ], [ 44.472656, 66.687784 ], [ 45.439453, 66.687784 ] ] ], [ [ [ 40.902100, 66.687784 ], [ 40.534058, 66.513260 ], [ 40.017700, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.381470, 66.513260 ], [ 34.348755, 66.687784 ], [ 40.902100, 66.687784 ] ] ] ] } } ] } @@ -1748,7 +1736,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.163452, 71.185982 ], [ 31.294556, 70.453346 ], [ 30.003662, 70.186965 ], [ 31.102295, 69.557553 ], [ 29.399414, 69.156695 ], [ 28.591919, 69.064638 ], [ 29.014893, 69.765657 ], [ 27.734985, 70.164610 ], [ 26.180420, 69.824471 ], [ 25.691528, 69.092100 ], [ 24.735718, 68.648556 ], [ 23.664551, 68.891231 ], [ 22.500000, 68.847665 ], [ 22.357178, 68.841718 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.233460 ], [ 22.500000, 70.218593 ], [ 23.021851, 70.201855 ], [ 24.548950, 71.031249 ], [ 26.372681, 70.986560 ], [ 28.163452, 71.185982 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.734985, 70.164610 ], [ 29.014893, 69.765657 ], [ 28.591919, 69.064638 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.503784, 66.513260 ], [ 29.679565, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.565674, 66.513260 ], [ 23.538208, 67.935460 ], [ 22.500000, 68.391090 ], [ 22.060547, 68.582459 ], [ 22.060547, 68.984016 ], [ 22.357178, 68.841718 ], [ 22.500000, 68.847665 ], [ 23.664551, 68.891231 ], [ 24.735718, 68.648556 ], [ 25.691528, 69.092100 ], [ 26.180420, 69.824471 ], [ 27.734985, 70.164610 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 68.582459 ], [ 22.500000, 68.391090 ], [ 23.538208, 67.935460 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.582459 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.414185, 66.337505 ], [ 35.381470, 66.513260 ], [ 33.920288, 66.759418 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.848877, 66.337505 ], [ 29.679565, 66.337505 ], [ 29.503784, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.064638 ], [ 29.399414, 69.156695 ], [ 31.102295, 69.557553 ], [ 32.135010, 69.905780 ], [ 33.777466, 69.300853 ], [ 36.513062, 69.062675 ], [ 40.292358, 67.933397 ], [ 41.061401, 67.458082 ], [ 41.127319, 66.791909 ], [ 40.534058, 66.513260 ], [ 40.166016, 66.337505 ], [ 36.414185, 66.337505 ] ] ], [ [ [ 41.759033, 66.337505 ], [ 42.094116, 66.476016 ], [ 43.016968, 66.418945 ], [ 43.231201, 66.337505 ], [ 41.759033, 66.337505 ] ] ], [ [ [ 44.176025, 66.337505 ], [ 44.324341, 66.513260 ], [ 44.533081, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.949900 ], [ 43.450928, 68.570421 ], [ 45.000000, 68.393113 ], [ 45.439453, 68.342487 ], [ 45.439453, 66.337505 ], [ 44.176025, 66.337505 ] ] ] ] } } ] } ] } , @@ -1761,6 +1753,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.917480, 80.656850 ], [ 25.449829, 80.407473 ], [ 27.405396, 80.056153 ], [ 25.922241, 79.517660 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.454511 ], [ 22.060547, 80.403810 ], [ 22.500000, 80.533878 ], [ 22.917480, 80.656850 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 80.645249 ], [ 45.439453, 80.581640 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.589727 ], [ 45.000000, 80.604086 ], [ 45.439453, 80.645249 ] ] ] } } ] } ] } , @@ -1810,11 +1804,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 8.863362 ], [ 45.000000, 8.705929 ], [ 46.950073, 7.999397 ], [ 47.790527, 8.004837 ], [ 45.000000, 5.041699 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.986977 ], [ 44.560547, 8.863362 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 18.999803 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.168579, 15.596584 ], [ 51.174316, 15.172879 ], [ 49.575806, 14.711135 ], [ 48.680420, 14.003367 ], [ 48.240967, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.356567, 13.592600 ], [ 46.719360, 13.400307 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.293411 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.699292 ], [ 44.560547, 12.720726 ], [ 44.560547, 17.418787 ], [ 45.000000, 17.429270 ], [ 45.214233, 17.434511 ], [ 45.401001, 17.334908 ], [ 46.367798, 17.235252 ], [ 46.752319, 17.282464 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.114543 ], [ 48.186035, 18.166730 ], [ 49.114380, 18.615013 ], [ 51.998291, 18.999803 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.442505, 22.350076 ], [ 55.667725, 21.999082 ], [ 55.645752, 21.943046 ], [ 54.997559, 19.999160 ], [ 51.998291, 18.999803 ], [ 49.114380, 18.615013 ], [ 48.186035, 18.166730 ], [ 47.466431, 17.114543 ], [ 46.999512, 16.951724 ], [ 46.752319, 17.282464 ], [ 46.367798, 17.235252 ], [ 45.401001, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.560547, 17.418787 ], [ 44.560547, 22.350076 ], [ 55.442505, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.949585, 11.410033 ], [ 48.944092, 11.393879 ], [ 48.938599, 10.984335 ], [ 48.938599, 9.449062 ], [ 48.488159, 8.836223 ], [ 47.790527, 8.004837 ], [ 46.950073, 7.999397 ], [ 45.000000, 8.705929 ], [ 44.560547, 8.863362 ], [ 44.560547, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.554810, 10.698394 ], [ 46.647949, 10.817120 ], [ 47.526855, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.949585, 11.410033 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.804077, 22.350076 ], [ 59.804077, 22.309426 ], [ 59.578857, 21.943046 ], [ 59.282227, 21.432617 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.427013 ], [ 58.035278, 20.483628 ], [ 57.826538, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.067310 ], [ 57.694702, 18.942660 ], [ 57.233276, 18.947856 ], [ 56.607056, 18.573362 ], [ 56.513672, 18.088423 ], [ 56.282959, 17.874203 ], [ 55.662231, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 18.999803 ], [ 54.997559, 19.999160 ], [ 55.645752, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.442505, 22.350076 ], [ 59.804077, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.113892, 12.023203 ], [ 51.135864, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.047974, 10.639014 ], [ 50.833740, 10.277086 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.454956, 6.806444 ], [ 48.592529, 5.337114 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.565796, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.560547, 1.378651 ], [ 44.560547, 4.986977 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 47.790527, 8.004837 ], [ 48.488159, 8.836223 ], [ 48.938599, 9.449062 ], [ 48.938599, 10.984335 ], [ 48.944092, 11.393879 ], [ 48.949585, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.576907 ], [ 50.256958, 11.679135 ], [ 50.729370, 12.023203 ], [ 51.113892, 12.023203 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.949585, 11.410033 ], [ 48.944092, 11.393879 ], [ 48.938599, 10.984335 ], [ 48.938599, 9.449062 ], [ 48.488159, 8.836223 ], [ 47.790527, 8.004837 ], [ 46.950073, 7.999397 ], [ 45.000000, 8.705929 ], [ 44.560547, 8.863362 ], [ 44.560547, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.554810, 10.698394 ], [ 46.647949, 10.817120 ], [ 47.526855, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.949585, 11.410033 ] ] ] } } ] } ] } , @@ -1822,25 +1818,23 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.521606, 41.310824 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.062786 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.521606, 41.310824 ] ] ], [ [ [ 45.065918, 41.310824 ], [ 44.972534, 41.248903 ], [ 44.560547, 41.203456 ], [ 44.560547, 41.310824 ], [ 45.065918, 41.310824 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.560547, 39.614152 ], [ 44.560547, 39.884450 ], [ 44.791260, 39.711413 ], [ 44.560547, 39.614152 ] ] ], [ [ [ 44.560547, 37.483577 ], [ 44.774780, 37.169072 ], [ 44.560547, 37.094622 ], [ 44.560547, 37.483577 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.181274, 40.984045 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.559721 ], [ 45.889893, 40.216635 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.626846 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.736084, 39.321550 ], [ 45.741577, 39.474365 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.711413 ], [ 44.560547, 39.884450 ], [ 44.560547, 41.203456 ], [ 44.972534, 41.248903 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.774780, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 46.076660, 35.679610 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.746126 ], [ 45.417480, 33.966142 ], [ 46.109619, 33.017876 ], [ 47.334595, 32.468061 ], [ 47.850952, 31.709476 ], [ 47.686157, 30.987028 ], [ 48.004761, 30.987028 ], [ 48.015747, 30.453409 ], [ 48.570557, 29.926374 ], [ 47.971802, 29.973970 ], [ 47.301636, 30.059586 ], [ 46.571045, 29.099377 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.286399 ], [ 44.560547, 37.094622 ], [ 44.774780, 37.169072 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.922363, 41.310824 ], [ 47.817993, 41.149706 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.922363, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.137296 ], [ 66.714478, 41.170384 ], [ 66.681519, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.969849, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.409546, 41.310824 ], [ 55.969849, 41.310824 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.081421, 41.310824 ], [ 49.108887, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.086670, 40.526327 ], [ 50.394287, 40.258569 ], [ 49.570312, 40.174676 ], [ 49.394531, 39.398000 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.814031 ], [ 48.883667, 38.320111 ], [ 48.636475, 38.268376 ], [ 48.010254, 38.792627 ], [ 48.356323, 39.287546 ], [ 48.059692, 39.580290 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.626846 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.216635 ], [ 45.357056, 40.559721 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.181274, 40.984045 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.062786 ], [ 46.636963, 41.182788 ], [ 46.521606, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.149706 ], [ 47.922363, 41.310824 ], [ 49.081421, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.741577, 39.474365 ], [ 45.736084, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.334297 ], [ 44.791260, 39.711413 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.973970 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.550751 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.571045, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.608276, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.113892, 24.557116 ], [ 50.811768, 24.756808 ], [ 50.745850, 25.482951 ], [ 51.015015, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.286399 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 46.571045, 29.099377 ], [ 47.460938, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.416748, 28.550751 ], [ 48.806763, 27.688392 ], [ 49.301147, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.691637 ], [ 50.213013, 26.278640 ], [ 50.114136, 25.943227 ], [ 50.240479, 25.606856 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.811768, 24.756808 ], [ 51.113892, 24.557116 ], [ 51.388550, 24.627045 ], [ 51.580811, 24.246965 ], [ 51.619263, 24.016362 ], [ 51.998291, 22.998852 ], [ 55.008545, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.667725, 21.999082 ], [ 55.645752, 21.943046 ], [ 55.508423, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.286399 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.398315, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.403564, 23.880815 ], [ 58.139648, 23.750154 ], [ 58.727417, 23.563987 ], [ 59.452515, 22.659641 ], [ 59.809570, 22.532854 ], [ 59.804077, 22.309426 ], [ 59.578857, 21.943046 ], [ 59.337158, 21.534847 ], [ 55.508423, 21.534847 ], [ 55.645752, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.530396, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.272005 ], [ 55.887451, 24.921313 ], [ 56.398315, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.392822, 25.893820 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.455933, 38.873929 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.686157, 39.508279 ], [ 48.059692, 39.580290 ], [ 48.356323, 39.287546 ], [ 48.010254, 38.792627 ], [ 48.636475, 38.268376 ], [ 48.883667, 38.320111 ], [ 49.202271, 37.583766 ], [ 50.147095, 37.374523 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.699255 ], [ 53.827515, 36.963060 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.391982 ], [ 55.513916, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.332153, 38.030786 ], [ 58.436279, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.648369 ], [ 60.803833, 34.402377 ], [ 60.529175, 33.678640 ], [ 60.963135, 33.527658 ], [ 60.534668, 32.981020 ], [ 60.864258, 32.184911 ], [ 60.941162, 31.545771 ], [ 61.699219, 31.381779 ], [ 61.781616, 30.737114 ], [ 60.875244, 29.831114 ], [ 61.369629, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.376645 ], [ 63.231812, 27.215556 ], [ 63.314209, 26.755421 ], [ 61.875000, 26.239229 ], [ 61.495972, 25.080624 ], [ 59.617310, 25.378772 ], [ 58.524170, 25.611810 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 55.722656, 26.966142 ], [ 54.717407, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.863360 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.983487 ], [ 48.938599, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.987028 ], [ 47.686157, 30.987028 ], [ 47.850952, 31.709476 ], [ 47.334595, 32.468061 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.966142 ], [ 45.648193, 34.746126 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.679610 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.774780, 37.169072 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.614152 ], [ 44.791260, 39.711413 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.747681, 37.662081 ], [ 66.220093, 37.391982 ], [ 66.516724, 37.361426 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.606610 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.302022 ], [ 67.500000, 31.302022 ], [ 66.939697, 31.306715 ], [ 66.379395, 30.737114 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.352417, 29.559123 ], [ 64.149170, 29.339087 ], [ 63.550415, 29.468297 ], [ 62.550659, 29.319931 ], [ 60.875244, 29.831114 ], [ 61.781616, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.545771 ], [ 60.864258, 32.184911 ], [ 60.534668, 32.981020 ], [ 60.963135, 33.527658 ], [ 60.529175, 33.678640 ], [ 60.803833, 34.402377 ], [ 61.210327, 35.648369 ], [ 62.232056, 35.272532 ], [ 62.984619, 35.402484 ], [ 63.193359, 35.857892 ], [ 63.984375, 36.009117 ], [ 64.544678, 36.310699 ], [ 64.747925, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.747681, 37.662081 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.681519, 41.310824 ], [ 66.714478, 41.170384 ], [ 67.939453, 41.137296 ], [ 67.939453, 39.567588 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.236508 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 67.939453, 38.976492 ], [ 67.939453, 37.343959 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.077026, 37.357059 ], [ 66.516724, 37.361426 ], [ 66.544189, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.935425, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.298462, 41.310824 ], [ 66.681519, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.298462, 41.310824 ], [ 60.463257, 41.219986 ], [ 61.545410, 41.265421 ], [ 61.880493, 41.083492 ], [ 61.935425, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.974515 ], [ 66.516724, 37.361426 ], [ 66.220093, 37.391982 ], [ 65.747681, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.747925, 37.112146 ], [ 64.544678, 36.310699 ], [ 63.984375, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.402484 ], [ 62.232056, 35.272532 ], [ 61.210327, 35.648369 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.527295 ], [ 59.232788, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.332153, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.513916, 37.965854 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.905199 ], [ 53.882446, 38.950865 ], [ 53.102417, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.695923, 40.031821 ], [ 52.915649, 40.876141 ], [ 53.860474, 40.630630 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.409546, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.969849, 41.306698 ], [ 56.145630, 41.310824 ], [ 60.298462, 41.310824 ] ] ], [ [ [ 52.838745, 41.310824 ], [ 52.816772, 41.137296 ], [ 52.728882, 41.310824 ], [ 52.838745, 41.310824 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 37.343959 ], [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.343959 ] ] ], [ [ [ 67.939453, 38.976492 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.236508 ], [ 67.703247, 39.580290 ], [ 67.939453, 39.567588 ], [ 67.939453, 38.976492 ] ] ] ] } } ] } @@ -1850,13 +1844,15 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 42.706660 ], [ 45.000000, 42.609706 ], [ 45.472412, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.406250, 41.861379 ], [ 46.148071, 41.722131 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.062786 ], [ 45.961304, 41.124884 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.265421 ], [ 44.972534, 41.248903 ], [ 44.560547, 41.203456 ], [ 44.560547, 42.706660 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.181274, 40.984045 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.428467, 40.647304 ], [ 44.560547, 40.647304 ], [ 44.560547, 41.203456 ], [ 44.972534, 41.248903 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 56.022948 ], [ 67.939453, 54.936610 ], [ 67.500000, 54.873446 ], [ 65.665283, 54.600710 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.979614, 53.664171 ], [ 61.699219, 52.978416 ], [ 60.737915, 52.719658 ], [ 60.924683, 52.445966 ], [ 59.968872, 51.961192 ], [ 61.589355, 51.272226 ], [ 61.336670, 50.798991 ], [ 59.930420, 50.840636 ], [ 59.644775, 50.544854 ], [ 58.364868, 51.062113 ], [ 56.777344, 51.044848 ], [ 55.717163, 50.621588 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.576050, 49.873398 ], [ 47.548828, 50.454007 ], [ 46.752319, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.466675, 48.392738 ], [ 47.312622, 47.717154 ], [ 48.059692, 47.743017 ], [ 48.696899, 47.073863 ], [ 48.592529, 46.562637 ], [ 49.103394, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.675171, 45.640928 ], [ 46.680908, 44.610023 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.988576 ], [ 48.587036, 41.808173 ], [ 47.988281, 41.405656 ], [ 47.817993, 41.149706 ], [ 47.373047, 41.219986 ], [ 46.686401, 41.828642 ], [ 46.406250, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.560547, 42.706660 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.936610 ], [ 67.939453, 41.137296 ], [ 67.500000, 41.149706 ], [ 66.714478, 41.170384 ], [ 66.511230, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.099243, 42.996612 ], [ 64.901733, 43.727445 ], [ 63.187866, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.931396, 44.995883 ], [ 55.969849, 41.306698 ], [ 55.453491, 41.261291 ], [ 54.755859, 42.045213 ], [ 54.080200, 42.326062 ], [ 52.943115, 42.114524 ], [ 52.503662, 41.783601 ], [ 52.448730, 42.028894 ], [ 52.690430, 42.443728 ], [ 52.503662, 42.791370 ], [ 51.344604, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.610023 ], [ 51.278687, 44.516093 ], [ 51.317139, 45.247821 ], [ 52.168579, 45.410020 ], [ 53.041992, 45.259422 ], [ 53.223267, 46.233053 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.803820 ], [ 51.190796, 47.047669 ], [ 50.031738, 46.607941 ], [ 49.103394, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.696899, 47.073863 ], [ 48.059692, 47.743017 ], [ 47.312622, 47.717154 ], [ 46.466675, 48.392738 ], [ 47.043457, 49.152970 ], [ 46.752319, 49.357334 ], [ 47.548828, 50.454007 ], [ 48.576050, 49.873398 ], [ 48.702393, 50.604159 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.717163, 50.621588 ], [ 56.777344, 51.044848 ], [ 58.364868, 51.062113 ], [ 59.644775, 50.544854 ], [ 59.930420, 50.840636 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.272226 ], [ 59.968872, 51.961192 ], [ 60.924683, 52.445966 ], [ 60.737915, 52.719658 ], [ 61.699219, 52.978416 ], [ 60.979614, 53.664171 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.600710 ], [ 67.500000, 54.873446 ], [ 67.939453, 54.936610 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.686401, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.149706 ], [ 47.988281, 41.405656 ], [ 48.587036, 41.808173 ], [ 49.108887, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.564819, 40.647304 ], [ 45.428467, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.181274, 40.984045 ], [ 45.000000, 41.211722 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.265421 ], [ 45.219727, 41.409776 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.062786 ], [ 46.636963, 41.182788 ], [ 46.148071, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.915649, 40.876141 ], [ 53.794556, 40.647304 ], [ 52.855225, 40.647304 ], [ 52.915649, 40.876141 ] ] ], [ [ [ 53.904419, 40.647304 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.915649, 41.869561 ], [ 52.816772, 41.137296 ], [ 52.503662, 41.783601 ], [ 52.943115, 42.114524 ], [ 54.080200, 42.326062 ], [ 54.755859, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.969849, 41.306698 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.824549 ], [ 57.788086, 42.171546 ], [ 58.628540, 42.751046 ], [ 59.974365, 42.224450 ], [ 60.084229, 41.426253 ], [ 60.463257, 41.219986 ], [ 61.545410, 41.265421 ], [ 61.880493, 41.083492 ], [ 61.935425, 40.979898 ], [ 62.094727, 40.647304 ], [ 53.904419, 40.647304 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.187866, 43.651975 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.996612 ], [ 66.022339, 41.996243 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.170384 ], [ 67.500000, 41.149706 ], [ 67.939453, 41.137296 ], [ 67.939453, 40.647304 ], [ 62.094727, 40.647304 ], [ 61.935425, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.751046 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.824549 ], [ 57.095947, 41.323201 ], [ 55.969849, 41.306698 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } ] } ] } , @@ -1924,6 +1920,8 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.978271, 22.350076 ], [ 89.033203, 22.055096 ], [ 88.989258, 21.943046 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.703369 ], [ 86.973267, 21.493964 ], [ 87.033691, 20.745840 ], [ 86.500854, 20.153942 ], [ 85.061646, 19.476950 ], [ 83.941040, 18.302381 ], [ 83.188477, 17.670194 ], [ 82.194214, 17.014768 ], [ 82.188721, 16.557227 ], [ 81.694336, 16.309596 ], [ 80.793457, 15.950766 ], [ 80.326538, 15.897942 ], [ 80.024414, 15.135764 ], [ 80.233154, 13.838080 ], [ 80.288086, 13.004558 ], [ 79.865112, 12.055437 ], [ 79.859619, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.887329, 9.546583 ], [ 79.189453, 9.215982 ], [ 78.277588, 8.933914 ], [ 77.942505, 8.254983 ], [ 77.541504, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.298706 ], [ 75.745239, 11.307708 ], [ 75.393677, 11.781325 ], [ 74.866333, 12.742158 ], [ 74.619141, 13.992706 ], [ 74.443359, 14.615478 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.926476 ], [ 72.822876, 19.207429 ], [ 72.822876, 20.421865 ], [ 72.630615, 21.355897 ], [ 71.174927, 20.756114 ], [ 70.471802, 20.879343 ], [ 69.323730, 21.943046 ], [ 69.164429, 22.090730 ], [ 69.510498, 22.350076 ], [ 88.978271, 22.350076 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.822742 ], [ 80.837402, 9.270201 ], [ 81.304321, 8.564726 ], [ 81.787720, 7.520427 ], [ 81.639404, 6.479067 ], [ 81.216431, 6.195168 ], [ 80.348511, 5.965754 ], [ 79.870605, 6.762806 ], [ 79.694824, 8.200616 ], [ 80.145264, 9.822742 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.350076 ], [ 90.439453, 22.131443 ], [ 90.274658, 21.836006 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.703369, 21.856401 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.033203, 22.055096 ], [ 88.978271, 22.350076 ], [ 90.439453, 22.350076 ] ] ] } } ] } ] } @@ -1932,17 +1930,15 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.299561, 41.310824 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.525269, 40.426042 ], [ 75.465088, 40.563895 ], [ 74.778442, 40.367474 ], [ 73.822632, 39.892880 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.605688 ], [ 69.466553, 39.525230 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.015625, 40.245992 ], [ 71.773682, 40.145289 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.299561, 41.310824 ] ] ], [ [ [ 71.636353, 41.310824 ], [ 71.158447, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.636353, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.487995 ], [ 71.350708, 38.259750 ], [ 71.240845, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.063944 ], [ 71.845093, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.046409 ], [ 73.262329, 37.496652 ], [ 73.948975, 37.422526 ], [ 74.981689, 37.418163 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.921753, 36.721274 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.075742 ], [ 71.499023, 35.648369 ], [ 71.614380, 35.151354 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.347971 ], [ 70.883789, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.500496 ], [ 69.318237, 31.900878 ], [ 68.928223, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.302022 ], [ 67.500000, 31.302022 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 68.137207, 37.024484 ], [ 68.856812, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.521484, 37.609880 ], [ 70.114746, 37.588119 ], [ 70.268555, 37.735969 ], [ 70.378418, 38.138877 ], [ 70.806885, 38.487995 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.027100, 41.310824 ], [ 68.823853, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.258057, 40.663973 ], [ 68.076782, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.157978 ], [ 67.060547, 41.310824 ], [ 69.027100, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.159190 ], [ 90.016479, 28.294707 ], [ 90.000000, 28.289870 ], [ 89.478149, 28.042895 ], [ 88.813477, 27.298571 ], [ 88.731079, 28.086520 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.202768 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.839862 ], [ 83.897095, 29.319931 ], [ 83.336792, 29.463514 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.112061, 30.183122 ], [ 79.722290, 30.883369 ], [ 78.739014, 31.517679 ], [ 78.458862, 32.616243 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.994843 ], [ 78.810425, 33.504759 ], [ 78.914795, 34.320755 ], [ 77.838135, 35.491984 ], [ 76.190186, 35.897950 ], [ 75.899048, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.418163 ], [ 74.827881, 37.991834 ], [ 74.866333, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.822632, 39.892880 ], [ 74.778442, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.426042 ], [ 76.854858, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.299561, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.959160 ], [ 70.460815, 40.497092 ], [ 70.603638, 40.216635 ], [ 71.015625, 40.245992 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.466553, 39.525230 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.505191 ], [ 74.256592, 38.608286 ], [ 74.866333, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.981689, 37.418163 ], [ 73.948975, 37.422526 ], [ 73.262329, 37.496652 ], [ 72.636108, 37.046409 ], [ 72.191162, 36.949892 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.063944 ], [ 71.542969, 37.905199 ], [ 71.240845, 37.952861 ], [ 71.350708, 38.259750 ], [ 70.806885, 38.487995 ], [ 70.378418, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.588119 ], [ 69.521484, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.856812, 37.343959 ], [ 68.137207, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.156157 ], [ 68.175659, 38.899583 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.236508 ], [ 67.703247, 39.580290 ], [ 68.538208, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.726446 ], [ 70.664062, 40.959160 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.899048, 36.668419 ], [ 76.190186, 35.897950 ], [ 77.838135, 35.491984 ], [ 76.871338, 34.651285 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.751221, 34.316218 ], [ 74.102783, 33.440609 ], [ 74.448853, 32.764181 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.960089 ], [ 71.779175, 27.911913 ], [ 70.614624, 27.989551 ], [ 69.515991, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.285034, 25.720735 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.357105 ], [ 68.175659, 23.689805 ], [ 67.500000, 23.926013 ], [ 67.445068, 23.946096 ], [ 67.142944, 24.661994 ], [ 67.060547, 24.746831 ], [ 67.060547, 31.306715 ], [ 67.500000, 31.302022 ], [ 67.681274, 31.302022 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.928223, 31.620644 ], [ 69.318237, 31.900878 ], [ 69.263306, 32.500496 ], [ 69.686279, 33.105347 ], [ 70.323486, 33.358062 ], [ 69.927979, 34.020795 ], [ 70.883789, 33.988918 ], [ 71.158447, 34.347971 ], [ 71.114502, 34.732584 ], [ 71.614380, 35.151354 ], [ 71.499023, 35.648369 ], [ 71.262817, 36.075742 ], [ 71.845093, 36.509636 ], [ 72.921753, 36.721274 ], [ 74.069824, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.838135, 35.491984 ], [ 78.914795, 34.320755 ], [ 78.810425, 33.504759 ], [ 79.211426, 32.994843 ], [ 79.178467, 32.481963 ], [ 78.458862, 32.616243 ], [ 78.739014, 31.517679 ], [ 79.722290, 30.883369 ], [ 81.112061, 30.183122 ], [ 80.474854, 29.730992 ], [ 80.090332, 28.796546 ], [ 81.057129, 28.415560 ], [ 82.001953, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.677124, 27.235095 ], [ 85.253906, 26.725987 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.396790 ], [ 88.060913, 26.416470 ], [ 88.176270, 26.809364 ], [ 88.044434, 27.444916 ], [ 88.121338, 27.877928 ], [ 88.731079, 28.086520 ], [ 88.835449, 27.098254 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.877981 ], [ 90.439453, 26.868181 ], [ 90.439453, 25.195000 ], [ 90.000000, 25.259601 ], [ 89.923096, 25.269536 ], [ 89.835205, 25.962984 ], [ 89.357300, 26.012361 ], [ 88.560791, 26.445984 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.308105, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.231938 ], [ 88.527832, 23.629427 ], [ 88.873901, 22.877440 ], [ 89.033203, 22.055096 ], [ 88.989258, 21.943046 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.703369 ], [ 87.209473, 21.534847 ], [ 69.763184, 21.534847 ], [ 69.164429, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.351196, 22.842008 ], [ 68.175659, 23.689805 ], [ 68.840332, 24.357105 ], [ 71.043091, 24.357105 ], [ 70.845337, 25.214881 ], [ 70.285034, 25.720735 ], [ 70.169678, 26.490240 ], [ 69.515991, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.779175, 27.911913 ], [ 72.822876, 28.960089 ], [ 73.449097, 29.978729 ], [ 74.421387, 30.977609 ], [ 74.404907, 31.690782 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.764181 ], [ 74.102783, 33.440609 ], [ 73.751221, 34.316218 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.651285 ], [ 77.838135, 35.491984 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.016479, 28.294707 ], [ 90.439453, 28.159190 ], [ 90.439453, 26.868181 ], [ 90.373535, 26.877981 ], [ 90.000000, 26.784847 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.298571 ], [ 89.478149, 28.042895 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.294707 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.445984 ], [ 89.357300, 26.012361 ], [ 89.835205, 25.962984 ], [ 89.923096, 25.269536 ], [ 90.000000, 25.259601 ], [ 90.439453, 25.195000 ], [ 90.439453, 22.131443 ], [ 90.274658, 21.836006 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.703369, 21.856401 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.033203, 22.055096 ], [ 88.873901, 22.877440 ], [ 88.527832, 23.629427 ], [ 88.698120, 24.231938 ], [ 88.082886, 24.502145 ], [ 88.308105, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.445984 ] ] ] } } ] } ] } , @@ -1950,13 +1946,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.208549 ], [ 90.000000, 50.011269 ], [ 88.807983, 49.471694 ], [ 87.753296, 49.296472 ], [ 87.357788, 49.214009 ], [ 86.830444, 49.827353 ], [ 85.539551, 49.692508 ], [ 85.116577, 50.117056 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.380737, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.402982 ], [ 76.525269, 54.178512 ], [ 76.893311, 54.489187 ], [ 74.382935, 53.546836 ], [ 73.427124, 53.491314 ], [ 73.509521, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.180420, 54.133478 ], [ 70.867310, 55.169456 ], [ 69.065552, 55.385352 ], [ 68.170166, 54.971308 ], [ 67.500000, 54.873446 ], [ 67.060547, 54.807017 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.297198 ], [ 75.635376, 42.875964 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.960443 ], [ 79.140015, 42.855833 ], [ 79.645386, 42.496403 ], [ 80.260620, 42.350425 ], [ 80.117798, 42.122673 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.657104, 40.647304 ], [ 72.663574, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.520917 ], [ 71.257324, 42.167475 ], [ 70.960693, 42.265114 ], [ 71.185913, 42.702623 ], [ 71.845093, 42.843751 ], [ 73.487549, 42.500453 ], [ 73.646851, 43.092961 ], [ 74.212646, 43.297198 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.867310, 55.169456 ], [ 71.180420, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.509521, 54.036812 ], [ 73.427124, 53.491314 ], [ 74.382935, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.525269, 54.178512 ], [ 77.799683, 53.402982 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.947021, 50.812877 ], [ 83.380737, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.116577, 50.117056 ], [ 85.539551, 49.692508 ], [ 86.830444, 49.827353 ], [ 87.357788, 49.214009 ], [ 86.599731, 48.549342 ], [ 85.770264, 48.454709 ], [ 85.720825, 47.454094 ], [ 85.166016, 47.002734 ], [ 83.182983, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.260620, 42.350425 ], [ 79.645386, 42.496403 ], [ 79.140015, 42.855833 ], [ 77.656860, 42.960443 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.875964 ], [ 74.212646, 43.297198 ], [ 73.646851, 43.092961 ], [ 73.487549, 42.500453 ], [ 71.845093, 42.843751 ], [ 71.185913, 42.702623 ], [ 70.960693, 42.265114 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.823853, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.258057, 40.663973 ], [ 68.076782, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.149706 ], [ 67.060547, 41.157978 ], [ 67.060547, 54.807017 ], [ 67.500000, 54.873446 ], [ 68.170166, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.753296, 49.296472 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.657104, 40.647304 ], [ 76.854858, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.122673 ], [ 80.260620, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.182983, 47.331377 ], [ 85.166016, 47.002734 ], [ 85.720825, 47.454094 ], [ 85.770264, 48.454709 ], [ 86.599731, 48.549342 ], [ 87.357788, 49.214009 ], [ 87.753296, 49.296472 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.959160 ], [ 70.526733, 40.647304 ], [ 69.290771, 40.647304 ], [ 69.329224, 40.726446 ], [ 70.664062, 40.959160 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.208549 ], [ 90.439453, 47.509780 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.753296, 49.296472 ], [ 88.807983, 49.471694 ], [ 90.000000, 50.011269 ], [ 90.439453, 50.208549 ] ] ] } } ] } ] } , @@ -2020,14 +2016,12 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.570801, 22.350076 ], [ 92.675171, 22.039822 ], [ 92.669678, 21.943046 ], [ 92.653198, 21.325198 ], [ 92.301636, 21.473518 ], [ 92.367554, 20.668766 ], [ 92.081909, 21.192094 ], [ 92.026978, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.182318 ], [ 91.713867, 22.350076 ], [ 92.570801, 22.350076 ] ] ], [ [ [ 90.560303, 22.350076 ], [ 90.335083, 21.943046 ], [ 90.274658, 21.836006 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.703369, 21.856401 ], [ 89.560547, 21.912471 ], [ 89.560547, 22.350076 ], [ 90.560303, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.255249, 22.350076 ], [ 102.557373, 21.943046 ], [ 102.755127, 21.672744 ], [ 103.205566, 20.766387 ], [ 104.436035, 20.761250 ], [ 104.820557, 19.885557 ], [ 104.183350, 19.627066 ], [ 103.897705, 19.264480 ], [ 105.095215, 18.667063 ], [ 105.924683, 17.486911 ], [ 106.556396, 16.604610 ], [ 107.314453, 15.908508 ], [ 107.567139, 15.204687 ], [ 107.380371, 14.200488 ], [ 106.495972, 14.572951 ], [ 106.045532, 13.880746 ], [ 105.216064, 14.275030 ], [ 105.545654, 14.721761 ], [ 105.589600, 15.570128 ], [ 104.776611, 16.441354 ], [ 104.716187, 17.429270 ], [ 103.958130, 18.239786 ], [ 103.200073, 18.307596 ], [ 102.996826, 17.963058 ], [ 102.414551, 17.931702 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.406655 ], [ 101.282959, 19.461413 ], [ 100.607300, 19.508020 ], [ 100.546875, 20.107523 ], [ 100.118408, 20.416717 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.271973, 21.202337 ], [ 101.804810, 21.176729 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.766357, 22.350076 ], [ 102.255249, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.321899, 22.350076 ], [ 99.239502, 22.116177 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.151123, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.118408, 20.416717 ], [ 99.541626, 20.184879 ], [ 98.959351, 19.751194 ], [ 98.256226, 19.709829 ], [ 97.800293, 18.625425 ], [ 97.377319, 18.443136 ], [ 97.860718, 17.565484 ], [ 98.492432, 16.836090 ], [ 98.904419, 16.177749 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.432007, 14.620794 ], [ 99.096680, 13.827412 ], [ 99.212036, 13.266680 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.930977 ], [ 98.459473, 10.676803 ], [ 98.767090, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.122280 ], [ 98.102417, 13.640649 ], [ 97.778320, 14.838612 ], [ 97.597046, 16.098598 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.366821, 15.712951 ], [ 94.806519, 15.802825 ], [ 94.191284, 16.040534 ], [ 94.531860, 17.277219 ], [ 94.323120, 18.213698 ], [ 93.543091, 19.368159 ], [ 93.663940, 19.725342 ], [ 93.076172, 19.854561 ], [ 92.367554, 20.668766 ], [ 92.301636, 21.473518 ], [ 92.653198, 21.325198 ], [ 92.669678, 21.943046 ], [ 92.675171, 22.039822 ], [ 93.164062, 22.278931 ], [ 93.147583, 22.350076 ], [ 99.321899, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.118408, 20.416717 ], [ 100.546875, 20.107523 ], [ 100.607300, 19.508020 ], [ 101.282959, 19.461413 ], [ 101.035767, 18.406655 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.414551, 17.931702 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.307596 ], [ 103.958130, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.721761 ], [ 105.216064, 14.275030 ], [ 104.282227, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.184334 ], [ 101.689453, 12.645698 ], [ 100.832520, 12.629618 ], [ 100.980835, 13.410994 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.223022, 9.237671 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.293035 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.855532 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.815796, 5.812757 ], [ 101.156616, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.462693 ], [ 99.689941, 6.850078 ], [ 99.519653, 7.346123 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.379997 ], [ 98.338623, 7.792636 ], [ 98.151855, 8.347388 ], [ 98.261719, 8.971897 ], [ 98.552856, 9.930977 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.212036, 13.266680 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.836090 ], [ 97.860718, 17.565484 ], [ 97.377319, 18.443136 ], [ 97.800293, 18.625425 ], [ 98.256226, 19.709829 ], [ 98.959351, 19.751194 ], [ 99.541626, 20.184879 ], [ 100.118408, 20.416717 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.255249, 22.350076 ], [ 102.557373, 21.943046 ], [ 102.755127, 21.672744 ], [ 103.205566, 20.766387 ], [ 104.436035, 20.761250 ], [ 104.820557, 19.885557 ], [ 104.183350, 19.627066 ], [ 103.897705, 19.264480 ], [ 105.095215, 18.667063 ], [ 105.924683, 17.486911 ], [ 106.556396, 16.604610 ], [ 107.314453, 15.908508 ], [ 107.567139, 15.204687 ], [ 107.380371, 14.200488 ], [ 106.495972, 14.572951 ], [ 106.045532, 13.880746 ], [ 105.216064, 14.275030 ], [ 105.545654, 14.721761 ], [ 105.589600, 15.570128 ], [ 104.776611, 16.441354 ], [ 104.716187, 17.429270 ], [ 103.958130, 18.239786 ], [ 103.200073, 18.307596 ], [ 102.996826, 17.963058 ], [ 102.414551, 17.931702 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.406655 ], [ 101.282959, 19.461413 ], [ 100.607300, 19.508020 ], [ 100.546875, 20.107523 ], [ 100.118408, 20.416717 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.271973, 21.202337 ], [ 101.804810, 21.176729 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.766357, 22.350076 ], [ 102.255249, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.200488 ], [ 107.616577, 13.533860 ], [ 107.490234, 12.334636 ], [ 105.809326, 11.566144 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.887254 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.151456 ], [ 102.584839, 12.184334 ], [ 102.348633, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.282227, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.045532, 13.880746 ], [ 106.495972, 14.572951 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.091151 ], [ 112.939453, 1.472006 ], [ 112.862549, 1.499463 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.159668, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.830322, 1.340210 ], [ 109.665527, 2.004596 ], [ 110.396118, 1.664195 ], [ 111.170654, 1.850874 ], [ 111.368408, 2.696148 ], [ 111.796875, 2.888180 ], [ 112.500000, 3.014356 ], [ 112.939453, 3.091151 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.156616, 5.692516 ], [ 101.815796, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.963867, 5.523043 ], [ 103.381348, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.430786, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.631249 ], [ 104.227295, 1.290784 ], [ 103.518677, 1.224882 ], [ 102.573853, 1.966167 ], [ 101.392822, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.557861, 4.768047 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.462693 ], [ 100.261230, 6.642783 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.665527, 2.004596 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 112.939453, 1.472006 ], [ 112.939453, -0.439449 ], [ 109.088745, -0.439449 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.340210 ], [ 109.665527, 2.004596 ] ] ], [ [ [ 95.295410, 5.479300 ], [ 95.938110, 5.441022 ], [ 97.487183, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.695435, 3.173425 ], [ 100.640259, 2.097920 ], [ 101.656494, 2.081451 ], [ 102.496948, 1.400617 ], [ 103.079224, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.787842, 0.000000 ], [ 103.573608, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.181274 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.454693 ], [ 97.179565, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.479300 ] ] ] ] } } ] } ] } @@ -2038,11 +2032,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.016479, 28.294707 ], [ 90.730591, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.697388, 27.771051 ], [ 92.103882, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.219482, 26.809364 ], [ 90.373535, 26.877981 ], [ 90.000000, 26.784847 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.794654 ], [ 89.560547, 28.081674 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.294707 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 25.992612 ], [ 89.835205, 25.962984 ], [ 89.923096, 25.269536 ], [ 90.000000, 25.259601 ], [ 90.873413, 25.130366 ], [ 91.801758, 25.145285 ], [ 92.378540, 24.976099 ], [ 91.917114, 24.131715 ], [ 91.466675, 24.071544 ], [ 91.159058, 23.503552 ], [ 91.708374, 22.983681 ], [ 91.867676, 23.624395 ], [ 92.147827, 23.629427 ], [ 92.675171, 22.039822 ], [ 92.669678, 21.943046 ], [ 92.658691, 21.534847 ], [ 92.043457, 21.534847 ], [ 92.026978, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.182318 ], [ 91.417236, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.587769, 22.390714 ], [ 90.335083, 21.943046 ], [ 90.274658, 21.836006 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.703369, 21.856401 ], [ 89.560547, 21.912471 ], [ 89.560547, 25.992612 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.746746 ], [ 98.684692, 27.508271 ], [ 98.712158, 26.745610 ], [ 98.673706, 25.918526 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.895883 ], [ 98.662720, 24.061512 ], [ 98.898926, 23.140360 ], [ 99.530640, 22.948277 ], [ 99.239502, 22.116177 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.151123, 21.851302 ], [ 101.173096, 21.534847 ], [ 92.658691, 21.534847 ], [ 92.669678, 21.943046 ], [ 92.675171, 22.039822 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.076559 ], [ 94.108887, 23.850674 ], [ 94.553833, 24.676970 ], [ 94.603271, 25.160201 ], [ 95.152588, 26.002487 ], [ 95.125122, 26.573790 ], [ 96.421509, 27.264396 ], [ 97.135620, 27.083582 ], [ 97.053223, 27.698120 ], [ 97.404785, 27.882784 ], [ 97.327881, 28.260844 ], [ 97.910156, 28.338230 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.466878 ], [ 102.557373, 21.943046 ], [ 102.755127, 21.672744 ], [ 102.826538, 21.534847 ], [ 101.755371, 21.534847 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.172852, 22.466878 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.331421, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.726685, 22.796439 ], [ 106.567383, 22.217920 ], [ 106.891479, 21.943046 ], [ 107.045288, 21.810508 ], [ 108.050537, 21.550175 ], [ 108.023071, 21.534847 ], [ 102.826538, 21.534847 ], [ 102.755127, 21.672744 ], [ 102.557373, 21.943046 ], [ 102.172852, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.816694 ], [ 105.331421, 23.352343 ] ] ] } } ] } ] } , @@ -2050,7 +2044,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 56.022948 ], [ 112.939453, 49.564415 ], [ 112.895508, 49.543034 ], [ 112.500000, 49.493107 ], [ 111.582642, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.292889 ], [ 108.473511, 49.282140 ], [ 107.869263, 49.795450 ], [ 106.891479, 50.275299 ], [ 105.886230, 50.405017 ], [ 104.622803, 50.275299 ], [ 103.677979, 50.088869 ], [ 102.255249, 50.509933 ], [ 102.062988, 51.258477 ], [ 100.887451, 51.515580 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.045734 ], [ 97.827759, 51.010299 ], [ 98.234253, 50.422519 ], [ 97.261963, 49.724479 ], [ 95.811768, 49.975955 ], [ 94.817505, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.235718, 50.802463 ], [ 90.714111, 50.331436 ], [ 89.560547, 49.813176 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.045734 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.515580 ], [ 102.062988, 51.258477 ], [ 102.255249, 50.509933 ], [ 103.677979, 50.088869 ], [ 104.622803, 50.275299 ], [ 105.886230, 50.405017 ], [ 106.891479, 50.275299 ], [ 107.869263, 49.795450 ], [ 108.473511, 49.282140 ], [ 109.401855, 49.292889 ], [ 110.659790, 49.131408 ], [ 111.582642, 49.378797 ], [ 112.500000, 49.493107 ], [ 112.895508, 49.543034 ], [ 112.939453, 49.564415 ], [ 112.939453, 44.914249 ], [ 112.500000, 44.999767 ], [ 111.873779, 45.100669 ], [ 111.346436, 44.457310 ], [ 111.665039, 44.071800 ], [ 111.829834, 43.743321 ], [ 111.132202, 43.405047 ], [ 110.412598, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.480200 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.523926, 41.906365 ], [ 103.309937, 41.906365 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.662241 ], [ 99.514160, 42.524748 ], [ 97.454224, 42.747012 ], [ 96.350098, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.241264 ], [ 94.691162, 44.351350 ], [ 93.482666, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.587769, 45.721522 ], [ 90.972290, 46.886477 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.768868 ], [ 89.560547, 47.883197 ], [ 89.560547, 49.813176 ], [ 90.714111, 50.331436 ], [ 92.235718, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.817505, 50.014799 ], [ 95.811768, 49.975955 ], [ 97.261963, 49.724479 ], [ 98.234253, 50.422519 ], [ 97.827759, 51.010299 ], [ 98.860474, 52.045734 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 47.883197 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.694974 ], [ 90.972290, 46.886477 ], [ 90.587769, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.482666, 44.976457 ], [ 94.691162, 44.351350 ], [ 95.306396, 44.241264 ], [ 95.762329, 43.321181 ], [ 96.350098, 42.726839 ], [ 97.454224, 42.747012 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.662241 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.906365 ], [ 104.523926, 41.906365 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.480200 ], [ 109.242554, 42.520700 ], [ 110.412598, 42.871938 ], [ 111.132202, 43.405047 ], [ 111.829834, 43.743321 ], [ 111.665039, 44.071800 ], [ 111.346436, 44.457310 ], [ 111.873779, 45.100669 ], [ 112.500000, 44.999767 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.883197 ] ] ] } } ] } ] } , @@ -2118,7 +2112,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.969482, -8.890499 ], [ 125.068359, -9.091249 ], [ 125.090332, -9.394871 ], [ 124.436646, -10.141932 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.552246, -9.898510 ], [ 123.980713, -9.291886 ], [ 124.969482, -8.890499 ] ] ], [ [ [ 119.899292, -9.362353 ], [ 120.426636, -9.665738 ], [ 120.778198, -9.968851 ], [ 120.717773, -10.239249 ], [ 120.294800, -10.260871 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.362353 ] ] ], [ [ [ 117.899780, -8.097300 ], [ 118.262329, -8.363693 ], [ 118.877563, -8.282163 ], [ 119.124756, -8.705929 ], [ 117.971191, -8.906780 ], [ 117.279053, -9.042428 ], [ 116.740723, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.450639 ], [ 117.899780, -8.097300 ] ] ], [ [ [ 122.904053, -8.091862 ], [ 122.755737, -8.651626 ], [ 121.256104, -8.933914 ], [ 119.926758, -8.809082 ], [ 119.921265, -8.445205 ], [ 120.717773, -8.238674 ], [ 121.343994, -8.537565 ], [ 122.008667, -8.461506 ], [ 122.904053, -8.091862 ] ] ], [ [ [ 112.060547, -6.800990 ], [ 112.500000, -6.915521 ], [ 112.615356, -6.948239 ], [ 112.977905, -7.596663 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.369127 ], [ 114.565430, -8.749366 ], [ 113.466797, -8.347388 ], [ 112.560425, -8.374562 ], [ 112.500000, -8.374562 ], [ 112.060547, -8.341953 ], [ 112.060547, -6.800990 ] ] ], [ [ [ 117.641602, 0.439449 ], [ 117.476807, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.488480 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.496972 ], [ 113.757935, -3.436658 ], [ 113.258057, -3.118576 ], [ 112.500000, -3.348922 ], [ 112.066040, -3.480523 ], [ 112.060547, -3.469557 ], [ 112.060547, 0.439449 ], [ 117.641602, 0.439449 ] ] ], [ [ [ 134.500122, -5.446491 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.291382, -5.785432 ], [ 134.500122, -5.446491 ] ] ], [ [ [ 124.447632, 0.439449 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.428463 ], [ 121.058350, 0.379026 ], [ 120.184937, 0.236205 ], [ 120.140991, 0.000000 ], [ 120.042114, -0.521843 ], [ 120.937500, -1.411600 ], [ 121.475830, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.261108, -1.076597 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.905776 ], [ 122.453613, -3.184394 ], [ 122.272339, -3.529869 ], [ 123.173218, -4.685930 ], [ 123.162231, -5.342583 ], [ 122.629395, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.466904 ], [ 121.739502, -4.850154 ], [ 121.486816, -4.576425 ], [ 121.618652, -4.187551 ], [ 120.899048, -3.601142 ], [ 120.970459, -2.630301 ], [ 120.305786, -2.932069 ], [ 120.388184, -4.099890 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.676117 ], [ 119.366455, -5.380867 ], [ 119.652100, -4.461427 ], [ 119.498291, -3.496972 ], [ 119.080811, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.147324 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 119.970703, 0.439449 ], [ 124.447632, 0.439449 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.153487 ], [ 134.423218, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.359889 ], [ 135.439453, -4.488809 ], [ 135.164795, -4.461427 ], [ 135.000000, -4.362843 ], [ 133.665161, -3.540835 ], [ 133.368530, -4.023179 ], [ 132.984009, -4.110848 ], [ 132.758789, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.822344 ], [ 133.066406, -2.460181 ], [ 133.780518, -2.482133 ], [ 133.698120, -2.213195 ], [ 132.231445, -2.213195 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.433566 ], [ 130.517578, -0.939289 ], [ 131.868896, -0.697615 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.473633, -3.091151 ], [ 130.836182, -3.858774 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.365373 ], [ 128.589478, -3.431175 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.844290 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 127.001953, -3.129546 ], [ 127.249146, -3.458591 ], [ 126.875610, -3.793003 ], [ 126.183472, -3.606625 ], [ 125.991211, -3.178910 ], [ 127.001953, -3.129546 ] ] ], [ [ [ 128.644409, 0.439449 ], [ 128.633423, 0.258178 ], [ 128.122559, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.380737, -0.780005 ], [ 128.100586, -0.900842 ], [ 127.694092, -0.269164 ], [ 127.633667, 0.000000 ], [ 127.534790, 0.439449 ], [ 128.644409, 0.439449 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.147949, -21.754398 ], [ 114.169922, -21.943046 ], [ 114.208374, -22.350076 ], [ 113.807373, -22.350076 ], [ 114.043579, -21.943046 ], [ 114.147949, -21.754398 ] ] ], [ [ [ 114.329224, -22.350076 ], [ 114.576416, -21.943046 ], [ 114.647827, -21.830907 ], [ 115.460815, -21.493964 ], [ 115.949707, -21.069123 ], [ 116.713257, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.443848, -20.745840 ], [ 118.229370, -20.375527 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.045611 ], [ 119.251099, -19.952696 ], [ 119.805908, -19.978511 ], [ 120.855103, -19.683970 ], [ 121.398926, -19.238550 ], [ 121.657104, -18.703489 ], [ 122.239380, -18.198044 ], [ 122.288818, -17.800996 ], [ 122.310791, -17.256236 ], [ 123.013916, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.859863, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.260864, -16.325411 ], [ 124.381714, -15.564836 ], [ 124.925537, -15.077428 ], [ 125.167236, -14.679254 ], [ 125.672607, -14.509144 ], [ 125.683594, -14.232438 ], [ 126.123047, -14.349548 ], [ 126.145020, -14.093957 ], [ 126.584473, -13.955392 ], [ 127.067871, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.870469 ], [ 128.984985, -14.875778 ], [ 129.622192, -14.971320 ], [ 129.407959, -14.418720 ], [ 129.891357, -13.619295 ], [ 130.341797, -13.357554 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.538478 ], [ 131.226196, -12.184334 ], [ 131.737061, -12.302435 ], [ 132.577515, -12.114523 ], [ 132.555542, -11.603813 ], [ 131.824951, -11.275387 ], [ 132.357788, -11.129897 ], [ 133.016968, -11.377724 ], [ 133.549805, -11.786703 ], [ 134.395752, -12.044693 ], [ 134.675903, -11.942601 ], [ 135.000000, -12.098410 ], [ 135.296631, -12.248760 ], [ 135.439453, -12.178965 ], [ 135.439453, -14.700508 ], [ 135.428467, -14.716448 ], [ 135.439453, -14.758947 ], [ 135.439453, -22.350076 ], [ 114.329224, -22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.958008, -8.271291 ], [ 127.337036, -8.396300 ], [ 126.968994, -8.667918 ], [ 125.925293, -9.107521 ], [ 125.090332, -9.394871 ], [ 125.068359, -9.091249 ], [ 124.969482, -8.890499 ], [ 125.084839, -8.657057 ], [ 125.947266, -8.434338 ], [ 126.644897, -8.396300 ], [ 126.958008, -8.271291 ] ] ] } } ] } ] } , @@ -2140,7 +2134,7 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.682617, 41.310824 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.188232, 40.659806 ], [ 129.012451, 40.484560 ], [ 128.633423, 40.191463 ], [ 127.968750, 40.023408 ], [ 127.534790, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.386475, 39.215231 ], [ 127.781982, 39.049052 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.781982, 38.302870 ], [ 127.073364, 38.255436 ], [ 126.683350, 37.805444 ], [ 126.238403, 37.840157 ], [ 126.172485, 37.749001 ], [ 125.689087, 37.939865 ], [ 125.568237, 37.753344 ], [ 125.277100, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.948529 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.548165 ], [ 125.222168, 38.664067 ], [ 125.134277, 38.848264 ], [ 125.386963, 39.389509 ], [ 125.321045, 39.550648 ], [ 124.738770, 39.660685 ], [ 124.266357, 39.926588 ], [ 125.079346, 40.568067 ], [ 125.919800, 40.979898 ], [ 126.183472, 41.108330 ], [ 126.375732, 41.310824 ], [ 129.682617, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.609985, 35.733136 ], [ 135.000000, 35.657296 ], [ 135.439453, 35.572449 ], [ 135.439453, 33.664925 ], [ 135.120850, 33.847608 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.341064, 34.375179 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.884097 ], [ 132.000732, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.687866, 31.029401 ], [ 130.204468, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.293804 ], [ 130.352783, 33.605470 ], [ 130.880127, 34.234512 ], [ 131.885376, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.609985, 35.733136 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.148181 ], [ 134.763794, 33.806538 ], [ 134.203491, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.280640, 33.289212 ], [ 133.016968, 32.704111 ], [ 132.363281, 32.990236 ], [ 132.368774, 33.463525 ], [ 132.923584, 34.061761 ], [ 133.494873, 33.943360 ], [ 133.901367, 34.366111 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.347778, 38.612578 ], [ 129.210205, 37.431251 ], [ 129.462891, 36.782892 ], [ 129.468384, 35.630512 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.890437 ], [ 127.386475, 34.474864 ], [ 126.485596, 34.388779 ], [ 126.375732, 34.935482 ], [ 126.557007, 35.684072 ], [ 126.117554, 36.725677 ], [ 126.859131, 36.892801 ], [ 126.172485, 37.749001 ], [ 126.238403, 37.840157 ], [ 126.683350, 37.805444 ], [ 127.073364, 38.255436 ], [ 127.781982, 38.302870 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ] ] ] } } ] } ] } , @@ -2148,7 +2142,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 56.022948 ], [ 135.439453, 54.927142 ], [ 135.126343, 54.730964 ], [ 135.439453, 54.705582 ], [ 135.439453, 43.921637 ], [ 135.000000, 43.516689 ], [ 134.868164, 43.397065 ], [ 133.538818, 42.811522 ], [ 132.907104, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.928274 ], [ 131.286621, 44.111254 ], [ 131.022949, 44.968684 ], [ 131.885376, 45.321254 ], [ 133.099365, 45.143305 ], [ 133.769531, 46.115134 ], [ 134.110107, 47.212106 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.432845 ], [ 135.027466, 48.476563 ], [ 135.000000, 48.472921 ], [ 133.374023, 48.184401 ], [ 132.506104, 47.787326 ], [ 130.989990, 47.791016 ], [ 130.583496, 48.730832 ], [ 129.396973, 49.439557 ], [ 127.655640, 49.759978 ], [ 127.287598, 50.739932 ], [ 126.941528, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.947266, 52.792797 ], [ 125.068359, 53.159947 ], [ 123.568726, 53.458620 ], [ 122.244873, 53.432447 ], [ 121.003418, 53.252069 ], [ 120.179443, 52.752919 ], [ 120.723267, 52.516221 ], [ 120.739746, 51.964577 ], [ 120.179443, 51.641885 ], [ 119.278564, 50.583237 ], [ 119.289551, 50.141706 ], [ 117.877808, 49.510944 ], [ 116.680298, 49.887557 ], [ 115.488281, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.247205 ], [ 112.895508, 49.543034 ], [ 112.500000, 49.493107 ], [ 112.060547, 49.439557 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.362183, 50.247205 ], [ 114.960938, 50.141706 ], [ 115.488281, 49.806087 ], [ 116.680298, 49.887557 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.295532, 47.698672 ], [ 118.064575, 48.067068 ], [ 118.866577, 47.746711 ], [ 119.772949, 47.047669 ], [ 119.663086, 46.690899 ], [ 118.872070, 46.803820 ], [ 117.421875, 46.672056 ], [ 116.718750, 46.388622 ], [ 115.982666, 45.725356 ], [ 114.461060, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 44.999767 ], [ 112.060547, 45.073521 ], [ 112.060547, 49.439557 ], [ 112.500000, 49.493107 ], [ 112.895508, 49.543034 ], [ 114.362183, 50.247205 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.574219, 53.458620 ], [ 125.068359, 53.159947 ], [ 125.947266, 52.792797 ], [ 126.562500, 51.784834 ], [ 126.941528, 51.354631 ], [ 127.287598, 50.739932 ], [ 127.655640, 49.759978 ], [ 129.396973, 49.439557 ], [ 130.583496, 48.730832 ], [ 130.989990, 47.791016 ], [ 132.506104, 47.787326 ], [ 133.374023, 48.184401 ], [ 135.000000, 48.472921 ], [ 135.027466, 48.476563 ], [ 135.000000, 48.432845 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.212106 ], [ 133.769531, 46.115134 ], [ 133.099365, 45.143305 ], [ 131.885376, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.111254 ], [ 131.143799, 42.928274 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.995728, 42.984558 ], [ 129.594727, 42.423457 ], [ 128.051147, 41.996243 ], [ 128.210449, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.870117, 41.816361 ], [ 126.183472, 41.108330 ], [ 125.919800, 40.979898 ], [ 125.238647, 40.647304 ], [ 121.942749, 40.647304 ], [ 121.640625, 40.946714 ], [ 120.899048, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.073521 ], [ 112.500000, 44.999767 ], [ 113.461304, 44.809122 ], [ 114.461060, 45.340563 ], [ 115.982666, 45.725356 ], [ 116.718750, 46.388622 ], [ 117.421875, 46.672056 ], [ 118.872070, 46.803820 ], [ 119.663086, 46.690899 ], [ 119.772949, 47.047669 ], [ 118.866577, 47.746711 ], [ 118.064575, 48.067068 ], [ 117.295532, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.680298, 49.887557 ], [ 117.877808, 49.510944 ], [ 119.289551, 50.141706 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.641885 ], [ 120.739746, 51.964577 ], [ 120.723267, 52.516221 ], [ 120.179443, 52.752919 ], [ 121.003418, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.574219, 53.458620 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.995728, 42.984558 ], [ 130.638428, 42.395066 ], [ 130.781250, 42.220382 ], [ 130.402222, 42.281373 ], [ 129.968262, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.188232, 40.659806 ], [ 129.171753, 40.647304 ], [ 125.238647, 40.647304 ], [ 125.919800, 40.979898 ], [ 126.183472, 41.108330 ], [ 126.870117, 41.816361 ], [ 127.342529, 41.504464 ], [ 128.210449, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.423457 ], [ 129.995728, 42.984558 ] ] ] } } ] } ] } , @@ -2217,6 +2213,8 @@ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.328857, -1.702630 ], [ 139.185791, -2.054003 ], [ 139.927368, -2.410787 ], [ 140.998535, -2.602864 ], [ 141.031494, -9.118368 ], [ 140.141602, -8.298470 ], [ 139.125366, -8.097300 ], [ 138.883667, -8.379997 ], [ 137.614746, -8.412602 ], [ 138.037720, -7.596663 ], [ 138.669434, -7.318882 ], [ 138.405762, -6.233395 ], [ 137.927856, -5.391805 ], [ 135.988770, -4.549046 ], [ 135.164795, -4.461427 ], [ 135.000000, -4.362843 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.849776 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ] ] ], [ [ [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.560547, -6.429942 ], [ 134.560547, -5.523043 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.602864 ], [ 142.734375, -3.288598 ], [ 144.585571, -3.858774 ], [ 145.272217, -4.373798 ], [ 145.832520, -4.877521 ], [ 145.980835, -5.462896 ], [ 147.650757, -6.085936 ], [ 147.892456, -6.615501 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.389705 ], [ 148.084717, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.040283, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.803833, -10.293301 ], [ 150.688477, -10.585022 ], [ 150.029297, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.925171, -10.282491 ], [ 147.914429, -10.131117 ], [ 147.134399, -9.492408 ], [ 146.568604, -8.944767 ], [ 146.046753, -8.070107 ], [ 144.744873, -7.629331 ], [ 143.898926, -7.917793 ], [ 143.283691, -8.244110 ], [ 143.415527, -8.982749 ], [ 142.630005, -9.324411 ], [ 142.069702, -9.161756 ], [ 141.031494, -9.118368 ], [ 140.998535, -2.602864 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.336426, -4.313546 ], [ 152.319946, -4.866574 ], [ 151.984863, -5.479300 ], [ 151.457520, -5.561315 ], [ 151.303711, -5.840081 ], [ 150.243530, -6.315299 ], [ 149.710693, -6.315299 ], [ 148.892212, -6.025848 ], [ 148.320923, -5.747174 ], [ 148.403320, -5.435554 ], [ 149.298706, -5.583184 ], [ 149.848022, -5.506640 ], [ 149.996338, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.238037, -5.533978 ], [ 150.809326, -5.457427 ], [ 151.089478, -5.112830 ], [ 151.649780, -4.757098 ], [ 151.539917, -4.165637 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 154.654541, -5.041699 ], [ 154.758911, -5.342583 ], [ 155.061035, -5.566783 ], [ 155.549927, -6.200629 ], [ 156.022339, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.920974 ], [ 155.165405, -6.533645 ], [ 154.731445, -5.900189 ], [ 154.511719, -5.140186 ], [ 154.654541, -5.041699 ] ] ], [ [ [ 150.941162, -2.498597 ], [ 151.479492, -2.778451 ], [ 151.820068, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.661446 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.768047 ], [ 152.638550, -4.176594 ], [ 152.407837, -3.787522 ], [ 151.386108, -3.036298 ], [ 150.661011, -2.740044 ], [ 150.941162, -2.498597 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.544189, -6.599131 ], [ 157.137451, -7.019120 ], [ 157.500000, -7.318882 ], [ 157.538452, -7.346123 ], [ 157.500000, -7.357019 ], [ 157.340698, -7.406048 ], [ 156.901245, -7.177201 ], [ 156.489258, -6.768261 ], [ 156.544189, -6.599131 ] ] ] } } ] } ] } , @@ -2230,7 +2228,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.197266, 56.022948 ], [ 136.796265, 55.776573 ], [ 135.126343, 54.730964 ], [ 136.702881, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.806763, 54.255598 ], [ 139.899902, 54.188155 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.237892 ], [ 140.597534, 51.241286 ], [ 140.515137, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 46.998988 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.143305 ], [ 135.516357, 43.988862 ], [ 135.000000, 43.516689 ], [ 134.868164, 43.397065 ], [ 134.560547, 43.261206 ], [ 134.560547, 47.680183 ], [ 135.000000, 48.432845 ], [ 135.027466, 48.476563 ], [ 135.000000, 48.472921 ], [ 134.560547, 48.396385 ], [ 134.560547, 56.022948 ], [ 137.197266, 56.022948 ] ] ], [ [ [ 142.657471, 54.364558 ], [ 142.915649, 53.703211 ], [ 143.261719, 52.739618 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.746884 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.861089 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.739861 ], [ 142.091675, 45.966425 ], [ 141.904907, 46.807580 ], [ 142.020264, 47.779943 ], [ 141.904907, 48.857487 ], [ 142.135620, 49.614269 ], [ 142.179565, 50.951506 ], [ 141.591797, 51.934105 ], [ 141.685181, 53.301338 ], [ 142.608032, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.657471, 54.364558 ] ] ], [ [ [ 157.939453, 56.022948 ], [ 157.939453, 51.754240 ], [ 157.500000, 51.471119 ], [ 156.791382, 51.010299 ], [ 156.417847, 51.699800 ], [ 155.989380, 53.159947 ], [ 155.434570, 55.382231 ], [ 155.566406, 55.776573 ], [ 155.654297, 56.022948 ], [ 157.939453, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.366577, 41.376809 ], [ 141.525879, 40.979898 ], [ 141.657715, 40.647304 ], [ 139.938354, 40.647304 ], [ 140.163574, 40.979898 ], [ 140.306396, 41.195190 ], [ 141.366577, 41.376809 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.321655, 44.386692 ], [ 145.541382, 43.261206 ], [ 144.058228, 42.988576 ], [ 143.184814, 41.996243 ], [ 141.613770, 42.678397 ], [ 141.069946, 41.582580 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.333169 ], [ 141.383057, 43.389082 ], [ 141.674194, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.027466, 48.476563 ], [ 135.000000, 48.432845 ], [ 134.560547, 47.680183 ], [ 134.560547, 48.396385 ], [ 135.000000, 48.472921 ], [ 135.027466, 48.476563 ] ] ] } } ] } ] } , @@ -2285,6 +2283,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "New Caledonia", "adm0_a3": "NCL", "geou_dif": 0, "geounit": "New Caledonia", "gu_a3": "NCL", "su_dif": 0, "subunit": "New Caledonia", "su_a3": "NCL", "brk_diff": 0, "name": "New Caledonia", "name_long": "New Caledonia", "brk_a3": "NCL", "brk_name": "New Caledonia", "abbrev": "New C.", "postal": "NC", "formal_en": "New Caledonia", "formal_fr": "Nouvelle-Calédonie", "note_adm0": "Fr.", "name_sort": "New Caledonia", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 227436, "gdp_md_est": 3158, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "NC", "iso_a3": "NCL", "iso_n3": "540", "un_a3": "540", "wb_a2": "NC", "wb_a3": "NCL", "woe_id": -99, "adm0_a3_is": "NCL", "adm0_a3_us": "NCL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.382446, -21.534847 ], [ 166.602173, -21.698265 ], [ 166.876831, -21.943046 ], [ 167.118530, -22.161971 ], [ 166.739502, -22.400872 ], [ 166.190186, -22.131443 ], [ 165.893555, -21.943046 ], [ 165.476074, -21.677848 ], [ 165.300293, -21.534847 ], [ 166.382446, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.798462, -40.492915 ], [ 173.051147, -40.979898 ], [ 173.237915, -41.310824 ], [ 172.001953, -41.310824 ], [ 172.089844, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ] ] ], [ [ [ 173.007202, -34.452218 ], [ 173.551025, -35.007503 ], [ 174.331055, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.358276, -36.527295 ], [ 175.808716, -36.800488 ], [ 175.957031, -37.553288 ], [ 176.764526, -37.879189 ], [ 177.440186, -37.961523 ], [ 178.011475, -37.579413 ], [ 178.516846, -37.696861 ], [ 178.275146, -38.582526 ], [ 177.973022, -39.168400 ], [ 177.209473, -39.147103 ], [ 176.940308, -39.448919 ], [ 177.033691, -39.880235 ], [ 176.885376, -40.065461 ], [ 176.237183, -40.979898 ], [ 176.011963, -41.290190 ], [ 175.973511, -41.310824 ], [ 174.737549, -41.310824 ], [ 174.649658, -41.281935 ], [ 174.863892, -40.979898 ], [ 175.226440, -40.459487 ], [ 174.902344, -39.909736 ], [ 173.825684, -39.508279 ], [ 173.853149, -39.147103 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.699097, -37.383253 ], [ 174.292603, -36.712467 ], [ 174.320068, -36.536123 ], [ 173.842163, -36.120128 ], [ 173.056641, -35.236646 ], [ 172.633667, -34.529187 ], [ 173.007202, -34.452218 ] ] ], [ [ [ 173.281860, -41.310824 ], [ 173.864136, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.995972, -40.979898 ], [ 174.221191, -41.310824 ], [ 173.281860, -41.310824 ] ] ] ] } } ] } ] } , @@ -2292,7 +2292,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.317749, -10.206813 ], [ 161.916504, -10.444598 ], [ 162.119751, -10.482410 ], [ 162.399902, -10.827911 ], [ 161.702271, -10.822515 ], [ 161.317749, -10.206813 ] ] ], [ [ [ 159.702759, -9.243093 ], [ 160.361938, -9.400291 ], [ 160.686035, -9.611582 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.851074, -9.795678 ], [ 159.642334, -9.638661 ], [ 159.702759, -9.243093 ] ] ], [ [ [ 160.922241, -8.320212 ], [ 161.279297, -9.118368 ], [ 161.680298, -9.600750 ], [ 161.531982, -9.784851 ], [ 160.790405, -8.917634 ], [ 160.581665, -8.320212 ], [ 160.922241, -8.320212 ] ] ], [ [ [ 158.362427, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.642334, -8.021155 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.587646, -7.754537 ], [ 158.208618, -7.422389 ], [ 158.362427, -7.318882 ] ] ], [ [ [ 157.060547, -6.964597 ], [ 157.137451, -7.019120 ], [ 157.500000, -7.318882 ], [ 157.538452, -7.346123 ], [ 157.500000, -7.357019 ], [ 157.340698, -7.406048 ], [ 157.060547, -7.258945 ], [ 157.060547, -6.964597 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "New Caledonia", "adm0_a3": "NCL", "geou_dif": 0, "geounit": "New Caledonia", "gu_a3": "NCL", "su_dif": 0, "subunit": "New Caledonia", "su_a3": "NCL", "brk_diff": 0, "name": "New Caledonia", "name_long": "New Caledonia", "brk_a3": "NCL", "brk_name": "New Caledonia", "abbrev": "New C.", "postal": "NC", "formal_en": "New Caledonia", "formal_fr": "Nouvelle-Calédonie", "note_adm0": "Fr.", "name_sort": "New Caledonia", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 227436, "gdp_md_est": 3158, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "NC", "iso_a3": "NCL", "iso_n3": "540", "un_a3": "540", "wb_a2": "NC", "wb_a3": "NCL", "woe_id": -99, "adm0_a3_is": "NCL", "adm0_a3_us": "NCL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.031372, -20.107523 ], [ 164.459839, -20.117840 ], [ 165.020142, -20.457896 ], [ 165.459595, -20.802337 ], [ 165.778198, -21.079375 ], [ 166.602173, -21.698265 ], [ 166.876831, -21.943046 ], [ 167.118530, -22.161971 ], [ 166.816406, -22.350076 ], [ 166.640625, -22.350076 ], [ 166.190186, -22.131443 ], [ 165.893555, -21.943046 ], [ 165.476074, -21.677848 ], [ 164.827881, -21.151115 ], [ 164.168701, -20.442455 ], [ 164.031372, -20.107523 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.374023, -17.340152 ], [ 178.720093, -17.628317 ], [ 178.555298, -18.151072 ], [ 177.934570, -18.286734 ], [ 177.379761, -18.166730 ], [ 177.286377, -17.722526 ], [ 177.670898, -17.382095 ], [ 178.126831, -17.502628 ], [ 178.374023, -17.340152 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.208740, -16.019416 ], [ 180.082397, -16.499299 ], [ 180.000000, -16.557227 ], [ 179.362793, -16.799282 ], [ 178.725586, -17.009515 ], [ 178.599243, -16.641455 ], [ 179.099121, -16.436085 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ] ] ] ] } } ] } ] } , diff --git a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json index 47ea11b3e..097aa9a10 100644 --- a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json.check.mbtiles", -"strategies": "[{\"dropped_as_needed\":479,\"tile_size_desired\":39241},{\"dropped_as_needed\":264,\"tiny_polygons\":2,\"tile_size_desired\":25163},{\"dropped_as_needed\":221,\"tiny_polygons\":2,\"tile_size_desired\":21214},{\"dropped_as_needed\":93,\"tile_size_desired\":10758},{\"dropped_as_needed\":9,\"tile_size_desired\":6601},{\"tiny_polygons\":2}]", +"strategies": "[{\"dropped_as_needed\":324,\"tile_size_desired\":39241},{\"dropped_as_needed\":160,\"tiny_polygons\":2,\"tile_size_desired\":25163},{\"dropped_as_needed\":124,\"tiny_polygons\":2,\"tile_size_desired\":21214},{\"dropped_as_needed\":80,\"tile_size_desired\":10758},{\"dropped_as_needed\":12,\"tile_size_desired\":6601},{\"tiny_polygons\":2}]", "tippecanoe_decisions": "{\"basezoom\":0,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" @@ -18,29 +18,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.830078, 20.303418 ], [ -155.214844, 19.973349 ], [ -154.775391, 19.476950 ], [ -155.654297, 18.895893 ], [ -155.917969, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.830078, 19.973349 ], [ -155.830078, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.005859, 20.797201 ], [ -156.445312, 20.550509 ], [ -156.708984, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -156.796875, 21.043491 ], [ -157.324219, 21.125498 ], [ -157.236328, 21.207459 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -158.027344, 21.698265 ], [ -157.675781, 21.289374 ], [ -158.115234, 21.289374 ], [ -158.291016, 21.616579 ], [ -158.027344, 21.698265 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.345703, 22.187405 ], [ -159.345703, 21.943046 ], [ -159.433594, 21.861499 ], [ -159.785156, 22.105999 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -94.833984, 49.382373 ], [ -94.658203, 48.864715 ], [ -94.306641, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.791016, 48.283193 ], [ -89.560547, 47.989922 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.283193 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.619261 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.437857 ], [ -84.375000, 46.437857 ], [ -84.111328, 46.498392 ], [ -84.111328, 46.255847 ], [ -83.847656, 46.134170 ], [ -83.583984, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.583984, 45.828799 ], [ -82.529297, 45.336702 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.244141, 42.358544 ], [ -78.925781, 42.875964 ], [ -79.189453, 43.452919 ], [ -78.750000, 43.644026 ], [ -76.816406, 43.644026 ], [ -76.464844, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.367188, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.890008 ], [ -69.960938, 46.679594 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.159840 ], [ -68.203125, 47.338823 ], [ -67.763672, 47.040182 ], [ -67.763672, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.027344, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.488281, 41.836828 ], [ -70.048828, 41.771312 ], [ -70.224609, 42.163403 ], [ -69.873047, 41.902277 ], [ -69.960938, 41.640078 ], [ -72.861328, 41.244772 ], [ -73.740234, 40.913513 ], [ -72.246094, 41.112469 ], [ -71.982422, 40.913513 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.916016, 40.780541 ], [ -74.267578, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.707187 ], [ -74.882812, 38.959409 ], [ -74.970703, 39.164141 ], [ -75.498047, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.754083 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.025391, 37.230328 ], [ -75.761719, 37.926868 ], [ -76.201172, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.685510 ], [ -76.289062, 38.065392 ], [ -76.992188, 38.272689 ], [ -76.289062, 37.926868 ], [ -76.289062, 36.949892 ], [ -75.937500, 36.879621 ], [ -75.761719, 35.532226 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.046875, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.189453, 33.137551 ], [ -80.332031, 32.472695 ], [ -81.298828, 31.428663 ], [ -81.474609, 30.751278 ], [ -81.298828, 30.069094 ], [ -80.507812, 28.459033 ], [ -80.507812, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.799891 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.165173 ], [ -81.298828, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.880859, 27.916767 ], [ -82.617188, 28.536275 ], [ -82.968750, 29.075375 ], [ -83.671875, 29.916852 ], [ -84.111328, 30.069094 ], [ -85.078125, 29.611670 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.372875 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.372875 ], [ -89.560547, 30.145127 ], [ -89.384766, 29.916852 ], [ -89.472656, 29.458731 ], [ -89.208984, 29.305561 ], [ -89.384766, 29.152161 ], [ -89.736328, 29.305561 ], [ -90.175781, 29.152161 ], [ -90.878906, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.460938, 29.535230 ], [ -93.251953, 29.764377 ], [ -94.658203, 29.458731 ], [ -95.625000, 28.767659 ], [ -96.591797, 28.304381 ], [ -97.119141, 27.839076 ], [ -97.382812, 27.371767 ], [ -97.382812, 26.667096 ], [ -97.119141, 25.878994 ], [ -97.558594, 25.878994 ], [ -99.052734, 26.352498 ], [ -99.492188, 27.527758 ], [ -100.107422, 28.071980 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.764377 ], [ -102.480469, 29.764377 ], [ -103.095703, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.414062, 29.535230 ], [ -105.029297, 30.675715 ], [ -106.523438, 31.728167 ], [ -108.281250, 31.728167 ], [ -108.281250, 31.353637 ], [ -111.005859, 31.353637 ], [ -114.785156, 32.546813 ], [ -114.697266, 32.694866 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.388672, 33.724340 ], [ -118.476562, 34.016242 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.585938, 34.597042 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.519531, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.837891, 39.774769 ], [ -124.365234, 40.313043 ], [ -124.189453, 41.112469 ], [ -124.189453, 41.967659 ], [ -124.541016, 42.747012 ], [ -124.101562, 43.707594 ], [ -123.925781, 45.521744 ], [ -124.101562, 46.860191 ], [ -124.716797, 48.166085 ], [ -124.541016, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.338823 ], [ -122.871094, 48.980217 ], [ -95.185547, 48.980217 ], [ -95.185547, 49.382373 ], [ -94.833984, 49.382373 ] ] ], [ [ [ -156.621094, 71.357067 ], [ -155.039062, 71.159391 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.902268 ], [ -152.226562, 70.815812 ], [ -152.226562, 70.612614 ], [ -150.732422, 70.436799 ], [ -149.677734, 70.524897 ], [ -147.656250, 70.199994 ], [ -145.722656, 70.110485 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.140364 ], [ -142.031250, 69.839622 ], [ -140.976562, 69.718107 ], [ -140.976562, 60.326948 ], [ -140.009766, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.904646 ], [ -136.494141, 59.445075 ], [ -135.439453, 59.800634 ], [ -134.912109, 59.265881 ], [ -133.330078, 58.401712 ], [ -131.748047, 56.559482 ], [ -129.990234, 55.924586 ], [ -129.990234, 55.279115 ], [ -130.517578, 54.826008 ], [ -131.044922, 55.178868 ], [ -131.923828, 55.478853 ], [ -132.275391, 56.365250 ], [ -133.505859, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.493694 ], [ -139.833984, 59.534318 ], [ -142.558594, 60.064840 ], [ -143.964844, 60.020952 ], [ -145.898438, 60.457218 ], [ -147.128906, 60.887700 ], [ -148.183594, 60.673179 ], [ -148.007812, 59.977005 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.355596 ], [ -151.699219, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.716198 ], [ -150.380859, 61.015725 ], [ -150.644531, 61.270233 ], [ -151.875000, 60.716198 ], [ -152.578125, 60.064840 ], [ -153.984375, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.124320 ], [ -156.269531, 57.421294 ], [ -156.533203, 56.992883 ], [ -158.115234, 56.462490 ], [ -158.466797, 55.973798 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.627996 ], [ -163.037109, 54.673831 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.572062 ], [ -162.861328, 55.329144 ], [ -161.806641, 55.875311 ], [ -160.576172, 56.022948 ], [ -160.048828, 56.413901 ], [ -158.642578, 56.992883 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.562995 ], [ -157.587891, 58.309489 ], [ -157.060547, 58.904646 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.768200 ], [ -159.082031, 58.401712 ], [ -159.697266, 58.950008 ], [ -159.960938, 58.585436 ], [ -160.312500, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.265881 ], [ -161.894531, 59.623325 ], [ -162.509766, 59.977005 ], [ -163.828125, 59.800634 ], [ -164.619141, 60.283408 ], [ -165.322266, 60.500525 ], [ -165.322266, 61.058285 ], [ -166.113281, 61.480760 ], [ -165.761719, 62.062733 ], [ -164.882812, 62.633770 ], [ -164.531250, 63.154355 ], [ -163.740234, 63.233627 ], [ -163.037109, 63.074866 ], [ -162.246094, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.751953, 63.782486 ], [ -160.927734, 64.206377 ], [ -161.542969, 64.396938 ], [ -160.751953, 64.774125 ], [ -161.367188, 64.774125 ], [ -162.421875, 64.548440 ], [ -162.773438, 64.320872 ], [ -163.564453, 64.548440 ], [ -164.970703, 64.434892 ], [ -166.464844, 64.699105 ], [ -166.816406, 65.072130 ], [ -168.134766, 65.658275 ], [ -166.728516, 66.089364 ], [ -164.443359, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.722541 ], [ -163.740234, 67.101656 ], [ -164.443359, 67.609221 ], [ -165.410156, 68.040461 ], [ -166.728516, 68.366801 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -163.125000, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.894531, 70.318738 ], [ -160.927734, 70.436799 ], [ -159.082031, 70.902268 ], [ -158.115234, 70.815812 ], [ -156.621094, 71.357067 ] ] ], [ [ [ -153.193359, 57.984808 ], [ -152.578125, 57.891497 ], [ -152.138672, 57.610107 ], [ -153.017578, 57.136239 ], [ -153.984375, 56.752723 ], [ -154.511719, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.193359, 57.984808 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.430860 ], [ -168.662109, 63.312683 ], [ -168.750000, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.312683 ], [ -171.826172, 63.391522 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.370429 ], [ -165.673828, 60.283408 ], [ -165.585938, 59.888937 ], [ -166.201172, 59.756395 ], [ -167.431641, 60.196156 ], [ -166.464844, 60.370429 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.293564 ], [ -7.998047, 41.771312 ], [ -7.382812, 41.771312 ], [ -7.294922, 41.902277 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.376809 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.313043 ], [ -7.031250, 40.178873 ], [ -7.031250, 39.707187 ], [ -7.470703, 39.639538 ], [ -7.119141, 39.027719 ], [ -7.382812, 38.341656 ], [ -7.031250, 38.065392 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.090240 ], [ -7.822266, 36.809285 ], [ -8.349609, 36.949892 ], [ -8.876953, 36.879621 ], [ -8.789062, 37.649034 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.341656 ], [ -9.492188, 38.754083 ], [ -9.404297, 39.368279 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -9.052734, 41.902277 ], [ -8.261719, 42.293564 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.683528 ], [ -8.701172, 25.878994 ], [ -11.953125, 25.958045 ], [ -11.953125, 23.402765 ], [ -12.832031, 23.322080 ], [ -13.095703, 22.755921 ], [ -12.919922, 21.289374 ], [ -16.875000, 21.371244 ], [ -17.050781, 20.961440 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.589844, 21.861499 ], [ -14.238281, 22.350076 ], [ -13.886719, 23.725012 ], [ -12.480469, 24.766785 ], [ -12.041016, 26.037042 ], [ -11.689453, 26.115986 ], [ -11.425781, 26.902477 ], [ -10.546875, 26.980829 ], [ -9.755859, 26.824071 ], [ -9.404297, 27.059126 ], [ -8.789062, 27.137368 ], [ -8.789062, 27.683528 ], [ -8.701172, 27.683528 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.837891, 1.406109 ], [ -77.871094, 0.790990 ], [ -77.695312, 0.790990 ], [ -77.431641, 0.439449 ], [ -76.552734, 0.263671 ], [ -76.289062, 0.439449 ], [ -75.410156, -0.175781 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.581830 ], [ -76.640625, -2.635789 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.565474 ], [ -79.189453, -4.915833 ], [ -79.628906, -4.477856 ], [ -80.068359, -4.302591 ], [ -80.419922, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.156250, -3.864255 ], [ -80.332031, -3.425692 ], [ -79.804688, -2.635789 ], [ -79.980469, -2.196727 ], [ -80.332031, -2.723583 ], [ -80.947266, -2.284551 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -79.980469, 0.351560 ], [ -80.068359, 0.790990 ], [ -78.837891, 1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.554564 ], [ -13.798828, 12.125264 ], [ -13.710938, 11.781325 ], [ -14.414062, 11.523088 ], [ -14.677734, 11.523088 ], [ -15.117188, 11.005904 ], [ -15.644531, 11.436955 ], [ -16.083984, 11.523088 ], [ -16.699219, 12.382928 ], [ -15.556641, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.977614 ], [ 9.931641, 54.572062 ], [ 10.986328, 54.367759 ], [ 10.898438, 54.007769 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.470038 ], [ 13.623047, 54.059388 ], [ 14.150391, 53.748711 ], [ 14.326172, 53.225768 ], [ 14.062500, 52.961875 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.727028 ], [ 15.029297, 51.124213 ], [ 14.589844, 51.013755 ], [ 14.326172, 51.124213 ], [ 14.062500, 50.903033 ], [ 13.359375, 50.736455 ], [ 13.007812, 50.457504 ], [ 12.216797, 50.289339 ], [ 12.480469, 49.553726 ], [ 13.623047, 48.864715 ], [ 13.271484, 48.400032 ], [ 12.919922, 48.283193 ], [ 13.007812, 47.635784 ], [ 12.919922, 47.457809 ], [ 12.656250, 47.694974 ], [ 12.128906, 47.694974 ], [ 11.425781, 47.517201 ], [ 10.546875, 47.576526 ], [ 10.371094, 47.279229 ], [ 9.931641, 47.576526 ], [ 9.580078, 47.517201 ], [ 8.525391, 47.813155 ], [ 8.349609, 47.635784 ], [ 7.470703, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.679688, 49.210420 ], [ 6.152344, 49.439557 ], [ 6.240234, 49.894634 ], [ 6.064453, 50.120578 ], [ 6.152344, 50.792047 ], [ 5.976562, 51.835778 ], [ 6.591797, 51.835778 ], [ 6.855469, 52.214339 ], [ 7.119141, 53.120405 ], [ 6.943359, 53.488046 ], [ 7.119141, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.007769 ], [ 8.613281, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.316406, 54.826008 ], [ 9.931641, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ], [ -51.855469, 4.565474 ], [ -51.679688, 4.127285 ], [ -52.558594, 2.547988 ], [ -52.910156, 2.108899 ], [ -53.437500, 2.021065 ], [ -53.525391, 2.372369 ], [ -53.789062, 2.372369 ], [ -54.052734, 2.108899 ], [ -54.492188, 2.284551 ], [ -54.052734, 3.601142 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ] ] ], [ [ [ 2.548828, 51.124213 ], [ 2.636719, 50.792047 ], [ 3.164062, 50.792047 ], [ 4.306641, 49.894634 ], [ 4.833984, 50.007739 ], [ 5.712891, 49.553726 ], [ 6.152344, 49.439557 ], [ 6.679688, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.470703, 47.635784 ], [ 7.207031, 47.457809 ], [ 6.767578, 47.517201 ], [ 6.767578, 47.279229 ], [ 6.064453, 46.739861 ], [ 6.064453, 46.255847 ], [ 6.503906, 46.437857 ], [ 6.855469, 46.012224 ], [ 6.767578, 45.706179 ], [ 7.119141, 45.336702 ], [ 6.767578, 45.026950 ], [ 7.031250, 44.276671 ], [ 7.558594, 44.150681 ], [ 7.470703, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.570312, 43.389082 ], [ 3.076172, 43.068888 ], [ 2.988281, 42.488302 ], [ 1.845703, 42.358544 ], [ 0.703125, 42.811522 ], [ 0.351562, 42.553080 ], [ -1.494141, 43.004647 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.012224 ], [ -2.197266, 47.040182 ], [ -2.988281, 47.576526 ], [ -4.482422, 47.931066 ], [ -4.570312, 48.690960 ], [ -3.251953, 48.922499 ], [ -1.582031, 48.632909 ], [ -1.933594, 49.781264 ], [ -0.966797, 49.325122 ], [ 1.318359, 50.120578 ], [ 1.669922, 50.958427 ], [ 2.548828, 51.124213 ] ] ], [ [ [ 9.404297, 43.004647 ], [ 9.580078, 42.163403 ], [ 9.228516, 41.376809 ], [ 8.789062, 41.574361 ], [ 8.525391, 42.228517 ], [ 8.789062, 42.617791 ], [ 9.404297, 43.004647 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.248047, 43.516689 ], [ 19.599609, 43.197167 ], [ 20.302734, 42.875964 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.488302 ], [ 19.775391, 42.682435 ], [ 19.335938, 42.163403 ], [ 19.335938, 41.902277 ], [ 18.457031, 42.488302 ], [ 18.720703, 43.197167 ], [ 19.248047, 43.516689 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.498392 ], [ 17.666016, 45.951150 ], [ 18.457031, 45.767523 ], [ 18.808594, 45.890008 ], [ 19.423828, 45.213004 ], [ 18.984375, 44.840291 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.213004 ], [ 16.523438, 45.213004 ], [ 16.347656, 45.026950 ], [ 15.996094, 45.213004 ], [ 15.732422, 44.840291 ], [ 16.435547, 44.024422 ], [ 17.314453, 43.452919 ], [ 17.666016, 43.004647 ], [ 18.544922, 42.617791 ], [ 18.457031, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.962891, 43.197167 ], [ 15.996094, 43.516689 ], [ 15.205078, 44.213710 ], [ 15.380859, 44.339565 ], [ 14.941406, 44.715514 ], [ 14.941406, 45.089036 ], [ 14.238281, 45.213004 ], [ 13.974609, 44.777936 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.460131 ], [ 14.414062, 45.460131 ], [ 14.589844, 45.644768 ], [ 14.941406, 45.460131 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.706179 ], [ 15.644531, 45.828799 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.498392 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.630859, 48.224673 ], [ 26.894531, 48.107431 ], [ 28.125000, 46.800059 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.460131 ], [ 28.652344, 45.274886 ], [ 29.179688, 45.460131 ], [ 29.619141, 45.274886 ], [ 29.619141, 45.026950 ], [ 29.179688, 44.840291 ], [ 28.828125, 44.902578 ], [ 28.564453, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.246094, 44.150681 ], [ 26.103516, 43.961191 ], [ 25.576172, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.500000, 44.402392 ], [ 22.675781, 44.590467 ], [ 22.500000, 44.715514 ], [ 22.148438, 44.465151 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.151053 ], [ 20.917969, 45.398450 ], [ 20.742188, 45.706179 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 22.060547, 47.694974 ], [ 23.115234, 48.107431 ], [ 24.433594, 47.989922 ], [ 24.873047, 47.754098 ], [ 25.224609, 47.872144 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.630859, 48.224673 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.706179 ], [ 20.917969, 45.398450 ], [ 21.445312, 45.151053 ], [ 21.533203, 44.777936 ], [ 22.148438, 44.465151 ], [ 22.500000, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.500000, 44.402392 ], [ 22.675781, 44.213710 ], [ 22.412109, 44.024422 ], [ 22.500000, 43.644026 ], [ 23.027344, 43.197167 ], [ 22.587891, 42.875964 ], [ 22.412109, 42.553080 ], [ 22.587891, 42.488302 ], [ 22.412109, 42.293564 ], [ 21.533203, 42.228517 ], [ 21.796875, 42.682435 ], [ 21.621094, 42.682435 ], [ 20.830078, 43.261206 ], [ 20.654297, 43.197167 ], [ 20.478516, 42.875964 ], [ 20.214844, 42.811522 ], [ 20.302734, 42.875964 ], [ 19.599609, 43.197167 ], [ 19.248047, 43.516689 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.024422 ], [ 19.160156, 44.402392 ], [ 19.335938, 44.840291 ], [ 18.984375, 44.840291 ], [ 19.423828, 45.213004 ], [ 18.808594, 45.890008 ], [ 19.599609, 46.195042 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.054628 ], [ 9.492188, 0.966751 ], [ 9.316406, 1.142502 ], [ 9.667969, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.580391 ], [ 42.363281, 43.197167 ], [ 43.769531, 42.747012 ], [ 43.945312, 42.553080 ], [ 44.560547, 42.682435 ], [ 45.439453, 42.488302 ], [ 45.791016, 42.098222 ], [ 46.406250, 41.836828 ], [ 46.142578, 41.705729 ], [ 46.669922, 41.178654 ], [ 46.494141, 41.046217 ], [ 45.966797, 41.112469 ], [ 45.175781, 41.442726 ], [ 45.000000, 41.244772 ], [ 43.593750, 41.112469 ], [ 42.626953, 41.574361 ], [ 41.572266, 41.508577 ], [ 41.660156, 41.967659 ], [ 41.484375, 42.617791 ], [ 40.869141, 43.004647 ], [ 40.341797, 43.133061 ], [ 39.990234, 43.452919 ], [ 40.078125, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 23.402765 ], [ 23.818359, 19.559790 ], [ 23.906250, 15.623037 ], [ 23.027344, 15.707663 ], [ 22.324219, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.752725 ], [ 22.324219, 13.410994 ], [ 21.972656, 12.554564 ], [ 22.324219, 12.640338 ], [ 22.500000, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.350797 ], [ 22.851562, 11.178402 ], [ 22.236328, 11.005904 ], [ 21.708984, 10.574222 ], [ 21.005859, 9.449062 ], [ 20.039062, 9.015302 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.885147 ], [ 16.699219, 7.536764 ], [ 16.259766, 7.710992 ], [ 16.083984, 7.536764 ], [ 15.292969, 7.449624 ], [ 15.468750, 7.710992 ], [ 14.941406, 8.754795 ], [ 14.501953, 8.928487 ], [ 13.974609, 9.535749 ], [ 14.150391, 10.055403 ], [ 14.589844, 9.882275 ], [ 15.468750, 9.968851 ], [ 14.941406, 10.919618 ], [ 14.853516, 12.211180 ], [ 14.501953, 12.897489 ], [ 14.589844, 13.325485 ], [ 13.974609, 13.325485 ], [ 13.974609, 14.008696 ], [ 13.535156, 14.349548 ], [ 13.974609, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.895114 ], [ 15.644531, 19.973349 ], [ 15.908203, 20.385825 ], [ 15.468750, 20.715015 ], [ 15.468750, 21.043491 ], [ 15.117188, 21.289374 ], [ 14.853516, 22.836946 ], [ 15.820312, 23.402765 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.328125, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.591797, 25.244696 ], [ 51.416016, 24.607069 ], [ 51.152344, 24.527135 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 50.976562, 26.037042 ], [ 51.328125, 26.115986 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.501953, 12.897489 ], [ 14.853516, 12.211180 ], [ 14.941406, 10.919618 ], [ 15.468750, 9.968851 ], [ 14.589844, 9.882275 ], [ 14.150391, 10.055403 ], [ 13.974609, 9.535749 ], [ 14.501953, 8.928487 ], [ 14.941406, 8.754795 ], [ 15.468750, 7.710992 ], [ 14.765625, 6.402648 ], [ 14.501953, 6.227934 ], [ 14.501953, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 2.986927 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.196727 ], [ 9.667969, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.964844, 3.864255 ], [ 8.701172, 4.390229 ], [ 8.525391, 4.477856 ], [ 8.789062, 5.441022 ], [ 9.228516, 6.402648 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.013668 ], [ 10.458984, 7.013668 ], [ 11.074219, 6.664608 ], [ 11.777344, 7.013668 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.589844, 12.125264 ], [ 14.150391, 12.468760 ], [ 14.238281, 12.811801 ], [ 14.501953, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.871094, 35.460670 ], [ 78.925781, 34.307144 ], [ 78.837891, 33.504759 ], [ 79.189453, 32.990236 ], [ 79.189453, 32.472695 ], [ 78.486328, 32.620870 ], [ 78.750000, 31.503629 ], [ 81.123047, 30.221102 ], [ 80.507812, 29.764377 ], [ 80.068359, 28.767659 ], [ 83.320312, 27.371767 ], [ 84.638672, 27.215556 ], [ 85.253906, 26.745610 ], [ 87.187500, 26.431228 ], [ 88.066406, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.066406, 27.449790 ], [ 88.154297, 27.839076 ], [ 88.769531, 28.071980 ], [ 88.857422, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 92.021484, 26.824071 ], [ 92.109375, 27.449790 ], [ 91.669922, 27.761330 ], [ 92.460938, 27.916767 ], [ 93.427734, 28.613459 ], [ 94.570312, 29.305561 ], [ 95.361328, 28.998532 ], [ 96.152344, 29.458731 ], [ 96.591797, 28.844674 ], [ 96.240234, 28.381735 ], [ 97.294922, 28.226970 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.683528 ], [ 97.119141, 27.059126 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.185547, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.570312, 24.686952 ], [ 94.130859, 23.885838 ], [ 93.339844, 24.046464 ], [ 93.251953, 23.079732 ], [ 93.076172, 22.674847 ], [ 93.164062, 22.268764 ], [ 92.636719, 22.024546 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.483401 ], [ 91.494141, 24.046464 ], [ 91.933594, 24.126702 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 89.912109, 25.244696 ], [ 89.824219, 25.958045 ], [ 89.384766, 26.037042 ], [ 88.593750, 26.431228 ], [ 88.242188, 25.799891 ], [ 88.945312, 25.244696 ], [ 88.330078, 24.846565 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.206890 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 89.033203, 22.024546 ], [ 88.857422, 21.698265 ], [ 87.011719, 21.534847 ], [ 87.011719, 20.715015 ], [ 86.484375, 20.138470 ], [ 85.078125, 19.476950 ], [ 83.935547, 18.312811 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.551962 ], [ 80.771484, 15.961329 ], [ 80.332031, 15.876809 ], [ 80.068359, 15.114553 ], [ 80.244141, 12.983148 ], [ 79.892578, 12.039321 ], [ 79.892578, 10.314919 ], [ 79.365234, 10.314919 ], [ 78.925781, 9.535749 ], [ 79.189453, 9.188870 ], [ 78.310547, 8.928487 ], [ 77.958984, 8.233237 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.761719, 11.350797 ], [ 74.882812, 12.726084 ], [ 74.443359, 14.604847 ], [ 73.564453, 15.961329 ], [ 72.861328, 19.228177 ], [ 72.861328, 20.385825 ], [ 72.597656, 21.371244 ], [ 71.191406, 20.797201 ], [ 70.488281, 20.879343 ], [ 69.169922, 22.105999 ], [ 69.609375, 22.431340 ], [ 69.345703, 22.836946 ], [ 68.203125, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.312500, 25.720735 ], [ 70.136719, 26.509905 ], [ 69.521484, 26.902477 ], [ 70.576172, 27.994401 ], [ 71.806641, 27.916767 ], [ 72.861328, 28.998532 ], [ 73.476562, 29.993002 ], [ 74.443359, 30.977609 ], [ 74.443359, 31.728167 ], [ 75.234375, 32.249974 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.307144 ], [ 74.267578, 34.741612 ], [ 75.761719, 34.524661 ], [ 76.904297, 34.669359 ], [ 77.871094, 35.460670 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 23.402765 ], [ 23.818359, 19.559790 ], [ 23.906250, 15.623037 ], [ 23.027344, 15.707663 ], [ 22.324219, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.752725 ], [ 22.324219, 13.410994 ], [ 21.972656, 12.554564 ], [ 22.324219, 12.640338 ], [ 22.500000, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.350797 ], [ 22.851562, 11.178402 ], [ 22.236328, 11.005904 ], [ 21.708984, 10.574222 ], [ 21.005859, 9.449062 ], [ 20.039062, 9.015302 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.885147 ], [ 16.699219, 7.536764 ], [ 16.259766, 7.710992 ], [ 16.083984, 7.536764 ], [ 15.292969, 7.449624 ], [ 15.468750, 7.710992 ], [ 14.941406, 8.754795 ], [ 14.501953, 8.928487 ], [ 13.974609, 9.535749 ], [ 14.150391, 10.055403 ], [ 14.589844, 9.882275 ], [ 15.468750, 9.968851 ], [ 14.941406, 10.919618 ], [ 14.853516, 12.211180 ], [ 14.501953, 12.897489 ], [ 14.589844, 13.325485 ], [ 13.974609, 13.325485 ], [ 13.974609, 14.008696 ], [ 13.535156, 14.349548 ], [ 13.974609, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.895114 ], [ 15.644531, 19.973349 ], [ 15.908203, 20.385825 ], [ 15.468750, 20.715015 ], [ 15.468750, 21.043491 ], [ 15.117188, 21.289374 ], [ 14.853516, 22.836946 ], [ 15.820312, 23.402765 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.488281, 5.441022 ], [ 115.312500, 4.302591 ], [ 114.873047, 4.390229 ], [ 114.697266, 4.039618 ], [ 114.169922, 4.565474 ], [ 115.488281, 5.441022 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.175612 ], [ 40.429688, 31.877558 ], [ 41.923828, 31.203405 ], [ 44.736328, 29.152161 ], [ 47.460938, 28.998532 ], [ 47.724609, 28.536275 ], [ 48.427734, 28.536275 ], [ 48.779297, 27.683528 ], [ 49.306641, 27.449790 ], [ 49.482422, 27.137368 ], [ 50.185547, 26.667096 ], [ 50.097656, 25.958045 ], [ 50.273438, 25.641526 ], [ 50.800781, 24.766785 ], [ 51.152344, 24.527135 ], [ 51.416016, 24.607069 ], [ 52.031250, 22.998852 ], [ 55.019531, 22.512557 ], [ 55.195312, 22.674847 ], [ 55.634766, 22.024546 ], [ 55.019531, 19.973349 ], [ 52.031250, 18.979026 ], [ 49.130859, 18.646245 ], [ 48.164062, 18.145852 ], [ 47.460938, 17.140790 ], [ 47.021484, 16.972741 ], [ 46.757812, 17.308688 ], [ 46.406250, 17.224758 ], [ 45.175781, 17.392579 ], [ 43.769531, 17.308688 ], [ 43.417969, 17.560247 ], [ 43.154297, 17.056785 ], [ 43.242188, 16.636192 ], [ 42.802734, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.363281, 17.056785 ], [ 42.275391, 17.476432 ], [ 41.748047, 17.811456 ], [ 41.220703, 18.646245 ], [ 40.957031, 19.476950 ], [ 40.253906, 20.138470 ], [ 39.814453, 20.303418 ], [ 39.111328, 21.289374 ], [ 39.023438, 22.593726 ], [ 38.496094, 23.725012 ], [ 38.056641, 24.046464 ], [ 37.441406, 24.287027 ], [ 36.914062, 25.641526 ], [ 36.650391, 25.799891 ], [ 36.210938, 26.588527 ], [ 35.156250, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.980469, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.840644 ], [ 37.529297, 29.993002 ], [ 37.705078, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.503629 ], [ 39.023438, 32.026706 ], [ 39.199219, 32.175612 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.538376 ], [ 30.322266, -15.876809 ], [ 31.201172, -15.876809 ], [ 31.816406, -16.299051 ], [ 32.343750, -16.383391 ], [ 32.871094, -16.720385 ], [ 32.871094, -17.978733 ], [ 32.607422, -19.394068 ], [ 32.783203, -19.725342 ], [ 32.695312, -20.303418 ], [ 32.519531, -20.385825 ], [ 32.255859, -21.125498 ], [ 31.201172, -22.268764 ], [ 30.673828, -22.187405 ], [ 30.322266, -22.268764 ], [ 29.443359, -22.105999 ], [ 28.828125, -21.616579 ], [ 28.037109, -21.453069 ], [ 27.685547, -20.879343 ], [ 27.685547, -20.468189 ], [ 27.333984, -20.385825 ], [ 26.191406, -19.311143 ], [ 25.224609, -17.727759 ], [ 27.070312, -17.978733 ], [ 28.476562, -16.467695 ], [ 28.828125, -16.383391 ], [ 28.916016, -16.045813 ], [ 29.531250, -15.623037 ], [ 30.234375, -15.538376 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.332031, 5.528511 ], [ 35.859375, 5.353521 ], [ 35.859375, 4.740675 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.144531, 3.601142 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.781250, 4.214943 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.108899 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.814453, -3.688855 ], [ 39.638672, -4.390229 ], [ 39.199219, -4.653080 ], [ 37.792969, -3.688855 ], [ 37.705078, -3.074695 ], [ 33.925781, -0.966751 ], [ 33.925781, 0.087891 ], [ 35.068359, 1.933227 ], [ 34.453125, 3.513421 ], [ 34.013672, 4.214943 ], [ 35.332031, 5.528511 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, -2.635789 ], [ 144.580078, -3.864255 ], [ 145.810547, -4.915833 ], [ 145.986328, -5.441022 ], [ 147.656250, -6.053161 ], [ 147.919922, -6.577303 ], [ 146.953125, -6.751896 ], [ 147.216797, -7.362467 ], [ 148.095703, -8.059230 ], [ 148.710938, -9.102097 ], [ 149.326172, -9.102097 ], [ 149.238281, -9.535749 ], [ 150.029297, -9.709057 ], [ 149.765625, -9.882275 ], [ 150.820312, -10.314919 ], [ 150.732422, -10.574222 ], [ 150.029297, -10.660608 ], [ 149.765625, -10.401378 ], [ 147.919922, -10.141932 ], [ 146.601562, -8.928487 ], [ 146.074219, -8.059230 ], [ 144.755859, -7.623887 ], [ 143.261719, -8.233237 ], [ 143.437500, -9.015302 ], [ 142.646484, -9.362353 ], [ 142.031250, -9.188870 ], [ 141.064453, -9.102097 ], [ 140.976562, -2.635789 ] ] ], [ [ [ 152.138672, -4.127285 ], [ 152.314453, -4.302591 ], [ 152.314453, -4.828260 ], [ 151.962891, -5.441022 ], [ 151.435547, -5.528511 ], [ 151.259766, -5.878332 ], [ 150.205078, -6.315299 ], [ 149.677734, -6.315299 ], [ 148.359375, -5.703448 ], [ 148.359375, -5.441022 ], [ 149.326172, -5.615986 ], [ 149.853516, -5.528511 ], [ 150.029297, -5.003394 ], [ 150.117188, -5.003394 ], [ 150.205078, -5.528511 ], [ 150.820312, -5.441022 ], [ 151.611328, -4.740675 ], [ 151.523438, -4.127285 ], [ 152.138672, -4.127285 ] ] ], [ [ [ 154.687500, -5.003394 ], [ 154.775391, -5.353521 ], [ 156.005859, -6.577303 ], [ 155.917969, -6.839170 ], [ 155.566406, -6.926427 ], [ 155.126953, -6.577303 ], [ 154.687500, -5.878332 ], [ 154.511719, -5.178482 ], [ 154.687500, -5.003394 ] ] ], [ [ [ 150.908203, -2.460181 ], [ 152.226562, -3.250209 ], [ 153.017578, -3.951941 ], [ 153.105469, -4.477856 ], [ 152.841797, -4.740675 ], [ 152.402344, -3.776559 ], [ 151.347656, -3.074695 ], [ 150.644531, -2.723583 ], [ 150.908203, -2.460181 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.088462 ], [ -43.330078, -80.027655 ], [ -44.912109, -80.342262 ], [ -46.494141, -80.589727 ], [ -48.427734, -80.830907 ], [ -50.449219, -81.024916 ], [ -52.822266, -80.969904 ], [ -54.140625, -80.632740 ], [ -53.964844, -80.223588 ], [ -51.855469, -79.951265 ], [ -50.976562, -79.608215 ], [ -49.921875, -78.819036 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.042864 ], [ -60.117188, -80.997452 ], [ -62.226562, -80.858875 ], [ -64.511719, -80.928426 ], [ -65.742188, -80.589727 ], [ -66.269531, -80.253391 ], [ -64.072266, -80.297927 ], [ -61.875000, -80.386396 ], [ -60.644531, -79.624056 ] ] ], [ [ [ -57.832031, -63.273182 ], [ -57.216797, -63.509375 ], [ -57.568359, -63.860036 ], [ -58.623047, -64.168107 ], [ -59.062500, -64.358931 ], [ -59.765625, -64.206377 ], [ -60.644531, -64.320872 ], [ -62.050781, -64.811557 ], [ -62.490234, -65.109148 ], [ -62.666016, -65.476508 ], [ -62.578125, -65.874725 ], [ -62.138672, -66.196009 ], [ -62.841797, -66.407955 ], [ -63.720703, -66.513260 ], [ -65.478516, -67.575717 ], [ -65.654297, -67.941650 ], [ -65.302734, -68.366801 ], [ -64.775391, -68.688521 ], [ -63.984375, -68.911005 ], [ -63.193359, -69.224997 ], [ -62.753906, -69.626510 ], [ -62.314453, -70.377854 ], [ -61.787109, -70.728979 ], [ -61.523438, -71.102543 ], [ -61.347656, -72.019729 ], [ -60.732422, -73.175897 ], [ -60.820312, -73.701948 ], [ -61.347656, -74.116047 ], [ -61.962891, -74.449358 ], [ -63.281250, -74.566736 ], [ -64.335938, -75.253057 ], [ -65.830078, -75.628632 ], [ -67.236328, -75.802118 ], [ -69.785156, -76.226907 ], [ -70.576172, -76.639226 ], [ -72.246094, -76.679785 ], [ -74.003906, -76.639226 ], [ -75.585938, -76.720223 ], [ -77.255859, -76.720223 ], [ -76.904297, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.267578, -77.561042 ], [ -73.652344, -77.915669 ], [ -74.794922, -78.224513 ], [ -76.464844, -78.116408 ], [ -77.958984, -78.384855 ], [ -78.046875, -79.187834 ], [ -76.816406, -79.512662 ], [ -76.640625, -79.889737 ], [ -75.322266, -80.253391 ], [ -73.212891, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.321593 ], [ -65.742188, -81.479293 ], [ -63.281250, -81.748454 ], [ -59.677734, -82.379147 ], [ -58.710938, -82.842440 ], [ -58.183594, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.613281, -82.261699 ], [ -51.503906, -82.009169 ], [ -49.746094, -81.723188 ], [ -47.285156, -81.710526 ], [ -44.824219, -81.848756 ], [ -42.802734, -82.082145 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.361287 ], [ -38.232422, -81.334844 ], [ -34.365234, -80.900669 ], [ -30.058594, -80.589727 ], [ -28.564453, -80.342262 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.639874 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.302640 ], [ -33.662109, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.088462 ], [ -35.771484, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.655346 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.679785 ], [ -25.488281, -76.289542 ], [ -23.906250, -76.247817 ], [ -22.500000, -76.100796 ], [ -20.039062, -75.672197 ], [ -17.490234, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.380859, -74.116047 ], [ -16.435547, -73.873717 ], [ -16.083984, -73.453473 ], [ -15.468750, -73.150440 ], [ -13.271484, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.019729 ], [ -10.986328, -71.552741 ], [ -10.283203, -71.272595 ], [ -9.140625, -71.328950 ], [ -8.613281, -71.663663 ], [ -7.382812, -71.691293 ], [ -7.382812, -71.328950 ], [ -6.855469, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.413177 ], [ -4.306641, -71.469124 ], [ -1.757812, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.878906, -71.300793 ], [ 1.845703, -71.130988 ], [ 4.130859, -70.844673 ], [ 5.185547, -70.612614 ], [ 6.240234, -70.466207 ], [ 7.119141, -70.259452 ], [ 7.734375, -69.900118 ], [ 8.525391, -70.140364 ], [ 9.492188, -70.020587 ], [ 10.810547, -70.844673 ], [ 11.953125, -70.641769 ], [ 12.392578, -70.259452 ], [ 13.447266, -69.960439 ], [ 14.765625, -70.020587 ], [ 15.117188, -70.407348 ], [ 15.908203, -70.020587 ], [ 17.050781, -69.900118 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.900118 ], [ 21.445312, -70.080562 ], [ 21.884766, -70.407348 ], [ 22.587891, -70.699951 ], [ 23.642578, -70.524897 ], [ 27.070312, -70.466207 ], [ 29.179688, -70.199994 ], [ 30.058594, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.992188, -69.657086 ], [ 32.783203, -69.380313 ], [ 33.310547, -68.847665 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.332031, -69.005675 ], [ 36.123047, -69.256149 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.534518 ], [ 38.671875, -69.778952 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.957031, -68.942607 ], [ 41.923828, -68.592487 ], [ 44.121094, -68.269387 ], [ 46.494141, -67.609221 ], [ 47.460938, -67.709445 ], [ 48.955078, -67.101656 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.976562, -66.513260 ], [ 52.646484, -66.053716 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.982270 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.687784 ], [ 58.710938, -67.272043 ], [ 59.941406, -67.407487 ], [ 61.435547, -67.941650 ], [ 62.402344, -68.007571 ], [ 63.193359, -67.809245 ], [ 64.072266, -67.407487 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.941650 ], [ 68.906250, -67.941650 ], [ 69.697266, -68.974164 ], [ 69.697266, -69.224997 ], [ 69.521484, -69.687618 ], [ 68.554688, -69.930300 ], [ 67.851562, -70.318738 ], [ 67.939453, -70.699951 ], [ 69.082031, -70.670881 ], [ 68.906250, -71.074056 ], [ 67.939453, -71.856229 ], [ 68.730469, -72.154890 ], [ 69.873047, -72.262310 ], [ 71.015625, -72.100944 ], [ 71.894531, -71.328950 ], [ 73.125000, -70.728979 ], [ 73.828125, -69.869892 ], [ 74.531250, -69.778952 ], [ 75.585938, -69.748551 ], [ 77.607422, -69.472969 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.334376 ], [ 80.947266, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.089844, -67.373698 ], [ 82.792969, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.693359, -67.101656 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.857422, -66.964476 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.238062 ], [ 91.582031, -67.101656 ], [ 93.515625, -67.204032 ], [ 94.218750, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.800781, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.701172, -67.101656 ], [ 99.755859, -67.238062 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.982270 ], [ 106.171875, -66.930060 ], [ 108.105469, -66.964476 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.642578, -65.874725 ], [ 114.345703, -66.089364 ], [ 115.576172, -66.687784 ], [ 116.718750, -66.652977 ], [ 117.421875, -66.930060 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.272043 ], [ 120.849609, -67.204032 ], [ 122.343750, -66.548263 ], [ 123.222656, -66.478208 ], [ 125.156250, -66.722541 ], [ 126.123047, -66.548263 ], [ 127.001953, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.978516, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.730626 ], [ 135.087891, -65.293468 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.018018 ], [ 136.582031, -66.791909 ], [ 137.460938, -66.964476 ], [ 140.800781, -66.826520 ], [ 143.085938, -66.791909 ], [ 145.458984, -66.930060 ], [ 146.162109, -67.238062 ], [ 145.986328, -67.609221 ], [ 146.689453, -67.908619 ], [ 148.798828, -68.399180 ], [ 152.490234, -68.879358 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.917969, -69.162558 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.697266, -69.990535 ], [ 160.839844, -70.229744 ], [ 161.542969, -70.583418 ], [ 162.685547, -70.728979 ], [ 166.113281, -70.757966 ], [ 167.343750, -70.844673 ], [ 168.398438, -70.959697 ], [ 170.507812, -71.413177 ], [ 171.210938, -71.691293 ], [ 171.123047, -72.100944 ], [ 170.595703, -72.448792 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.824820 ], [ 167.343750, -74.164085 ], [ 166.113281, -74.378513 ], [ 165.673828, -74.775843 ], [ 164.267578, -75.453071 ], [ 163.564453, -76.247817 ], [ 163.476562, -76.700019 ], [ 163.476562, -77.059116 ], [ 164.091797, -77.466028 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.188586 ], [ 166.640625, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.234375, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.806641, -79.154810 ], [ 160.927734, -79.734281 ], [ 160.751953, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.281717 ], [ 161.630859, -81.685144 ], [ 162.509766, -82.057893 ], [ 163.740234, -82.390794 ], [ 166.640625, -83.026219 ], [ 168.925781, -83.339153 ], [ 169.365234, -83.829945 ], [ 172.265625, -84.043447 ], [ 173.232422, -84.414502 ], [ 175.957031, -84.160849 ], [ 180.000000, -84.714152 ], [ 180.087891, -84.722243 ], [ 180.966797, -84.142939 ], [ 182.724609, -84.457112 ], [ 183.955078, -84.097922 ], [ 184.130859, -84.115970 ], [ 185.625000, -84.532994 ], [ 187.031250, -84.079819 ], [ 187.031250, -85.622069 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.310902 ], [ -186.767578, -84.414502 ], [ -184.042969, -84.160849 ], [ -180.000000, -84.714152 ], [ -179.912109, -84.722243 ], [ -179.033203, -84.142939 ], [ -177.275391, -84.457112 ], [ -176.044922, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.375000, -84.532994 ], [ -172.880859, -84.061661 ], [ -169.980469, -83.886366 ], [ -166.992188, -84.566386 ], [ -164.179688, -84.826305 ], [ -162.597656, -85.051129 ], [ -161.894531, -85.141284 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.908203, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.316708 ], [ -143.173828, -85.051129 ], [ -143.085938, -85.043541 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.532994 ], [ -150.029297, -84.293450 ], [ -150.908203, -83.905058 ], [ -153.544922, -83.686615 ], [ -153.369141, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.841797, -82.045740 ], [ -154.511719, -81.773644 ], [ -155.302734, -81.413933 ], [ -156.796875, -81.106811 ], [ -154.423828, -81.160996 ], [ -152.138672, -80.997452 ], [ -150.644531, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.216797, -80.675559 ], [ -146.425781, -80.342262 ], [ -146.777344, -79.920548 ], [ -149.501953, -79.351472 ], [ -151.611328, -79.302640 ], [ -153.369141, -79.154810 ], [ -155.302734, -79.071812 ], [ -156.005859, -78.699106 ], [ -157.236328, -78.384855 ], [ -158.027344, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.851562, -76.980149 ], [ -156.972656, -77.293202 ], [ -155.302734, -77.196176 ], [ -153.720703, -77.059116 ], [ -152.929688, -77.504119 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.710938, -76.900709 ], [ -147.656250, -76.578159 ], [ -146.074219, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.737303 ], [ -146.162109, -75.386696 ], [ -144.931641, -75.208245 ], [ -144.316406, -75.541113 ], [ -142.822266, -75.342282 ], [ -141.679688, -75.095633 ], [ -140.185547, -75.073010 ], [ -138.867188, -74.959392 ], [ -135.175781, -74.307353 ], [ -133.769531, -74.449358 ], [ -132.275391, -74.307353 ], [ -130.957031, -74.472903 ], [ -129.550781, -74.449358 ], [ -128.232422, -74.331108 ], [ -125.419922, -74.519889 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.519889 ], [ -119.707031, -74.472903 ], [ -118.652344, -74.188052 ], [ -117.509766, -74.019543 ], [ -116.191406, -74.235878 ], [ -115.048828, -74.067866 ], [ -113.906250, -73.726595 ], [ -113.291016, -74.019543 ], [ -112.939453, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.425777 ], [ -110.039062, -74.798906 ], [ -108.720703, -74.913708 ], [ -107.578125, -75.185789 ], [ -106.171875, -75.118222 ], [ -104.853516, -74.959392 ], [ -103.359375, -74.982183 ], [ -100.634766, -75.297735 ], [ -100.107422, -74.867889 ], [ -101.250000, -74.188052 ], [ -102.568359, -74.116047 ], [ -103.095703, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.764065 ], [ -101.601562, -72.816074 ], [ -100.283203, -72.764065 ], [ -99.140625, -72.919635 ], [ -98.085938, -73.201317 ], [ -97.646484, -73.553302 ], [ -96.328125, -73.627789 ], [ -92.460938, -73.175897 ], [ -91.406250, -73.403338 ], [ -90.087891, -73.327858 ], [ -89.208984, -72.554498 ], [ -88.417969, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.099413 ], [ -85.166016, -73.478485 ], [ -83.847656, -73.528399 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.683594, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.277344, -73.528399 ], [ -77.958984, -73.428424 ], [ -76.904297, -73.627789 ], [ -76.201172, -73.971078 ], [ -74.882812, -73.873717 ], [ -72.861328, -73.403338 ], [ -68.906250, -72.996909 ], [ -67.939453, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.236328, -71.635993 ], [ -68.466797, -70.110485 ], [ -68.554688, -69.718107 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.412109, -68.138852 ], [ -67.763672, -67.339861 ], [ -67.236328, -66.861082 ], [ -66.093750, -66.196009 ], [ -64.599609, -65.585720 ], [ -64.160156, -65.183030 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.586185 ], [ -61.435547, -64.282760 ], [ -60.732422, -64.091408 ], [ -59.853516, -63.937372 ], [ -59.150391, -63.704722 ], [ -58.623047, -63.391522 ], [ -57.832031, -63.273182 ] ] ], [ [ [ -163.125000, -78.224513 ], [ -161.279297, -78.384855 ], [ -160.224609, -78.699106 ], [ -159.521484, -79.038437 ], [ -159.169922, -79.496652 ], [ -161.103516, -79.639874 ], [ -162.421875, -79.286313 ], [ -163.037109, -78.870048 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.224513 ] ] ], [ [ [ -122.431641, -73.327858 ], [ -119.882812, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.267578, -73.824820 ], [ -120.234375, -74.091974 ], [ -121.640625, -74.019543 ], [ -122.607422, -73.652545 ], [ -122.431641, -73.327858 ] ] ], [ [ [ -126.562500, -73.252045 ], [ -124.013672, -73.873717 ], [ -125.947266, -73.726595 ], [ -127.265625, -73.453473 ], [ -126.562500, -73.252045 ] ] ], [ [ [ -101.689453, -71.718882 ], [ -100.458984, -71.856229 ], [ -98.964844, -71.938158 ], [ -97.910156, -72.073911 ], [ -96.767578, -71.965388 ], [ -96.240234, -72.528130 ], [ -96.943359, -72.448792 ], [ -98.173828, -72.475276 ], [ -99.404297, -72.448792 ], [ -100.810547, -72.501722 ], [ -101.777344, -72.315785 ], [ -102.304688, -71.883578 ], [ -101.689453, -71.718882 ] ] ], [ [ [ -70.224609, -68.879358 ], [ -69.697266, -69.256149 ], [ -68.466797, -70.959697 ], [ -68.291016, -71.413177 ], [ -68.818359, -72.181804 ], [ -69.960938, -72.315785 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.894531, -72.100944 ], [ -74.179688, -72.369105 ], [ -74.970703, -72.073911 ], [ -74.970703, -71.663663 ], [ -73.916016, -71.272595 ], [ -73.212891, -71.159391 ], [ -72.070312, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.718750, -69.503765 ], [ -71.191406, -69.037142 ], [ -70.224609, -68.879358 ] ] ] ] } } ] } ] } , @@ -48,7 +46,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.379883, 3.513421 ], [ -64.423828, 3.118576 ], [ -64.248047, 2.504085 ], [ -63.413086, 2.416276 ], [ -63.369141, 2.196727 ], [ -64.072266, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.346680, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.313477, 0.703107 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.240640 ], [ -67.456055, 2.591889 ], [ -67.807617, 2.811371 ], [ -67.324219, 3.337954 ], [ -67.324219, 3.513421 ], [ -64.379883, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.052734, 3.513421 ], [ -54.272461, 2.723583 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.504085 ], [ -55.590820, 2.416276 ], [ -55.986328, 2.504085 ], [ -56.074219, 2.240640 ], [ -55.898438, 2.021065 ], [ -55.986328, 1.801461 ], [ -56.557617, 1.889306 ], [ -57.128906, 2.767478 ], [ -57.260742, 3.337954 ], [ -57.612305, 3.337954 ], [ -57.700195, 3.513421 ], [ -54.052734, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.700195, 3.513421 ], [ -57.612305, 3.337954 ], [ -57.260742, 3.337954 ], [ -57.128906, 2.767478 ], [ -56.557617, 1.889306 ], [ -56.777344, 1.845384 ], [ -57.348633, 1.933227 ], [ -57.656250, 1.669686 ], [ -58.095703, 1.493971 ], [ -58.447266, 1.450040 ], [ -58.535156, 1.274309 ], [ -59.018555, 1.318243 ], [ -59.633789, 1.801461 ], [ -59.721680, 2.240640 ], [ -59.985352, 2.767478 ], [ -59.853516, 3.513421 ], [ -57.700195, 3.513421 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.020508, 3.513421 ], [ -50.493164, 1.889306 ], [ -49.965820, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.219726 ], [ -50.449219, 0.000000 ], [ -50.405273, -0.087891 ], [ -48.603516, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.812500, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.152814 ], [ -44.560547, -2.679687 ], [ -43.417969, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.496094, -3.688855 ], [ -37.221680, -4.828260 ], [ -36.474609, -5.090944 ], [ -35.595703, -5.134715 ], [ -35.244141, -5.484768 ], [ -34.716797, -7.362467 ], [ -35.112305, -9.015302 ], [ -35.639648, -9.665738 ], [ -37.045898, -11.049038 ], [ -37.705078, -12.168226 ], [ -38.408203, -13.025966 ], [ -38.671875, -13.068777 ], [ -38.935547, -13.795406 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.271086 ], [ -39.770508, -19.601194 ], [ -40.781250, -20.920397 ], [ -40.957031, -21.943046 ], [ -41.748047, -22.390714 ], [ -41.967773, -22.958393 ], [ -43.066406, -22.958393 ], [ -44.648438, -23.362429 ], [ -45.351562, -23.805450 ], [ -46.450195, -24.086589 ], [ -47.636719, -24.886436 ], [ -48.515625, -25.878994 ], [ -48.647461, -26.627818 ], [ -48.471680, -27.176469 ], [ -48.647461, -28.188244 ], [ -48.867188, -28.690588 ], [ -49.570312, -29.228890 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.250977, -32.249974 ], [ -52.690430, -33.211116 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.211116 ], [ -53.217773, -32.731841 ], [ -53.789062, -32.063956 ], [ -55.590820, -30.864510 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.612305, -30.221102 ], [ -56.293945, -28.844674 ], [ -55.151367, -27.877928 ], [ -53.657227, -26.941660 ], [ -53.613281, -26.115986 ], [ -54.140625, -25.562265 ], [ -54.624023, -25.720735 ], [ -54.272461, -24.567108 ], [ -54.272461, -24.006326 ], [ -54.667969, -23.845650 ], [ -55.019531, -24.006326 ], [ -55.415039, -23.966176 ], [ -55.502930, -23.563987 ], [ -55.590820, -22.674847 ], [ -55.810547, -22.350076 ], [ -56.469727, -22.105999 ], [ -56.865234, -22.268764 ], [ -57.919922, -22.105999 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.179724 ], [ -57.832031, -19.973349 ], [ -57.963867, -19.394068 ], [ -57.656250, -18.979026 ], [ -57.480469, -18.187607 ], [ -57.744141, -17.560247 ], [ -58.271484, -17.266728 ], [ -58.403320, -16.888660 ], [ -58.227539, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.114553 ], [ -60.249023, -15.072124 ], [ -60.249023, -14.647368 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.795406 ], [ -61.083984, -13.496473 ], [ -61.699219, -13.496473 ], [ -62.138672, -13.197165 ], [ -62.797852, -12.983148 ], [ -63.193359, -12.640338 ], [ -64.335938, -12.468760 ], [ -65.390625, -11.566144 ], [ -65.302734, -10.876465 ], [ -65.434570, -10.531020 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.314919 ], [ -68.027344, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.774414, -11.049038 ], [ -69.521484, -10.962764 ], [ -70.092773, -11.135287 ], [ -70.532227, -11.005904 ], [ -70.488281, -9.492408 ], [ -71.323242, -10.098670 ], [ -72.202148, -10.055403 ], [ -72.553711, -9.535749 ], [ -73.212891, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.564453, -8.407168 ], [ -74.003906, -7.536764 ], [ -73.740234, -7.362467 ], [ -73.740234, -6.926427 ], [ -73.125000, -6.620957 ], [ -73.212891, -6.096860 ], [ -72.949219, -5.747174 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.609278 ], [ -70.927734, -4.390229 ], [ -70.795898, -4.258768 ], [ -69.873047, -4.302591 ], [ -69.433594, -1.142502 ], [ -69.565430, -0.571280 ], [ -70.004883, -0.175781 ], [ -70.004883, 0.527336 ], [ -69.433594, 0.703107 ], [ -69.257812, 0.615223 ], [ -69.213867, 0.966751 ], [ -69.785156, 1.098565 ], [ -69.829102, 1.713612 ], [ -67.851562, 1.713612 ], [ -67.543945, 2.021065 ], [ -67.280273, 1.713612 ], [ -67.060547, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.313477, 0.703107 ], [ -65.566406, 0.790990 ], [ -65.346680, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.072266, 1.933227 ], [ -63.369141, 2.196727 ], [ -63.413086, 2.416276 ], [ -64.248047, 2.504085 ], [ -64.423828, 3.118576 ], [ -64.379883, 3.513421 ], [ -59.853516, 3.513421 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.240640 ], [ -59.633789, 1.801461 ], [ -59.018555, 1.318243 ], [ -58.535156, 1.274309 ], [ -58.447266, 1.450040 ], [ -58.095703, 1.493971 ], [ -57.656250, 1.669686 ], [ -57.348633, 1.933227 ], [ -55.986328, 1.801461 ], [ -55.898438, 2.021065 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.504085 ], [ -55.590820, 2.416276 ], [ -55.107422, 2.504085 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.372369 ], [ -53.569336, 2.328460 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.108899 ], [ -52.558594, 2.504085 ], [ -52.075195, 3.513421 ], [ -51.020508, 3.513421 ] ] ] } } , @@ -58,13 +56,7 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.102539, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -1.010690 ], [ -73.652344, -1.274309 ], [ -73.081055, -2.328460 ], [ -72.333984, -2.416276 ], [ -71.762695, -2.152814 ], [ -71.411133, -2.328460 ], [ -70.795898, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.708008, -3.732708 ], [ -70.400391, -3.776559 ], [ -69.873047, -4.302591 ], [ -70.795898, -4.258768 ], [ -70.927734, -4.390229 ], [ -71.762695, -4.609278 ], [ -72.905273, -5.266008 ], [ -72.949219, -5.747174 ], [ -73.212891, -6.096860 ], [ -73.125000, -6.620957 ], [ -73.740234, -6.926427 ], [ -73.740234, -7.362467 ], [ -74.003906, -7.536764 ], [ -73.564453, -8.407168 ], [ -73.037109, -9.015302 ], [ -73.212891, -9.449062 ], [ -72.553711, -9.535749 ], [ -72.202148, -10.055403 ], [ -71.323242, -10.098670 ], [ -70.488281, -9.492408 ], [ -70.532227, -11.005904 ], [ -70.092773, -11.135287 ], [ -69.521484, -10.962764 ], [ -68.686523, -12.554564 ], [ -68.862305, -12.897489 ], [ -68.950195, -14.434680 ], [ -69.345703, -14.944785 ], [ -69.169922, -15.326572 ], [ -69.389648, -15.665354 ], [ -68.950195, -16.509833 ], [ -69.873047, -18.104087 ], [ -70.356445, -18.354526 ], [ -71.367188, -17.769612 ], [ -71.455078, -17.350638 ], [ -73.432617, -16.341226 ], [ -75.234375, -15.284185 ], [ -76.025391, -14.647368 ], [ -76.420898, -13.838080 ], [ -76.245117, -13.539201 ], [ -77.124023, -12.211180 ], [ -78.090820, -10.358151 ], [ -79.057617, -8.407168 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.140555 ], [ -80.947266, -5.703448 ], [ -81.430664, -4.740675 ], [ -81.079102, -4.039618 ], [ -80.288086, -3.425692 ], [ -80.200195, -3.820408 ], [ -80.463867, -4.039618 ], [ -80.463867, -4.434044 ], [ -80.024414, -4.346411 ], [ -79.628906, -4.434044 ], [ -79.189453, -4.959615 ], [ -78.618164, -4.565474 ], [ -78.442383, -3.864255 ], [ -77.827148, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.541992, -1.581830 ], [ -75.234375, -0.922812 ], [ -75.366211, -0.131836 ], [ -75.102539, -0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.434570, -10.531020 ], [ -65.302734, -10.876465 ], [ -65.390625, -11.566144 ], [ -64.335938, -12.468760 ], [ -63.193359, -12.640338 ], [ -62.797852, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.699219, -13.496473 ], [ -61.083984, -13.496473 ], [ -60.512695, -13.795406 ], [ -60.468750, -14.349548 ], [ -60.249023, -14.647368 ], [ -60.249023, -15.072124 ], [ -60.556641, -15.114553 ], [ -60.161133, -16.256867 ], [ -58.227539, -16.299051 ], [ -58.403320, -16.888660 ], [ -58.271484, -17.266728 ], [ -57.744141, -17.560247 ], [ -57.480469, -18.187607 ], [ -57.656250, -18.979026 ], [ -57.963867, -19.394068 ], [ -57.832031, -19.973349 ], [ -58.183594, -20.179724 ], [ -58.183594, -19.849394 ], [ -59.106445, -19.352611 ], [ -60.029297, -19.352611 ], [ -61.787109, -19.642588 ], [ -62.270508, -20.509355 ], [ -62.270508, -21.043491 ], [ -62.666016, -22.268764 ], [ -62.841797, -22.024546 ], [ -63.984375, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.951172, -22.065278 ], [ -66.269531, -21.820708 ], [ -67.104492, -22.755921 ], [ -67.807617, -22.877440 ], [ -68.203125, -21.493964 ], [ -68.774414, -20.385825 ], [ -68.422852, -19.394068 ], [ -68.950195, -18.979026 ], [ -69.082031, -18.271086 ], [ -69.609375, -17.560247 ], [ -68.950195, -16.509833 ], [ -69.389648, -15.665354 ], [ -69.169922, -15.326572 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.862305, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.521484, -10.962764 ], [ -68.774414, -11.049038 ], [ -68.291016, -11.005904 ], [ -68.027344, -10.703792 ], [ -67.192383, -10.314919 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ], [ -55.590820, -30.864510 ], [ -53.789062, -32.063956 ], [ -53.217773, -32.731841 ], [ -53.657227, -33.211116 ], [ -53.393555, -33.760882 ], [ -53.789062, -34.379713 ], [ -54.931641, -34.957995 ], [ -55.678711, -34.741612 ], [ -56.206055, -34.849875 ], [ -57.128906, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.139648, -32.026706 ], [ -57.612305, -30.221102 ], [ -56.997070, -30.107118 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.643063 ], [ -68.247070, -53.094024 ], [ -67.763672, -53.852527 ], [ -66.445312, -54.444492 ], [ -65.039062, -54.699234 ], [ -65.478516, -55.203953 ], [ -66.445312, -55.254077 ], [ -66.972656, -54.901882 ], [ -68.642578, -54.876607 ], [ -68.642578, -52.643063 ] ] ], [ [ [ -66.269531, -21.820708 ], [ -64.951172, -22.065278 ], [ -64.379883, -22.796439 ], [ -63.984375, -21.983801 ], [ -62.841797, -22.024546 ], [ -62.666016, -22.268764 ], [ -60.864258, -23.885838 ], [ -60.029297, -24.046464 ], [ -58.798828, -24.766785 ], [ -57.788086, -25.165173 ], [ -57.612305, -25.601902 ], [ -58.623047, -27.137368 ], [ -57.612305, -27.410786 ], [ -56.469727, -27.566721 ], [ -55.678711, -27.371767 ], [ -54.799805, -26.627818 ], [ -54.624023, -25.720735 ], [ -54.140625, -25.562265 ], [ -53.613281, -26.115986 ], [ -53.657227, -26.941660 ], [ -55.151367, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.612305, -30.221102 ], [ -58.139648, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.491211, -34.415973 ], [ -57.216797, -35.281501 ], [ -57.348633, -35.960223 ], [ -56.733398, -36.421282 ], [ -56.777344, -36.914764 ], [ -57.744141, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.215820, -38.925229 ], [ -62.314453, -38.822591 ], [ -62.138672, -39.436193 ], [ -62.314453, -40.178873 ], [ -62.138672, -40.680638 ], [ -62.753906, -41.013066 ], [ -63.764648, -41.178654 ], [ -64.731445, -40.813809 ], [ -65.126953, -41.079351 ], [ -64.995117, -42.065607 ], [ -64.291992, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.457031, -42.553080 ], [ -64.379883, -42.875964 ], [ -65.170898, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.489258, -45.026950 ], [ -67.280273, -45.552525 ], [ -67.587891, -46.316584 ], [ -66.577148, -47.040182 ], [ -65.654297, -47.249407 ], [ -66.005859, -48.136767 ], [ -67.148438, -48.690960 ], [ -67.807617, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.125977, -50.736455 ], [ -68.818359, -51.781436 ], [ -68.159180, -52.348763 ], [ -69.477539, -52.133488 ], [ -71.894531, -51.998410 ], [ -72.333984, -51.426614 ], [ -72.290039, -50.680797 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.325122 ], [ -72.641602, -48.864715 ], [ -72.333984, -48.253941 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.890232 ], [ -71.542969, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.323242, -44.402392 ], [ -71.806641, -44.213710 ], [ -71.455078, -43.802819 ], [ -71.894531, -43.421009 ], [ -72.158203, -42.261049 ], [ -71.762695, -42.065607 ], [ -71.894531, -40.847060 ], [ -71.411133, -38.925229 ], [ -70.795898, -38.548165 ], [ -71.103516, -37.579413 ], [ -71.103516, -36.668419 ], [ -70.356445, -35.995785 ], [ -70.400391, -35.173808 ], [ -69.829102, -34.198173 ], [ -69.829102, -33.284620 ], [ -70.092773, -33.100745 ], [ -70.532227, -31.353637 ], [ -69.916992, -30.334954 ], [ -70.004883, -29.382175 ], [ -69.653320, -28.459033 ], [ -68.994141, -27.527758 ], [ -68.291016, -26.902477 ], [ -68.598633, -26.509905 ], [ -68.378906, -26.194877 ], [ -68.422852, -24.527135 ], [ -67.324219, -24.006326 ], [ -66.972656, -22.998852 ], [ -67.104492, -22.755921 ], [ -66.269531, -21.820708 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.643063 ], [ -68.642578, -54.876607 ], [ -66.972656, -54.901882 ], [ -67.280273, -55.304138 ], [ -68.159180, -55.603178 ], [ -68.642578, -55.578345 ], [ -69.213867, -55.503750 ], [ -69.960938, -55.203953 ], [ -71.015625, -55.053203 ], [ -72.246094, -54.495568 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.828125, -53.041213 ], [ -72.421875, -53.722717 ], [ -71.103516, -54.085173 ], [ -70.576172, -53.618579 ], [ -70.268555, -52.935397 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.082031, -18.271086 ], [ -68.950195, -18.979026 ], [ -68.422852, -19.394068 ], [ -68.774414, -20.385825 ], [ -68.203125, -21.493964 ], [ -67.807617, -22.877440 ], [ -67.104492, -22.755921 ], [ -66.972656, -22.998852 ], [ -67.324219, -24.006326 ], [ -68.422852, -24.527135 ], [ -68.378906, -26.194877 ], [ -68.598633, -26.509905 ], [ -68.291016, -26.902477 ], [ -68.994141, -27.527758 ], [ -69.653320, -28.459033 ], [ -70.004883, -29.382175 ], [ -69.916992, -30.334954 ], [ -70.532227, -31.353637 ], [ -70.092773, -33.100745 ], [ -69.829102, -33.284620 ], [ -69.829102, -34.198173 ], [ -70.400391, -35.173808 ], [ -70.356445, -35.995785 ], [ -71.103516, -36.668419 ], [ -71.103516, -37.579413 ], [ -70.795898, -38.548165 ], [ -71.411133, -38.925229 ], [ -71.894531, -40.847060 ], [ -71.762695, -42.065607 ], [ -72.158203, -42.261049 ], [ -71.894531, -43.421009 ], [ -71.455078, -43.802819 ], [ -71.806641, -44.213710 ], [ -71.323242, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.542969, -45.552525 ], [ -71.938477, -46.890232 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.253941 ], [ -72.641602, -48.864715 ], [ -73.432617, -49.325122 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.290039, -50.680797 ], [ -72.333984, -51.426614 ], [ -71.894531, -51.998410 ], [ -69.477539, -52.133488 ], [ -68.554688, -52.295042 ], [ -69.477539, -52.295042 ], [ -69.960938, -52.536273 ], [ -70.839844, -52.908902 ], [ -71.015625, -53.826597 ], [ -71.411133, -53.852527 ], [ -72.553711, -53.540307 ], [ -73.696289, -52.829321 ], [ -74.926758, -52.268157 ], [ -75.278320, -51.618017 ], [ -74.970703, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.724545 ], [ -74.135742, -46.950262 ], [ -75.629883, -46.649436 ], [ -74.707031, -45.767523 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.465151 ], [ -72.729492, -42.391009 ], [ -73.388672, -42.130821 ], [ -73.696289, -43.357138 ], [ -74.311523, -43.229195 ], [ -73.696289, -39.943436 ], [ -73.212891, -39.266284 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.160317 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.496456 ], [ -71.850586, -33.906896 ], [ -71.455078, -32.435613 ], [ -71.674805, -30.902225 ], [ -71.367188, -30.107118 ], [ -71.499023, -28.844674 ], [ -70.883789, -27.644606 ], [ -70.708008, -25.720735 ], [ -70.092773, -21.412162 ], [ -70.180664, -19.766704 ], [ -70.356445, -18.354526 ], [ -69.873047, -18.104087 ], [ -69.609375, -17.560247 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.179724 ], [ -57.875977, -20.715015 ], [ -57.919922, -22.105999 ], [ -56.865234, -22.268764 ], [ -56.469727, -22.105999 ], [ -55.810547, -22.350076 ], [ -55.590820, -22.674847 ], [ -55.502930, -23.563987 ], [ -55.415039, -23.966176 ], [ -55.019531, -24.006326 ], [ -54.667969, -23.845650 ], [ -54.272461, -24.006326 ], [ -54.272461, -24.567108 ], [ -54.624023, -25.720735 ], [ -54.799805, -26.627818 ], [ -55.678711, -27.371767 ], [ -56.469727, -27.566721 ], [ -57.612305, -27.410786 ], [ -58.623047, -27.137368 ], [ -57.612305, -25.601902 ], [ -57.788086, -25.165173 ], [ -58.798828, -24.766785 ], [ -60.029297, -24.046464 ], [ -60.864258, -23.885838 ], [ -62.666016, -22.268764 ], [ -62.270508, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.642588 ], [ -60.029297, -19.352611 ], [ -59.106445, -19.352611 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.535156, -51.096623 ], [ -57.744141, -51.563412 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.862924 ], [ -60.688477, -52.295042 ], [ -61.215820, -51.862924 ], [ -59.985352, -51.261915 ], [ -59.150391, -51.508742 ], [ -58.535156, -51.096623 ] ] ] } } , @@ -82,39 +74,35 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.262197 ], [ -155.214844, 19.973349 ], [ -154.819336, 19.518375 ], [ -155.522461, 19.103648 ], [ -155.698242, 18.895893 ], [ -155.917969, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.683970 ], [ -155.830078, 19.973349 ], [ -155.917969, 20.179724 ], [ -155.874023, 20.262197 ] ] ], [ [ [ -156.621094, 21.002471 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.756114 ], [ -156.093750, 20.632784 ], [ -156.401367, 20.591652 ], [ -156.708984, 20.920397 ], [ -156.621094, 21.002471 ] ] ], [ [ [ -157.236328, 21.207459 ], [ -156.752930, 21.166484 ], [ -156.796875, 21.084500 ], [ -157.324219, 21.084500 ], [ -157.236328, 21.207459 ] ] ], [ [ [ -158.027344, 21.698265 ], [ -157.631836, 21.330315 ], [ -157.719727, 21.248422 ], [ -158.115234, 21.330315 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.698265 ] ] ], [ [ [ -159.345703, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.785156, 22.065278 ], [ -159.609375, 22.228090 ], [ -159.345703, 22.228090 ] ] ], [ [ [ -94.833984, 49.382373 ], [ -94.658203, 48.835797 ], [ -94.350586, 48.661943 ], [ -92.592773, 48.458352 ], [ -91.625977, 48.136767 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.252930, 48.019324 ], [ -88.374023, 48.312428 ], [ -84.858398, 46.890232 ], [ -84.770508, 46.649436 ], [ -84.550781, 46.528635 ], [ -84.594727, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.155273, 46.498392 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.103709 ], [ -83.627930, 46.103709 ], [ -83.452148, 45.981695 ], [ -83.583984, 45.828799 ], [ -82.529297, 45.336702 ], [ -82.133789, 43.580391 ], [ -82.441406, 42.972502 ], [ -83.100586, 42.065607 ], [ -83.144531, 41.967659 ], [ -83.012695, 41.836828 ], [ -82.705078, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.298828, 42.195969 ], [ -80.244141, 42.358544 ], [ -78.925781, 42.875964 ], [ -79.013672, 43.261206 ], [ -79.189453, 43.452919 ], [ -78.706055, 43.612217 ], [ -76.816406, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.809122 ], [ -74.882812, 44.995883 ], [ -71.499023, 44.995883 ], [ -71.411133, 45.243953 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.679594 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.339565 ], [ -70.136719, 43.675818 ], [ -70.795898, 42.875964 ], [ -70.839844, 42.326062 ], [ -70.488281, 41.804078 ], [ -70.092773, 41.771312 ], [ -70.180664, 42.130821 ], [ -69.873047, 41.934977 ], [ -69.960938, 41.640078 ], [ -70.620117, 41.475660 ], [ -71.103516, 41.508577 ], [ -71.850586, 41.310824 ], [ -72.861328, 41.211722 ], [ -73.696289, 40.946714 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.913513 ], [ -73.344727, 40.613952 ], [ -74.003906, 40.613952 ], [ -73.959961, 40.747257 ], [ -74.267578, 40.480381 ], [ -73.959961, 40.413496 ], [ -74.179688, 39.707187 ], [ -74.926758, 38.925229 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.232253 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.025391, 37.265310 ], [ -75.717773, 37.926868 ], [ -76.245117, 38.307181 ], [ -76.333008, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.238180 ], [ -76.289062, 37.926868 ], [ -76.245117, 36.949892 ], [ -75.981445, 36.914764 ], [ -75.717773, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.387695, 34.524661 ], [ -78.046875, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.057617, 33.504759 ], [ -79.189453, 33.174342 ], [ -80.288086, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.428663 ], [ -81.474609, 30.713504 ], [ -81.298828, 30.031055 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.459033 ], [ -80.551758, 28.033198 ], [ -80.068359, 26.863281 ], [ -80.112305, 25.799891 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.694336, 25.878994 ], [ -82.705078, 27.488781 ], [ -82.836914, 27.877928 ], [ -82.661133, 28.536275 ], [ -82.924805, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.410782 ], [ -87.539062, 30.259067 ], [ -88.417969, 30.372875 ], [ -89.165039, 30.297018 ], [ -89.604492, 30.145127 ], [ -89.428711, 29.878755 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.305561 ], [ -89.428711, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.175781, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.688053 ], [ -92.504883, 29.535230 ], [ -93.208008, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.581055, 28.729130 ], [ -96.591797, 28.304381 ], [ -97.119141, 27.839076 ], [ -97.382812, 27.371767 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.194877 ], [ -97.119141, 25.878994 ], [ -97.514648, 25.839449 ], [ -99.008789, 26.352498 ], [ -99.316406, 26.824071 ], [ -99.536133, 27.527758 ], [ -100.107422, 28.110749 ], [ -100.942383, 29.382175 ], [ -101.645508, 29.764377 ], [ -102.480469, 29.764377 ], [ -103.095703, 28.960089 ], [ -103.930664, 29.267233 ], [ -104.458008, 29.573457 ], [ -105.029297, 30.637912 ], [ -106.127930, 31.391158 ], [ -106.523438, 31.765537 ], [ -108.237305, 31.765537 ], [ -108.237305, 31.353637 ], [ -111.005859, 31.316101 ], [ -114.829102, 32.509762 ], [ -114.741211, 32.731841 ], [ -117.114258, 32.546813 ], [ -117.290039, 33.063924 ], [ -117.949219, 33.614619 ], [ -118.388672, 33.724340 ], [ -118.520508, 34.016242 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.452218 ], [ -120.629883, 34.597042 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.544577 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.099983 ], [ -123.706055, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.313043 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.707594 ], [ -123.881836, 45.521744 ], [ -124.101562, 46.860191 ], [ -124.409180, 47.724545 ], [ -124.672852, 48.195387 ], [ -124.584961, 48.370848 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.166085 ], [ -122.827148, 49.009051 ], [ -95.141602, 49.009051 ], [ -95.141602, 49.382373 ], [ -94.833984, 49.382373 ] ] ], [ [ [ -156.577148, 71.357067 ], [ -155.083008, 71.145195 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.887885 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.732422, 70.436799 ], [ -149.721680, 70.524897 ], [ -147.612305, 70.214875 ], [ -145.678711, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.569336, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.976562, 69.718107 ], [ -140.976562, 60.305185 ], [ -140.009766, 60.283408 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.556592 ], [ -137.460938, 58.904646 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.778522 ], [ -134.956055, 59.265881 ], [ -134.252930, 58.859224 ], [ -133.374023, 58.401712 ], [ -131.704102, 56.559482 ], [ -129.990234, 55.924586 ], [ -129.990234, 55.279115 ], [ -130.517578, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.503750 ], [ -132.231445, 56.365250 ], [ -133.549805, 57.183902 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.625977, 58.217025 ], [ -137.812500, 58.493694 ], [ -139.877930, 59.534318 ], [ -142.558594, 60.086763 ], [ -143.964844, 59.998986 ], [ -145.942383, 60.457218 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.007812, 59.977005 ], [ -148.579102, 59.910976 ], [ -149.721680, 59.712097 ], [ -150.600586, 59.377988 ], [ -151.699219, 59.153403 ], [ -151.875000, 59.734253 ], [ -151.391602, 60.716198 ], [ -150.336914, 61.037012 ], [ -150.600586, 61.291349 ], [ -151.875000, 60.737686 ], [ -152.578125, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.577148, 56.968936 ], [ -158.115234, 56.462490 ], [ -158.422852, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.268555, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.393352 ], [ -164.926758, 54.572062 ], [ -163.828125, 55.028022 ], [ -162.861328, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 55.998381 ], [ -160.048828, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.207710 ], [ -157.719727, 57.562995 ], [ -157.543945, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.608334 ], [ -158.510742, 58.790978 ], [ -159.038086, 58.424730 ], [ -159.697266, 58.927334 ], [ -159.960938, 58.562523 ], [ -160.356445, 59.063154 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.265881 ], [ -161.894531, 59.623325 ], [ -162.509766, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.261617 ], [ -165.366211, 60.500525 ], [ -165.366211, 61.079544 ], [ -166.113281, 61.501734 ], [ -165.717773, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.740234, 63.213830 ], [ -163.081055, 63.054959 ], [ -162.246094, 63.548552 ], [ -161.542969, 63.450509 ], [ -160.751953, 63.763065 ], [ -160.971680, 64.225493 ], [ -161.499023, 64.396938 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.774125 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.420898, 64.680318 ], [ -166.860352, 65.090646 ], [ -168.090820, 65.676381 ], [ -166.684570, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.784180, 66.071546 ], [ -161.674805, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.609221 ], [ -165.410156, 68.040461 ], [ -166.772461, 68.366801 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -163.168945, 69.364831 ], [ -162.949219, 69.854762 ], [ -161.894531, 70.333533 ], [ -160.927734, 70.451508 ], [ -159.038086, 70.887885 ], [ -158.115234, 70.830248 ], [ -156.577148, 71.357067 ] ] ], [ [ [ -153.237305, 57.961503 ], [ -152.578125, 57.891497 ], [ -152.138672, 57.586559 ], [ -153.017578, 57.112385 ], [ -153.984375, 56.728622 ], [ -154.511719, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.961503 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.507812, 63.685248 ], [ -169.672852, 63.430860 ], [ -168.706055, 63.292939 ], [ -168.750000, 63.194018 ], [ -169.541016, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.683594, 63.371832 ], [ -171.562500, 63.312683 ], [ -171.782227, 63.411198 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.392148 ], [ -165.673828, 60.283408 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.933000 ], [ -167.475586, 60.217991 ], [ -166.464844, 60.392148 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.178711, 25.204941 ], [ -77.871094, 25.165173 ], [ -77.519531, 24.327077 ], [ -77.519531, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.398438, 24.567108 ], [ -78.178711, 25.204941 ] ] ], [ [ [ -77.783203, 27.059126 ], [ -76.992188, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.343750, 25.997550 ], [ -77.343750, 26.549223 ], [ -77.783203, 26.941660 ], [ -77.783203, 27.059126 ] ] ], [ [ [ -78.530273, 26.863281 ], [ -77.871094, 26.824071 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.969727, 26.784847 ], [ -78.530273, 26.863281 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.068359, 83.642973 ], [ -27.114258, 83.520162 ], [ -20.830078, 82.726530 ], [ -22.675781, 82.344100 ], [ -26.499023, 82.297121 ], [ -31.904297, 82.202302 ], [ -31.376953, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.829102, 81.786210 ], [ -22.895508, 82.094243 ], [ -22.060547, 81.735830 ], [ -23.159180, 81.154241 ], [ -20.610352, 81.524751 ], [ -15.776367, 81.910828 ], [ -12.788086, 81.716859 ], [ -12.216797, 81.288376 ], [ -16.303711, 80.582539 ], [ -16.831055, 80.349631 ], [ -20.039062, 80.178713 ], [ -17.709961, 80.126102 ], [ -18.896484, 79.400085 ], [ -19.687500, 78.750659 ], [ -19.687500, 77.636542 ], [ -18.457031, 76.990046 ], [ -20.039062, 76.940488 ], [ -21.665039, 76.629067 ], [ -19.819336, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.654297, 75.152043 ], [ -19.379883, 74.295463 ], [ -21.577148, 74.223935 ], [ -20.434570, 73.812574 ], [ -20.742188, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.554688, 73.302624 ], [ -22.324219, 72.633374 ], [ -22.280273, 72.181804 ], [ -24.257812, 72.593979 ], [ -24.785156, 72.329130 ], [ -23.422852, 72.073911 ], [ -22.148438, 71.469124 ], [ -21.752930, 70.670881 ], [ -23.554688, 70.466207 ], [ -25.532227, 71.427179 ], [ -25.180664, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.125430 ], [ -25.048828, 69.256149 ], [ -27.729492, 68.463800 ], [ -30.673828, 68.122482 ], [ -31.772461, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.189453, 66.687784 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.946472 ], [ -39.814453, 65.458261 ], [ -40.649414, 64.848937 ], [ -40.693359, 64.129784 ], [ -41.176758, 63.489767 ], [ -42.802734, 62.674143 ], [ -42.407227, 61.897578 ], [ -43.374023, 60.108670 ], [ -44.780273, 60.042904 ], [ -46.274414, 60.844911 ], [ -48.251953, 60.866312 ], [ -49.218750, 61.396719 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.626745 ], [ -52.119141, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.657227, 66.107170 ], [ -53.305664, 66.843807 ], [ -53.964844, 67.187000 ], [ -52.998047, 68.350594 ], [ -51.459961, 68.736383 ], [ -51.064453, 69.146920 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.437500, 69.287257 ], [ -54.667969, 69.611206 ], [ -54.755859, 70.289117 ], [ -54.360352, 70.815812 ], [ -53.437500, 70.830248 ], [ -51.372070, 70.568803 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.649833 ], [ -54.711914, 72.580829 ], [ -55.327148, 72.958315 ], [ -57.304688, 74.706450 ], [ -58.579102, 75.095633 ], [ -58.579102, 75.519151 ], [ -61.259766, 76.100796 ], [ -63.413086, 76.174498 ], [ -66.049805, 76.132430 ], [ -68.510742, 76.058508 ], [ -69.653320, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.774414, 77.322168 ], [ -66.752930, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.168945, 78.429011 ], [ -69.389648, 78.912384 ], [ -65.698242, 79.391998 ], [ -65.302734, 79.757749 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.517603 ], [ -63.676758, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.666016, 81.767353 ], [ -60.292969, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.202302 ], [ -53.041992, 81.886056 ], [ -50.405273, 82.437205 ], [ -47.988281, 82.063963 ], [ -46.582031, 81.984696 ], [ -44.516602, 81.659685 ], [ -46.889648, 82.202302 ], [ -46.757812, 82.625695 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.179256 ], [ -38.627930, 83.549851 ], [ -35.068359, 83.642973 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.340820, 14.434680 ], [ -89.077148, 14.349548 ], [ -88.549805, 13.966054 ], [ -88.505859, 13.838080 ], [ -88.066406, 13.966054 ], [ -87.714844, 13.795406 ], [ -87.890625, 13.154376 ], [ -88.461914, 13.154376 ], [ -89.252930, 13.453737 ], [ -89.824219, 13.539201 ], [ -90.087891, 13.752725 ], [ -90.043945, 13.880746 ], [ -89.516602, 14.264383 ], [ -89.604492, 14.349548 ], [ -89.340820, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.584961, 9.622414 ], [ -79.013672, 9.535749 ], [ -79.057617, 9.449062 ], [ -78.486328, 9.405710 ], [ -78.046875, 9.232249 ], [ -77.343750, 8.667918 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.928675 ], [ -77.431641, 7.623887 ], [ -77.739258, 7.710992 ], [ -77.871094, 7.231699 ], [ -78.222656, 7.493196 ], [ -78.442383, 8.059230 ], [ -78.178711, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.618164, 8.711359 ], [ -79.101562, 9.015302 ], [ -79.541016, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.156250, 8.320212 ], [ -80.375977, 8.276727 ], [ -80.463867, 8.102739 ], [ -80.024414, 7.536764 ], [ -80.288086, 7.406048 ], [ -80.419922, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.798079 ], [ -81.210938, 7.667441 ], [ -81.518555, 7.710992 ], [ -81.738281, 8.102739 ], [ -82.133789, 8.189742 ], [ -82.397461, 8.276727 ], [ -82.836914, 8.276727 ], [ -82.836914, 8.059230 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.624472 ], [ -82.880859, 8.798225 ], [ -82.705078, 8.928487 ], [ -82.924805, 9.058702 ], [ -82.924805, 9.492408 ], [ -82.529297, 9.579084 ], [ -82.177734, 9.188870 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.694336, 9.015302 ], [ -81.430664, 8.798225 ], [ -80.947266, 8.841651 ], [ -80.507812, 9.102097 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.168945, 19.932041 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.186678 ], [ -71.718750, 18.771115 ], [ -71.938477, 18.604601 ], [ -71.674805, 18.312811 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.432617, 18.229351 ], [ -73.916016, 18.020528 ], [ -74.443359, 18.354526 ], [ -74.355469, 18.646245 ], [ -72.685547, 18.437925 ], [ -72.333984, 18.687879 ], [ -72.773438, 19.103648 ], [ -72.773438, 19.476950 ], [ -73.432617, 19.642588 ], [ -73.168945, 19.932041 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.783203, 18.521283 ], [ -76.904297, 18.396230 ], [ -76.376953, 18.145852 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.853290 ], [ -77.211914, 17.685895 ], [ -77.783203, 17.853290 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.437925 ], [ -77.783203, 18.521283 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.876465 ], [ -60.952148, 10.098670 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.655273, 10.358151 ], [ -61.699219, 10.746969 ], [ -61.083984, 10.876465 ], [ -60.908203, 10.876465 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.363693 ], [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.447266, 6.839170 ], [ -58.095703, 6.795535 ], [ -57.128906, 5.965754 ], [ -57.304688, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.875977, 4.565474 ], [ -58.051758, 4.039618 ], [ -57.612305, 3.337954 ], [ -57.260742, 3.337954 ], [ -57.128906, 2.767478 ], [ -56.557617, 1.889306 ], [ -56.777344, 1.845384 ], [ -57.348633, 1.933227 ], [ -57.656250, 1.669686 ], [ -58.095703, 1.493971 ], [ -58.447266, 1.450040 ], [ -58.535156, 1.274309 ], [ -59.018555, 1.318243 ], [ -59.633789, 1.801461 ], [ -59.721680, 2.240640 ], [ -59.985352, 2.767478 ], [ -59.809570, 3.601142 ], [ -59.545898, 3.951941 ], [ -59.765625, 4.434044 ], [ -60.117188, 4.565474 ], [ -59.985352, 5.003394 ], [ -60.205078, 5.266008 ], [ -60.732422, 5.178482 ], [ -61.391602, 5.965754 ], [ -61.127930, 6.227934 ], [ -61.171875, 6.708254 ], [ -60.556641, 6.839170 ], [ -60.292969, 7.057282 ], [ -60.644531, 7.406048 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.363693 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -14.501953, 66.460663 ], [ -14.721680, 65.802776 ], [ -13.623047, 65.127638 ], [ -14.897461, 64.358931 ], [ -18.676758, 63.489767 ], [ -22.763672, 63.956673 ], [ -21.796875, 64.396938 ], [ -23.950195, 64.886265 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.603878 ], [ -23.642578, 66.266856 ], [ -22.148438, 66.407955 ], [ -20.566406, 65.730626 ], [ -19.072266, 66.284537 ], [ -17.797852, 66.000150 ], [ -16.171875, 66.530768 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.739352 ], [ -6.767578, 43.580391 ], [ -5.405273, 43.580391 ], [ -4.350586, 43.389082 ], [ -3.515625, 43.452919 ], [ -1.889648, 43.421009 ], [ -1.494141, 43.036776 ], [ 0.000000, 42.650122 ], [ 0.351562, 42.585444 ], [ 0.703125, 42.811522 ], [ 1.845703, 42.358544 ], [ 2.988281, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.109375, 41.211722 ], [ 0.791016, 41.013066 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.111689 ], [ -0.263672, 39.300299 ], [ 0.000000, 38.891033 ], [ 0.131836, 38.754083 ], [ 0.000000, 38.651198 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.439974 ], [ -2.153320, 36.668419 ], [ -4.350586, 36.668419 ], [ -5.009766, 36.315125 ], [ -5.361328, 35.960223 ], [ -5.844727, 36.031332 ], [ -6.240234, 36.350527 ], [ -6.503906, 36.949892 ], [ -7.470703, 37.090240 ], [ -7.558594, 37.439974 ], [ -7.163086, 37.788081 ], [ -7.031250, 38.065392 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.027719 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.707187 ], [ -7.031250, 40.178873 ], [ -6.855469, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.372070, 41.376809 ], [ -6.679688, 41.869561 ], [ -7.250977, 41.902277 ], [ -7.426758, 41.804078 ], [ -7.998047, 41.804078 ], [ -8.261719, 42.293564 ], [ -8.657227, 42.130821 ], [ -9.052734, 41.869561 ], [ -8.964844, 42.585444 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.739352 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.185547, 35.746512 ], [ -4.570312, 35.317366 ], [ -3.647461, 35.389050 ], [ -2.592773, 35.173808 ], [ -2.153320, 35.173808 ], [ -1.801758, 34.524661 ], [ -1.713867, 33.906896 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.249974 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.647461, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.486551 ], [ -5.229492, 29.993002 ], [ -6.064453, 29.726222 ], [ -7.075195, 29.573457 ], [ -8.657227, 28.844674 ], [ -8.657227, 27.644606 ], [ -8.833008, 27.644606 ], [ -8.789062, 27.137368 ], [ -9.404297, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.546875, 26.980829 ], [ -11.381836, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.480469, 24.766785 ], [ -13.886719, 23.684774 ], [ -14.238281, 22.309426 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.493964 ], [ -17.006836, 21.412162 ], [ -16.962891, 21.902278 ], [ -16.567383, 22.146708 ], [ -16.259766, 22.674847 ], [ -16.347656, 22.998852 ], [ -15.996094, 23.725012 ], [ -15.424805, 24.367114 ], [ -15.073242, 24.527135 ], [ -14.809570, 25.085599 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.754883, 26.627818 ], [ -13.139648, 27.644606 ], [ -12.612305, 28.033198 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.916852 ], [ -9.799805, 31.165810 ], [ -9.448242, 32.026706 ], [ -9.316406, 32.546813 ], [ -8.657227, 33.247876 ], [ -7.646484, 33.687782 ], [ -6.899414, 34.125448 ], [ -6.240234, 35.137879 ], [ -5.932617, 35.746512 ], [ -5.185547, 35.746512 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.657227, 27.644606 ], [ -8.701172, 25.878994 ], [ -11.953125, 25.918526 ], [ -11.953125, 23.362429 ], [ -12.875977, 23.281719 ], [ -13.139648, 22.755921 ], [ -12.919922, 21.330315 ], [ -16.831055, 21.330315 ], [ -17.050781, 21.002471 ], [ -17.006836, 21.412162 ], [ -14.765625, 21.493964 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.309426 ], [ -13.886719, 23.684774 ], [ -12.480469, 24.766785 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.381836, 26.902477 ], [ -10.546875, 26.980829 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.404297, 27.098254 ], [ -8.789062, 27.137368 ], [ -8.833008, 27.644606 ], [ -8.657227, 27.644606 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.594081 ], [ -14.106445, 16.299051 ], [ -13.447266, 16.045813 ], [ -12.172852, 14.604847 ], [ -12.128906, 14.008696 ], [ -11.909180, 13.410994 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.513672, 12.425848 ], [ -11.645508, 12.382928 ], [ -12.216797, 12.468760 ], [ -12.260742, 12.340002 ], [ -12.480469, 12.340002 ], [ -13.227539, 12.554564 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.511665 ], [ -16.127930, 12.554564 ], [ -16.699219, 12.382928 ], [ -16.831055, 13.154376 ], [ -15.952148, 13.111580 ], [ -15.688477, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.496473 ], [ -14.721680, 13.282719 ], [ -14.282227, 13.282719 ], [ -13.842773, 13.496473 ], [ -14.062500, 13.795406 ], [ -14.370117, 13.624633 ], [ -14.677734, 13.624633 ], [ -15.073242, 13.880746 ], [ -15.380859, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.699219, 13.581921 ], [ -17.138672, 14.392118 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.902322 ], [ -16.699219, 15.623037 ], [ -16.479492, 16.130262 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.117188, 16.594081 ], [ -14.589844, 16.594081 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ], [ -13.710938, 12.254128 ], [ -13.842773, 12.125264 ], [ -13.754883, 11.824341 ], [ -13.886719, 11.695273 ], [ -14.106445, 11.695273 ], [ -14.370117, 11.523088 ], [ -14.677734, 11.523088 ], [ -15.117188, 11.049038 ], [ -15.644531, 11.436955 ], [ -16.083984, 11.523088 ], [ -16.303711, 11.824341 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.699219, 12.382928 ], [ -16.127930, 12.554564 ], [ -15.820312, 12.511665 ], [ -15.556641, 12.640338 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.597455 ], [ -13.227539, 12.554564 ], [ -12.480469, 12.340002 ], [ -12.260742, 12.340002 ], [ -12.216797, 12.468760 ], [ -11.645508, 12.382928 ], [ -11.513672, 12.425848 ], [ -11.469727, 12.082296 ], [ -11.293945, 12.082296 ], [ -11.030273, 12.211180 ], [ -10.854492, 12.168226 ], [ -10.590820, 11.910354 ], [ -10.151367, 11.824341 ], [ -9.887695, 12.039321 ], [ -9.316406, 12.340002 ], [ -9.140625, 12.297068 ], [ -8.920898, 12.082296 ], [ -8.789062, 11.824341 ], [ -8.393555, 11.393879 ], [ -8.569336, 11.135287 ], [ -8.613281, 10.790141 ], [ -8.393555, 10.919618 ], [ -8.261719, 10.790141 ], [ -8.349609, 10.487812 ], [ -8.041992, 10.185187 ], [ -8.217773, 10.141932 ], [ -8.305664, 9.795678 ], [ -8.085938, 9.362353 ], [ -7.822266, 8.581021 ], [ -8.217773, 8.450639 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.102739 ], [ -8.261719, 7.667441 ], [ -8.701172, 7.710992 ], [ -8.920898, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.316406, 7.928675 ], [ -9.755859, 8.537565 ], [ -10.019531, 8.407168 ], [ -10.502930, 8.363693 ], [ -10.502930, 8.711359 ], [ -10.634766, 8.971897 ], [ -10.634766, 9.275622 ], [ -11.118164, 10.055403 ], [ -11.909180, 10.055403 ], [ -12.128906, 9.838979 ], [ -12.436523, 9.838979 ], [ -12.700195, 9.362353 ], [ -13.227539, 8.885072 ], [ -13.666992, 9.492408 ], [ -14.062500, 9.882275 ], [ -14.589844, 10.228437 ], [ -14.677734, 10.660608 ], [ -14.853516, 10.876465 ], [ -15.117188, 11.049038 ], [ -14.677734, 11.523088 ], [ -14.370117, 11.523088 ], [ -14.106445, 11.695273 ], [ -13.886719, 11.695273 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.125264 ], [ -13.710938, 12.254128 ], [ -13.710938, 12.597455 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.114553 ], [ -0.263672, 14.944785 ], [ 0.395508, 14.944785 ], [ 0.307617, 14.434680 ], [ 0.439453, 14.008696 ], [ 1.010742, 13.325485 ], [ 1.010742, 12.854649 ], [ 2.197266, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.450195, 11.566144 ], [ 1.230469, 11.092166 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.005904 ], [ -0.439453, 11.092166 ], [ -0.747070, 10.919618 ], [ -1.186523, 11.005904 ], [ -2.944336, 10.962764 ], [ -2.944336, 10.401378 ], [ -2.812500, 9.622414 ], [ -3.515625, 9.882275 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.141932 ], [ -5.405273, 10.358151 ], [ -5.449219, 10.962764 ], [ -5.185547, 11.393879 ], [ -5.229492, 11.695273 ], [ -4.438477, 12.554564 ], [ -4.262695, 13.239945 ], [ -3.999023, 13.453737 ], [ -3.515625, 13.325485 ], [ -3.120117, 13.539201 ], [ -2.988281, 13.795406 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.054688, 14.987240 ], [ -0.527344, 15.114553 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.634766, 9.275622 ], [ -10.634766, 8.971897 ], [ -10.502930, 8.711359 ], [ -10.502930, 8.363693 ], [ -10.239258, 8.407168 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.100893 ], [ -11.425781, 6.795535 ], [ -11.689453, 6.839170 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.798079 ], [ -13.139648, 8.146243 ], [ -13.227539, 8.885072 ], [ -12.700195, 9.362353 ], [ -12.436523, 9.838979 ], [ -12.128906, 9.838979 ], [ -11.909180, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.837891, 1.362176 ], [ -77.871094, 0.790990 ], [ -77.651367, 0.834931 ], [ -77.431641, 0.395505 ], [ -76.596680, 0.263671 ], [ -76.289062, 0.395505 ], [ -75.629883, 0.000000 ], [ -75.366211, -0.131836 ], [ -75.234375, -0.922812 ], [ -75.541992, -1.581830 ], [ -76.640625, -2.591889 ], [ -77.827148, -2.986927 ], [ -78.178711, -3.513421 ], [ -80.288086, -3.513421 ], [ -80.288086, -3.425692 ], [ -79.760742, -2.635789 ], [ -79.980469, -2.240640 ], [ -80.375977, -2.679687 ], [ -80.947266, -2.240640 ], [ -80.771484, -1.977147 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.922812 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.112305, 0.747049 ], [ -79.541016, 0.966751 ], [ -78.837891, 1.362176 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.425848 ], [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.323242, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.092166 ], [ -72.597656, 10.833306 ], [ -72.905273, 10.444598 ], [ -73.037109, 9.752370 ], [ -73.300781, 9.145486 ], [ -72.773438, 9.102097 ], [ -72.641602, 8.624472 ], [ -72.421875, 8.407168 ], [ -72.377930, 8.015716 ], [ -72.465820, 7.623887 ], [ -72.465820, 7.406048 ], [ -72.202148, 7.318882 ], [ -71.938477, 6.970049 ], [ -70.664062, 7.100893 ], [ -70.092773, 6.970049 ], [ -69.389648, 6.096860 ], [ -68.994141, 6.227934 ], [ -68.247070, 6.140555 ], [ -67.675781, 6.271618 ], [ -67.324219, 6.096860 ], [ -67.500000, 5.572250 ], [ -67.763672, 5.222247 ], [ -67.807617, 4.521666 ], [ -67.631836, 3.820408 ], [ -67.324219, 3.557283 ], [ -67.324219, 3.337954 ], [ -67.807617, 2.811371 ], [ -67.456055, 2.591889 ], [ -67.192383, 2.240640 ], [ -66.884766, 1.274309 ], [ -67.060547, 1.142502 ], [ -67.280273, 1.713612 ], [ -67.543945, 2.021065 ], [ -67.851562, 1.713612 ], [ -69.829102, 1.713612 ], [ -69.785156, 1.098565 ], [ -69.213867, 0.966751 ], [ -69.257812, 0.615223 ], [ -69.433594, 0.703107 ], [ -70.004883, 0.527336 ], [ -70.004883, -0.175781 ], [ -69.565430, -0.571280 ], [ -69.433594, -1.142502 ], [ -69.785156, -3.513421 ], [ -70.532227, -3.513421 ], [ -70.048828, -2.723583 ], [ -70.795898, -2.240640 ], [ -71.411133, -2.328460 ], [ -71.762695, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.328460 ], [ -73.652344, -1.274309 ], [ -74.135742, -1.010690 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.043945 ], [ -75.366211, -0.131836 ], [ -75.629883, 0.000000 ], [ -76.289062, 0.395505 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.395505 ], [ -77.651367, 0.834931 ], [ -77.871094, 0.790990 ], [ -78.837891, 1.362176 ], [ -78.969727, 1.669686 ], [ -78.618164, 1.757537 ], [ -78.662109, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.915039, 2.679687 ], [ -77.124023, 3.864255 ], [ -77.475586, 4.083453 ], [ -77.299805, 4.653080 ], [ -77.519531, 5.572250 ], [ -77.299805, 5.834616 ], [ -77.475586, 6.708254 ], [ -77.871094, 7.231699 ], [ -77.739258, 7.710992 ], [ -77.431641, 7.623887 ], [ -77.255859, 7.928675 ], [ -77.475586, 8.537565 ], [ -77.343750, 8.667918 ], [ -76.816406, 8.624472 ], [ -76.069336, 9.318990 ], [ -75.673828, 9.449062 ], [ -75.673828, 9.752370 ], [ -75.498047, 10.617418 ], [ -74.926758, 11.092166 ], [ -74.267578, 11.092166 ], [ -74.179688, 11.307708 ], [ -73.432617, 11.221510 ], [ -72.246094, 11.953349 ], [ -71.762695, 12.425848 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.454007 ], [ 3.515625, 51.316881 ], [ 3.295898, 51.344339 ], [ 3.515625, 51.454007 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.288086, -3.425692 ], [ -80.288086, -3.513421 ], [ -80.419922, -3.513421 ], [ -80.288086, -3.425692 ] ] ], [ [ [ -78.178711, -3.513421 ], [ -77.827148, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.541992, -1.581830 ], [ -75.234375, -0.922812 ], [ -75.366211, -0.131836 ], [ -75.102539, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -1.010690 ], [ -73.652344, -1.274309 ], [ -73.081055, -2.328460 ], [ -72.333984, -2.416276 ], [ -71.762695, -2.152814 ], [ -71.411133, -2.328460 ], [ -70.795898, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.532227, -3.513421 ], [ -78.178711, -3.513421 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.747174 ], [ -52.866211, 5.397273 ], [ -51.811523, 4.565474 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.504085 ], [ -52.954102, 2.108899 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.328460 ], [ -53.789062, 2.372369 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.723583 ], [ -54.184570, 3.206333 ], [ -54.008789, 3.601142 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.747174 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.792047 ], [ 3.120117, 50.792047 ], [ 3.515625, 50.429518 ], [ 3.515625, 43.165123 ], [ 3.120117, 43.068888 ], [ 2.988281, 42.488302 ], [ 1.845703, 42.358544 ], [ 0.703125, 42.811522 ], [ 0.351562, 42.585444 ], [ 0.000000, 42.650122 ], [ -1.494141, 43.036776 ], [ -1.889648, 43.421009 ], [ -1.362305, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.241211, 47.070122 ], [ -2.944336, 47.576526 ], [ -4.482422, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.893615 ], [ -1.625977, 48.632909 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.667628 ], [ 1.318359, 50.120578 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 36.809285 ], [ 3.515625, 19.103648 ], [ 3.164062, 19.062118 ], [ 3.164062, 19.683970 ], [ 2.065430, 20.138470 ], [ 1.801758, 20.591652 ], [ 0.000000, 21.779905 ], [ -8.701172, 27.410786 ], [ -8.657227, 28.844674 ], [ -7.075195, 29.573457 ], [ -6.064453, 29.726222 ], [ -5.229492, 29.993002 ], [ -4.877930, 30.486551 ], [ -3.691406, 30.902225 ], [ -3.647461, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.249974 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.713867, 33.906896 ], [ -1.801758, 34.524661 ], [ -2.153320, 35.173808 ], [ -1.230469, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.960223 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.597889 ], [ 3.515625, 36.809285 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.856445, 12.254128 ], [ 3.515625, 11.738302 ], [ 3.515625, 9.838979 ], [ 2.900391, 9.145486 ], [ 2.724609, 8.494105 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.140555 ], [ 1.625977, 6.839170 ], [ 1.669922, 9.145486 ], [ 1.450195, 9.318990 ], [ 1.406250, 9.838979 ], [ 0.791016, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.092166 ], [ 1.450195, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.504883, 12.254128 ], [ 2.856445, 12.254128 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.791016, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.318990 ], [ 1.669922, 9.145486 ], [ 1.625977, 6.839170 ], [ 1.845703, 6.140555 ], [ 1.054688, 5.922045 ], [ 0.571289, 6.926427 ], [ 0.483398, 7.406048 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.667918 ], [ 0.351562, 9.449062 ], [ 0.351562, 10.185187 ], [ 0.000000, 10.660608 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.043945, 11.005904 ], [ 0.878906, 11.005904 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 68.958391 ], [ -177.539062, 68.204212 ], [ -174.946289, 67.204032 ], [ -175.034180, 66.583217 ], [ -174.331055, 66.337505 ], [ -174.550781, 67.067433 ], [ -171.870117, 66.912834 ], [ -169.892578, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.529297, 65.440002 ], [ -172.573242, 64.453849 ], [ -172.968750, 64.244595 ], [ -173.891602, 64.282760 ], [ -174.638672, 64.623877 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.348514 ], [ -177.231445, 65.512963 ], [ -178.374023, 65.385147 ], [ -178.901367, 65.748683 ], [ -178.681641, 66.107170 ], [ -179.868164, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -181.274414, 64.529548 ], [ -182.592773, 64.605038 ], [ -181.669922, 64.072200 ], [ -181.098633, 63.253412 ], [ -180.615234, 62.975198 ], [ -180.527344, 62.573106 ], [ -180.791016, 62.308794 ], [ -182.636719, 62.512318 ], [ -183.515625, 62.288365 ], [ -183.515625, 69.748551 ], [ -181.406250, 69.395783 ], [ -180.000000, 68.958391 ] ] ], [ [ [ -180.000000, 71.510978 ], [ -179.868164, 71.552741 ], [ -179.033203, 71.552741 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.130988 ], [ -178.681641, 70.887885 ], [ -180.000000, 70.830248 ], [ -181.098633, 70.786910 ], [ -181.274414, 71.102543 ], [ -180.000000, 71.510978 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.005904 ], [ 0.043945, 11.005904 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.185187 ], [ 0.351562, 9.449062 ], [ 0.439453, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.926427 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.527344, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.977539, 4.696879 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.362467 ], [ -2.548828, 8.233237 ], [ -2.944336, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.186523, 11.005904 ], [ -0.747070, 10.919618 ], [ -0.439453, 11.092166 ] ] ] } } ] } ] } , @@ -122,18 +110,12 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.292969, 3.513421 ], [ 15.424805, 3.337954 ], [ 15.864258, 3.030812 ], [ 15.908203, 2.547988 ], [ 15.996094, 2.284551 ], [ 15.952148, 1.713612 ], [ 14.326172, 2.240640 ], [ 13.095703, 2.284551 ], [ 12.963867, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.293945, 2.240640 ], [ 9.667969, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.536133, 3.513421 ], [ 15.292969, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.638672, 3.513421 ], [ 39.550781, 3.425692 ], [ 38.847656, 3.513421 ], [ 39.638672, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.620117, 3.513421 ], [ 115.532227, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.609375, 1.450040 ], [ 113.818359, 1.230374 ], [ 112.851562, 1.493971 ], [ 112.368164, 1.406109 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.966751 ], [ 110.522461, 0.790990 ], [ 109.819336, 1.318243 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.357422, 2.679687 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.378906, 3.513421 ], [ 115.620117, 3.513421 ] ] ], [ [ [ 103.403320, 3.513421 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.504085 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.274309 ], [ 103.535156, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.293945, 3.250209 ], [ 101.074219, 3.513421 ], [ 103.403320, 3.513421 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.347656, -5.878332 ], [ 16.567383, -6.620957 ], [ 16.875000, -7.231699 ], [ 17.490234, -8.059230 ], [ 18.149414, -7.972198 ], [ 18.457031, -7.841615 ], [ 19.028320, -7.972198 ], [ 19.423828, -7.144499 ], [ 20.039062, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.610352, -6.926427 ], [ 20.522461, -7.318882 ], [ 21.708984, -7.275292 ], [ 21.752930, -7.928675 ], [ 21.928711, -8.320212 ], [ 21.796875, -8.928487 ], [ 21.884766, -9.535749 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.092166 ], [ 22.412109, -11.005904 ], [ 22.851562, -11.005904 ], [ 23.466797, -10.876465 ], [ 23.906250, -10.919618 ], [ 24.038086, -11.221510 ], [ 23.906250, -11.738302 ], [ 24.082031, -12.211180 ], [ 23.950195, -12.554564 ], [ 24.038086, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.088042 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.936929 ], [ 18.940430, -17.769612 ], [ 18.281250, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.062500, -17.434511 ], [ 13.447266, -16.972741 ], [ 12.832031, -16.930705 ], [ 11.733398, -17.308688 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.744141, -13.154376 ], [ 13.623047, -12.039321 ], [ 13.754883, -11.307708 ], [ 13.666992, -10.746969 ], [ 13.403320, -10.358151 ], [ 12.875977, -9.145486 ], [ 12.919922, -8.971897 ], [ 13.227539, -8.581021 ], [ 12.744141, -6.926427 ], [ 12.216797, -6.315299 ], [ 12.304688, -6.096860 ], [ 13.359375, -5.878332 ], [ 16.347656, -5.878332 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 13.007812, -4.784469 ], [ 12.612305, -5.003394 ], [ 12.480469, -5.266008 ], [ 12.436523, -5.703448 ], [ 12.172852, -5.790897 ], [ 11.909180, -5.047171 ], [ 12.304688, -4.609278 ], [ 12.612305, -4.434044 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.849609, 3.513421 ], [ 30.761719, 2.328460 ], [ 31.157227, 2.196727 ], [ 30.849609, 1.845384 ], [ 30.454102, 1.581830 ], [ 30.102539, 1.054628 ], [ 29.882812, 0.615223 ], [ 29.838867, 0.000000 ], [ 29.838867, -0.219726 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.362176 ], [ 29.311523, -1.625758 ], [ 29.267578, -2.196727 ], [ 29.135742, -2.284551 ], [ 29.003906, -2.855263 ], [ 29.267578, -3.294082 ], [ 29.355469, -4.521666 ], [ 29.531250, -5.441022 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.533645 ], [ 30.190430, -7.100893 ], [ 30.761719, -8.320212 ], [ 30.366211, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.537565 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.622414 ], [ 28.388672, -11.781325 ], [ 29.355469, -12.340002 ], [ 29.619141, -12.168226 ], [ 29.707031, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.168945, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.609193 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.350797 ], [ 24.785156, -11.221510 ], [ 24.301758, -11.264612 ], [ 24.257812, -10.962764 ], [ 23.466797, -10.876465 ], [ 22.851562, -11.005904 ], [ 22.412109, -11.005904 ], [ 22.148438, -11.092166 ], [ 22.192383, -9.882275 ], [ 21.884766, -9.535749 ], [ 21.796875, -8.928487 ], [ 21.928711, -8.320212 ], [ 21.752930, -7.928675 ], [ 21.708984, -7.275292 ], [ 20.522461, -7.318882 ], [ 20.610352, -6.926427 ], [ 20.083008, -6.926427 ], [ 20.039062, -7.100893 ], [ 19.423828, -7.144499 ], [ 19.028320, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.149414, -7.972198 ], [ 17.490234, -8.059230 ], [ 16.875000, -7.231699 ], [ 16.567383, -6.620957 ], [ 16.347656, -5.878332 ], [ 13.359375, -5.878332 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.790897 ], [ 12.436523, -5.703448 ], [ 12.480469, -5.266008 ], [ 12.612305, -5.003394 ], [ 13.007812, -4.784469 ], [ 13.271484, -4.872048 ], [ 13.579102, -4.521666 ], [ 14.150391, -4.521666 ], [ 14.194336, -4.784469 ], [ 14.589844, -4.959615 ], [ 15.161133, -4.346411 ], [ 15.732422, -3.864255 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.723583 ], [ 16.391602, -1.757537 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.709961, 0.000000 ], [ 17.841797, 0.307616 ], [ 17.753906, 0.834931 ], [ 17.885742, 1.757537 ], [ 18.105469, 2.372369 ], [ 18.413086, 2.899153 ], [ 18.457031, 3.513421 ], [ 30.849609, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.142502 ], [ 30.805664, -1.713612 ], [ 30.761719, -2.284551 ], [ 30.454102, -2.416276 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.855263 ], [ 29.135742, -2.284551 ], [ 29.267578, -2.196727 ], [ 29.311523, -1.625758 ], [ 29.575195, -1.362176 ], [ 29.838867, -1.450040 ], [ 30.410156, -1.142502 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "name_sort": "Burundi", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.416276 ], [ 30.541992, -2.811371 ], [ 30.761719, -3.030812 ], [ 30.761719, -3.337954 ], [ 29.750977, -4.434044 ], [ 29.355469, -4.521666 ], [ 29.267578, -3.294082 ], [ 29.003906, -2.855263 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.366211, -8.233237 ], [ 30.761719, -8.320212 ], [ 31.552734, -8.754795 ], [ 32.211914, -8.928487 ], [ 32.739258, -9.232249 ], [ 33.222656, -9.665738 ], [ 33.486328, -10.531020 ], [ 33.310547, -10.790141 ], [ 33.134766, -11.609193 ], [ 33.310547, -12.425848 ], [ 33.002930, -12.768946 ], [ 32.695312, -13.710035 ], [ 33.222656, -13.966054 ], [ 30.190430, -14.774883 ], [ 30.278320, -15.496032 ], [ 29.531250, -15.665354 ], [ 28.959961, -16.045813 ], [ 28.828125, -16.383391 ], [ 28.476562, -16.467695 ], [ 27.597656, -17.308688 ], [ 27.026367, -17.936929 ], [ 26.718750, -17.978733 ], [ 26.367188, -17.853290 ], [ 25.268555, -17.727759 ], [ 24.697266, -17.350638 ], [ 24.038086, -17.308688 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.088042 ], [ 21.928711, -12.897489 ], [ 24.038086, -12.897489 ], [ 23.950195, -12.554564 ], [ 24.082031, -12.211180 ], [ 23.906250, -11.738302 ], [ 24.038086, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.257812, -10.962764 ], [ 24.301758, -11.264612 ], [ 24.785156, -11.221510 ], [ 25.400391, -11.350797 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.609193 ], [ 27.377930, -12.125264 ], [ 28.168945, -12.254128 ], [ 28.916016, -13.239945 ], [ 29.707031, -13.239945 ], [ 29.619141, -12.168226 ], [ 29.355469, -12.340002 ], [ 28.388672, -11.781325 ], [ 28.652344, -9.622414 ], [ 28.432617, -9.145486 ], [ 28.740234, -8.537565 ], [ 29.003906, -8.407168 ], [ 30.366211, -8.233237 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.278320, -15.496032 ], [ 30.322266, -15.876809 ], [ 31.157227, -15.876809 ], [ 31.640625, -16.088042 ], [ 31.860352, -16.299051 ], [ 32.343750, -16.383391 ], [ 32.827148, -16.720385 ], [ 32.871094, -17.978733 ], [ 32.651367, -18.687879 ], [ 32.607422, -19.435514 ], [ 32.783203, -19.725342 ], [ 32.651367, -20.303418 ], [ 32.519531, -20.385825 ], [ 32.255859, -21.125498 ], [ 31.201172, -22.268764 ], [ 30.673828, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.105999 ], [ 29.443359, -22.105999 ], [ 28.784180, -21.657428 ], [ 28.037109, -21.493964 ], [ 27.729492, -20.838278 ], [ 27.729492, -20.509355 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.311143 ], [ 25.839844, -18.729502 ], [ 25.664062, -18.521283 ], [ 25.268555, -17.727759 ], [ 26.367188, -17.853290 ], [ 26.718750, -17.978733 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.308688 ], [ 28.476562, -16.467695 ], [ 28.828125, -16.383391 ], [ 28.959961, -16.045813 ], [ 29.531250, -15.665354 ], [ 30.278320, -15.496032 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.528320, 3.513421 ], [ 41.000977, 2.767478 ], [ 41.000977, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.649414, -2.504085 ], [ 40.253906, -2.591889 ], [ 40.122070, -3.294082 ], [ 39.814453, -3.688855 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.696879 ], [ 37.749023, -3.688855 ], [ 37.705078, -3.118576 ], [ 33.881836, -0.966751 ], [ 33.881836, 0.087891 ], [ 34.672852, 1.186439 ], [ 35.024414, 1.889306 ], [ 34.584961, 3.074695 ], [ 34.497070, 3.513421 ], [ 38.847656, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.638672, 3.513421 ], [ 41.528320, 3.513421 ] ] ] } } @@ -142,15 +124,15 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ], [ 32.080078, -26.745610 ], [ 31.860352, -27.176469 ], [ 31.289062, -27.293689 ], [ 30.673828, -26.745610 ], [ 30.673828, -26.391870 ], [ 30.937500, -26.037042 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.950195, -48.632909 ], [ 69.565430, -48.951366 ], [ 70.532227, -49.066668 ], [ 70.576172, -49.267805 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.781264 ], [ 68.730469, -49.239121 ], [ 68.950195, -48.632909 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.520508, -28.652031 ], [ 29.311523, -29.267233 ], [ 28.828125, -30.069094 ], [ 28.300781, -30.221102 ], [ 28.125000, -30.562261 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.878755 ], [ 27.553711, -29.228890 ], [ 28.081055, -28.844674 ], [ 28.520508, -28.652031 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.958008, -8.276727 ], [ 127.353516, -8.407168 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.405710 ], [ 125.068359, -9.102097 ], [ 124.980469, -8.885072 ], [ 125.068359, -8.667918 ], [ 125.947266, -8.450639 ], [ 126.650391, -8.407168 ], [ 126.958008, -8.276727 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.980469, -8.885072 ], [ 125.068359, -9.102097 ], [ 125.068359, -9.405710 ], [ 124.453125, -10.141932 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.980469, -8.885072 ] ] ], [ [ [ 119.882812, -9.362353 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.717773, -10.228437 ], [ 120.278320, -10.271681 ], [ 118.959961, -9.579084 ], [ 119.882812, -9.362353 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.989258, -0.790990 ], [ 134.165039, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.439453, -3.381824 ], [ 136.274414, -2.328460 ], [ 137.460938, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.921875, -2.416276 ], [ 141.020508, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.130859, -8.102739 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.427734, -6.227934 ], [ 137.944336, -5.397273 ], [ 136.010742, -4.565474 ], [ 135.175781, -4.477856 ], [ 133.681641, -3.557283 ], [ 133.374023, -4.039618 ], [ 132.978516, -4.127285 ], [ 132.758789, -3.732708 ], [ 132.758789, -3.294082 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.625758 ], [ 130.957031, -1.450040 ], [ 130.517578, -0.922812 ], [ 131.879883, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.256836, -8.363693 ], [ 118.872070, -8.276727 ], [ 119.135742, -8.711359 ], [ 117.290039, -9.058702 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.641602, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 122.915039, -8.102739 ], [ 122.739258, -8.667918 ], [ 121.245117, -8.928487 ], [ 119.926758, -8.798225 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.233237 ], [ 121.333008, -8.537565 ], [ 121.992188, -8.450639 ], [ 122.915039, -8.102739 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.270508, -5.965754 ], [ 108.061523, -6.358975 ], [ 108.500977, -6.402648 ], [ 108.632812, -6.795535 ], [ 110.522461, -6.882800 ], [ 110.742188, -6.446318 ], [ 112.631836, -6.926427 ], [ 112.983398, -7.580328 ], [ 114.477539, -7.798079 ], [ 115.708008, -8.363693 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.363693 ], [ 112.543945, -8.363693 ], [ 111.533203, -8.320212 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.754537 ], [ 108.676758, -7.623887 ], [ 108.281250, -7.754537 ], [ 106.435547, -7.362467 ], [ 106.259766, -6.926427 ], [ 105.380859, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 117.509766, 3.513421 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.922812 ], [ 117.817383, 0.790990 ], [ 117.465820, 0.087891 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.504085 ], [ 116.147461, -3.995781 ], [ 116.015625, -3.645000 ], [ 114.873047, -4.127285 ], [ 114.477539, -3.513421 ], [ 113.774414, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.030812 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.581830 ], [ 109.555664, -1.318243 ], [ 109.072266, -0.439449 ], [ 109.028320, 0.000000 ], [ 108.940430, 0.395505 ], [ 109.072266, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.318243 ], [ 110.522461, 0.790990 ], [ 111.137695, 0.966751 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.136719, 2.811371 ], [ 115.532227, 3.162456 ], [ 115.620117, 3.513421 ], [ 117.509766, 3.513421 ] ] ], [ [ [ 99.228516, 3.513421 ], [ 99.711914, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.064982 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.571280 ], [ 103.842773, 0.087891 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.801461 ], [ 104.897461, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.127930, -3.074695 ], [ 105.864258, -4.302591 ], [ 105.820312, -5.834616 ], [ 104.721680, -5.878332 ], [ 103.886719, -5.047171 ], [ 102.568359, -4.214943 ], [ 102.172852, -3.601142 ], [ 101.381836, -2.811371 ], [ 100.898438, -2.064982 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.294082 ], [ 96.899414, 3.513421 ], [ 99.228516, 3.513421 ] ] ], [ [ [ 134.516602, -5.441022 ], [ 134.736328, -5.747174 ], [ 134.736328, -6.227934 ], [ 134.208984, -6.882800 ], [ 134.121094, -6.140555 ], [ 134.516602, -5.441022 ] ] ], [ [ [ 125.068359, 1.625758 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.706055, 0.219726 ], [ 122.739258, 0.439449 ], [ 121.069336, 0.395505 ], [ 120.190430, 0.219726 ], [ 120.146484, 0.000000 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.354492, -0.615223 ], [ 123.266602, -1.054628 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.537901 ], [ 121.508789, -1.889306 ], [ 122.475586, -3.206333 ], [ 122.255859, -3.513421 ], [ 123.178711, -4.696879 ], [ 123.178711, -5.353521 ], [ 122.607422, -5.615986 ], [ 122.255859, -5.266008 ], [ 122.739258, -4.477856 ], [ 121.728516, -4.872048 ], [ 121.508789, -4.565474 ], [ 121.640625, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.981445, -2.635789 ], [ 120.322266, -2.943041 ], [ 120.410156, -5.528511 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.397273 ], [ 119.663086, -4.477856 ], [ 119.487305, -3.513421 ], [ 119.091797, -3.469557 ], [ 118.784180, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.311523, -1.362176 ], [ 119.794922, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.684570, 1.010690 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.068359, 1.625758 ] ] ], [ [ [ 127.924805, 2.152814 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.351560 ], [ 128.012695, 0.000000 ], [ 127.968750, -0.263671 ], [ 128.364258, -0.790990 ], [ 128.100586, -0.878872 ], [ 127.705078, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.617188, 1.801461 ], [ 127.924805, 2.152814 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.074695 ], [ 130.825195, -3.864255 ], [ 129.990234, -3.425692 ], [ 129.155273, -3.381824 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 127.001953, -3.118576 ], [ 127.265625, -3.469557 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.991211, -3.162456 ], [ 127.001953, -3.118576 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.020508, -2.591889 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.810547, -4.872048 ], [ 145.986328, -5.484768 ], [ 147.656250, -6.096860 ], [ 147.875977, -6.620957 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.406048 ], [ 148.095703, -8.059230 ], [ 148.754883, -9.102097 ], [ 149.326172, -9.058702 ], [ 149.282227, -9.535749 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.882275 ], [ 150.820312, -10.314919 ], [ 150.688477, -10.574222 ], [ 150.029297, -10.660608 ], [ 149.765625, -10.401378 ], [ 147.919922, -10.141932 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.755859, -7.623887 ], [ 143.876953, -7.928675 ], [ 143.305664, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.646484, -9.318990 ], [ 142.075195, -9.145486 ], [ 141.020508, -9.102097 ], [ 141.020508, -2.591889 ] ] ], [ [ [ 152.138672, -4.127285 ], [ 152.358398, -4.302591 ], [ 152.314453, -4.872048 ], [ 151.962891, -5.484768 ], [ 151.479492, -5.572250 ], [ 151.303711, -5.834616 ], [ 150.249023, -6.315299 ], [ 149.721680, -6.315299 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.282227, -5.572250 ], [ 149.853516, -5.484768 ], [ 149.985352, -5.047171 ], [ 150.161133, -5.003394 ], [ 150.249023, -5.528511 ], [ 150.820312, -5.441022 ], [ 151.083984, -5.134715 ], [ 151.655273, -4.740675 ], [ 151.523438, -4.171115 ], [ 152.138672, -4.127285 ] ] ], [ [ [ 154.643555, -5.047171 ], [ 154.775391, -5.353521 ], [ 155.083008, -5.572250 ], [ 155.566406, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.839170 ], [ 155.610352, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.922045 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.047171 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 152.226562, -3.250209 ], [ 153.017578, -3.995781 ], [ 153.149414, -4.521666 ], [ 152.841797, -4.784469 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.391602, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.952148, -2.504085 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.958008, -8.276727 ], [ 127.353516, -8.407168 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.405710 ], [ 125.068359, -9.102097 ], [ 124.980469, -8.885072 ], [ 125.068359, -8.667918 ], [ 125.947266, -8.450639 ], [ 126.650391, -8.407168 ], [ 126.958008, -8.276727 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.876809 ], [ 167.827148, -16.467695 ], [ 167.519531, -16.594081 ], [ 167.167969, -16.172473 ], [ 167.211914, -15.876809 ] ] ], [ [ [ 166.640625, -14.647368 ], [ 167.124023, -14.944785 ], [ 167.255859, -15.749963 ], [ 166.992188, -15.623037 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.411319 ], [ 166.640625, -14.647368 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.323242, -10.185187 ], [ 162.114258, -10.487812 ], [ 162.377930, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.323242, -10.185187 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.405710 ], [ 160.708008, -9.622414 ], [ 160.839844, -9.882275 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.795678 ], [ 159.653320, -9.622414 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.927734, -8.320212 ], [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.542969, -9.795678 ], [ 160.795898, -8.928487 ], [ 160.576172, -8.320212 ], [ 160.927734, -8.320212 ] ] ], [ [ [ 158.378906, -7.318882 ], [ 159.653320, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.102739 ], [ 158.203125, -7.406048 ], [ 158.378906, -7.318882 ] ] ], [ [ [ 156.533203, -6.620957 ], [ 157.543945, -7.362467 ], [ 157.324219, -7.406048 ], [ 156.884766, -7.188101 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.620957 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.374023, -17.350638 ], [ 178.725586, -17.644022 ], [ 178.549805, -18.145852 ], [ 177.934570, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.727759 ], [ 177.670898, -17.392579 ], [ 178.110352, -17.518344 ], [ 178.374023, -17.350638 ] ] ], [ [ [ 180.000000, -16.088042 ], [ 180.219727, -16.003576 ], [ 180.087891, -16.509833 ], [ 180.000000, -16.551962 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.428711, -16.383391 ], [ 180.000000, -16.088042 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.480381 ], [ 173.232422, -41.343825 ], [ 173.979492, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.771312 ], [ 173.232422, -42.972502 ], [ 172.705078, -43.357138 ], [ 173.100586, -43.866218 ], [ 172.309570, -43.866218 ], [ 171.474609, -44.245199 ], [ 171.166992, -44.902578 ], [ 170.595703, -45.920587 ], [ 169.321289, -46.649436 ], [ 168.398438, -46.619261 ], [ 167.783203, -46.286224 ], [ 166.684570, -46.225453 ], [ 166.508789, -45.859412 ], [ 167.036133, -45.120053 ], [ 168.310547, -44.119142 ], [ 168.969727, -43.929550 ], [ 170.507812, -43.036776 ], [ 171.123047, -42.520700 ], [ 171.562500, -41.771312 ], [ 171.958008, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ] ] ], [ [ [ 173.012695, -34.452218 ], [ 173.540039, -34.994004 ], [ 174.331055, -35.281501 ], [ 174.594727, -36.173357 ], [ 175.341797, -37.195331 ], [ 175.341797, -36.527295 ], [ 175.825195, -36.809285 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.892196 ], [ 177.451172, -37.961523 ], [ 178.022461, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.286133, -38.582526 ], [ 177.978516, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.011719, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.253906, -41.672912 ], [ 175.078125, -41.409776 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.902344, -39.909736 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.130060 ], [ 174.594727, -38.788345 ], [ 174.726562, -38.030786 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.331055, -36.527295 ], [ 173.847656, -36.137875 ], [ 173.056641, -35.245619 ], [ 172.617188, -34.524661 ], [ 173.012695, -34.452218 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.087891, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.186523, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.947274 ], [ 138.603516, -66.895596 ], [ 139.921875, -66.878345 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.843807 ], [ 145.502930, -66.912834 ], [ 146.206055, -67.221053 ], [ 145.986328, -67.609221 ], [ 146.645508, -67.892086 ], [ 148.842773, -68.382996 ], [ 151.479492, -68.720441 ], [ 152.490234, -68.879358 ], [ 153.632812, -68.895187 ], [ 154.291992, -68.560384 ], [ 155.170898, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.229744 ], [ 161.586914, -70.583418 ], [ 162.685547, -70.743478 ], [ 163.828125, -70.714471 ], [ 164.926758, -70.772443 ], [ 166.113281, -70.757966 ], [ 167.299805, -70.830248 ], [ 168.442383, -70.974028 ], [ 169.453125, -71.201920 ], [ 170.507812, -71.399165 ], [ 171.210938, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.387695, -74.164085 ], [ 166.113281, -74.378513 ], [ 165.629883, -74.775843 ], [ 164.970703, -75.140778 ], [ 164.223633, -75.464105 ], [ 163.828125, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.476562, -76.689906 ], [ 163.476562, -77.068954 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.832589 ], [ 164.750977, -78.179588 ], [ 166.596680, -78.322757 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.163075 ], [ 160.927734, -79.734281 ], [ 160.751953, -80.201176 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.281717 ], [ 161.630859, -81.691497 ], [ 162.509766, -82.063963 ], [ 163.696289, -82.396611 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.409180, -83.825220 ], [ 172.265625, -84.043447 ], [ 173.232422, -84.414502 ], [ 176.000977, -84.160849 ], [ 178.286133, -84.474065 ], [ 180.000000, -84.714152 ], [ 180.043945, -84.722243 ], [ 180.922852, -84.138452 ], [ 182.724609, -84.452865 ], [ 183.515625, -84.223108 ], [ 183.515625, -85.345325 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 4.130859, -70.859087 ], [ 5.141602, -70.612614 ], [ 6.284180, -70.466207 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.900118 ], [ 8.481445, -70.155288 ], [ 9.536133, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.641769 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.975493 ], [ 14.721680, -70.035597 ], [ 15.117188, -70.407348 ], [ 15.952148, -70.035597 ], [ 17.006836, -69.915214 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.900118 ], [ 20.390625, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.928711, -70.407348 ], [ 22.587891, -70.699951 ], [ 23.686523, -70.524897 ], [ 24.829102, -70.480896 ], [ 27.114258, -70.466207 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.981445, -69.763757 ], [ 31.992188, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.310547, -68.831802 ], [ 33.881836, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.166992, -69.240579 ], [ 37.221680, -69.162558 ], [ 37.924805, -69.519147 ], [ 38.627930, -69.778952 ], [ 39.682617, -69.534518 ], [ 40.034180, -69.115611 ], [ 40.913086, -68.926811 ], [ 41.967773, -68.608521 ], [ 44.121094, -68.269387 ], [ 46.494141, -67.609221 ], [ 47.460938, -67.726108 ], [ 48.999023, -67.084550 ], [ 49.921875, -67.118748 ], [ 50.756836, -66.878345 ], [ 50.932617, -66.530768 ], [ 51.811523, -66.249163 ], [ 52.602539, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ], [ 56.337891, -65.982270 ], [ 57.172852, -66.249163 ], [ 57.260742, -66.687784 ], [ 58.139648, -67.016009 ], [ 58.754883, -67.289015 ], [ 59.941406, -67.407487 ], [ 60.600586, -67.676085 ], [ 61.435547, -67.958148 ], [ 62.402344, -68.007571 ], [ 63.193359, -67.809245 ], [ 64.072266, -67.407487 ], [ 64.995117, -67.625954 ], [ 66.928711, -67.858985 ], [ 67.895508, -67.941650 ], [ 68.906250, -67.941650 ], [ 69.697266, -68.974164 ], [ 69.653320, -69.224997 ], [ 69.565430, -69.672358 ], [ 68.598633, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.699951 ], [ 69.082031, -70.670881 ], [ 68.950195, -71.074056 ], [ 68.422852, -71.441171 ], [ 67.939453, -71.856229 ], [ 68.730469, -72.168351 ], [ 69.873047, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.586914, -71.691293 ], [ 71.894531, -71.328950 ], [ 72.465820, -71.016960 ], [ 73.081055, -70.714471 ], [ 73.344727, -70.363091 ], [ 73.872070, -69.869892 ], [ 74.487305, -69.778952 ], [ 75.629883, -69.733334 ], [ 76.640625, -69.626510 ], [ 77.651367, -69.457554 ], [ 78.134766, -69.068563 ], [ 78.442383, -68.704486 ], [ 79.101562, -68.318146 ], [ 80.947266, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.373698 ], [ 82.792969, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.152898 ], [ 87.495117, -66.878345 ], [ 87.978516, -66.213739 ], [ 88.374023, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.692383, -67.152898 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.118748 ], [ 92.592773, -67.187000 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.118748 ], [ 95.009766, -67.169955 ], [ 95.800781, -67.390599 ], [ 96.679688, -67.255058 ], [ 97.778320, -67.255058 ], [ 98.701172, -67.118748 ], [ 99.711914, -67.255058 ], [ 100.371094, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.567550 ], [ 103.491211, -65.694476 ], [ 104.238281, -65.982270 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.705169 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.916992, -66.390361 ], [ 115.620117, -66.705169 ], [ 116.718750, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.838867, -67.272043 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.565747 ], [ 123.222656, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.079102, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.682617, -66.583217 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 134.736328, -66.213739 ], [ 135.043945, -65.712557 ], [ 135.087891, -65.311829 ] ] ] } } ] } @@ -160,41 +142,39 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 58.124320 ], [ -3.515625, 58.608334 ], [ -2.988281, 58.631217 ], [ -3.515625, 58.124320 ] ] ], [ [ [ -3.515625, 57.633640 ], [ -3.076172, 57.680660 ], [ -1.977539, 57.680660 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.065430, 55.899956 ], [ -1.098633, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.483398, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.571289, 50.764259 ], [ -0.791016, 50.764259 ], [ -2.504883, 50.513427 ], [ -2.944336, 50.708634 ], [ -3.515625, 50.289339 ], [ -3.515625, 51.399206 ], [ -3.427734, 51.426614 ], [ -3.515625, 51.426614 ], [ -3.515625, 53.435719 ], [ -3.076172, 53.409532 ], [ -2.944336, 53.981935 ], [ -3.515625, 54.521081 ], [ -3.515625, 57.633640 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.625000, 51.041394 ], [ 6.152344, 50.792047 ], [ 6.064453, 50.120578 ], [ 5.800781, 50.092393 ], [ 5.668945, 49.525208 ], [ 4.790039, 49.979488 ], [ 4.306641, 49.894634 ], [ 3.603516, 50.373496 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.792047 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.344339 ], [ 4.042969, 51.261915 ], [ 4.965820, 51.481383 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.168945, 71.187754 ], [ 31.289062, 70.451508 ], [ 30.014648, 70.185103 ], [ 31.113281, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.608398, 69.068563 ], [ 29.003906, 69.763757 ], [ 27.729492, 70.170201 ], [ 26.191406, 69.824471 ], [ 25.708008, 69.099940 ], [ 24.741211, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.368164, 68.847665 ], [ 21.225586, 69.364831 ], [ 20.654297, 69.099940 ], [ 20.039062, 69.068563 ], [ 19.863281, 68.399180 ], [ 17.973633, 68.560384 ], [ 17.709961, 68.007571 ], [ 16.787109, 68.007571 ], [ 15.117188, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.930664, 64.453849 ], [ 13.579102, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.997070, 61.793900 ], [ 12.612305, 61.291349 ], [ 12.304688, 60.108670 ], [ 11.469727, 59.422728 ], [ 11.030273, 58.859224 ], [ 10.371094, 59.467408 ], [ 8.393555, 58.309489 ], [ 7.031250, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.317383, 59.667741 ], [ 5.009766, 61.980267 ], [ 5.932617, 62.613562 ], [ 8.569336, 63.450509 ], [ 10.546875, 64.491725 ], [ 12.348633, 65.874725 ], [ 14.765625, 67.809245 ], [ 16.435547, 68.560384 ], [ 19.204102, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.027344, 70.199994 ], [ 24.565430, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.168945, 71.187754 ] ] ], [ [ [ 17.006836, 80.050460 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.954560 ], [ 19.028320, 78.560488 ], [ 18.457031, 77.823323 ], [ 17.578125, 77.636542 ], [ 17.138672, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.379906 ], [ 14.677734, 77.739618 ], [ 13.183594, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.458984, 79.655668 ], [ 13.183594, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.161133, 79.671438 ], [ 15.512695, 80.012423 ], [ 17.006836, 80.050460 ] ] ], [ [ [ 22.939453, 80.654174 ], [ 25.444336, 80.408388 ], [ 27.421875, 80.058050 ], [ 25.927734, 79.520657 ], [ 23.027344, 79.400085 ], [ 20.083008, 79.568506 ], [ 19.907227, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.596909 ], [ 21.928711, 80.356995 ], [ 22.939453, 80.654174 ] ] ], [ [ [ 22.895508, 78.455425 ], [ 23.291016, 78.080156 ], [ 24.741211, 77.851100 ], [ 22.500000, 77.446940 ], [ 20.742188, 77.674122 ], [ 21.401367, 77.934055 ], [ 20.830078, 78.251387 ], [ 22.895508, 78.455425 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.037868 ], [ 16.040039, 48.719961 ], [ 16.479492, 48.777913 ], [ 16.962891, 48.603858 ], [ 16.875000, 48.458352 ], [ 16.962891, 48.136767 ], [ 16.918945, 47.724545 ], [ 16.347656, 47.724545 ], [ 16.523438, 47.487513 ], [ 16.215820, 46.860191 ], [ 15.996094, 46.679594 ], [ 15.117188, 46.649436 ], [ 14.633789, 46.437857 ], [ 13.798828, 46.498392 ], [ 12.392578, 46.769968 ], [ 12.172852, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.739861 ], [ 10.458984, 46.890232 ], [ 9.931641, 46.920255 ], [ 9.492188, 47.100045 ], [ 9.624023, 47.338823 ], [ 9.580078, 47.517201 ], [ 9.887695, 47.576526 ], [ 10.415039, 47.309034 ], [ 10.546875, 47.576526 ], [ 11.425781, 47.517201 ], [ 12.128906, 47.694974 ], [ 12.612305, 47.665387 ], [ 12.919922, 47.457809 ], [ 13.007812, 47.635784 ], [ 12.875977, 48.283193 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.864715 ], [ 14.326172, 48.545705 ], [ 14.897461, 48.951366 ], [ 15.249023, 49.037868 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.654297, 69.099940 ], [ 21.972656, 68.624544 ], [ 23.554688, 67.941650 ], [ 23.554688, 66.390361 ], [ 23.906250, 66.000150 ], [ 22.192383, 65.730626 ], [ 21.225586, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.841797, 62.754726 ], [ 17.138672, 61.333540 ], [ 17.841797, 60.630102 ], [ 18.808594, 60.086763 ], [ 17.885742, 58.950008 ], [ 16.831055, 58.722599 ], [ 16.435547, 57.040730 ], [ 15.864258, 56.096556 ], [ 14.677734, 56.194481 ], [ 14.106445, 55.404070 ], [ 12.963867, 55.354135 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.030273, 58.859224 ], [ 11.469727, 59.422728 ], [ 12.304688, 60.108670 ], [ 12.612305, 61.291349 ], [ 11.997070, 61.793900 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.579102, 64.052978 ], [ 13.930664, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.117188, 66.196009 ], [ 16.787109, 68.007571 ], [ 17.709961, 68.007571 ], [ 17.973633, 68.560384 ], [ 19.863281, 68.399180 ], [ 20.039062, 69.068563 ], [ 20.654297, 69.099940 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.204102, 43.516689 ], [ 19.643555, 43.229195 ], [ 19.951172, 43.100983 ], [ 20.346680, 42.908160 ], [ 20.083008, 42.585444 ], [ 19.819336, 42.488302 ], [ 19.731445, 42.682435 ], [ 19.291992, 42.195969 ], [ 19.379883, 41.869561 ], [ 19.160156, 41.967659 ], [ 18.896484, 42.293564 ], [ 18.457031, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.720703, 43.197167 ], [ 19.204102, 43.516689 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 50.120578 ], [ 6.240234, 49.894634 ], [ 6.196289, 49.468124 ], [ 5.888672, 49.439557 ], [ 5.668945, 49.525208 ], [ 5.800781, 50.092393 ], [ 6.064453, 50.120578 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.873047, 56.365250 ], [ 25.004883, 56.170023 ], [ 25.532227, 56.096556 ], [ 26.499023, 55.603178 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.904338 ], [ 23.466797, 53.904338 ], [ 23.247070, 54.213861 ], [ 22.719727, 54.316523 ], [ 22.631836, 54.572062 ], [ 22.763672, 54.851315 ], [ 22.324219, 55.002826 ], [ 21.269531, 55.178868 ], [ 21.049805, 56.022948 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.267761 ], [ 24.873047, 56.365250 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.404297, 43.004647 ], [ 9.580078, 42.163403 ], [ 9.228516, 41.376809 ], [ 8.789062, 41.574361 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.617791 ], [ 9.404297, 43.004647 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.792047 ], [ 3.120117, 50.792047 ], [ 3.603516, 50.373496 ], [ 4.306641, 49.894634 ], [ 4.790039, 49.979488 ], [ 5.668945, 49.525208 ], [ 5.888672, 49.439557 ], [ 6.196289, 49.468124 ], [ 6.679688, 49.210420 ], [ 8.085938, 49.009051 ], [ 7.602539, 48.341646 ], [ 7.470703, 47.606163 ], [ 7.207031, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.279229 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.503906, 46.437857 ], [ 6.855469, 45.981695 ], [ 6.811523, 45.706179 ], [ 7.075195, 45.336702 ], [ 6.767578, 45.026950 ], [ 6.987305, 44.245199 ], [ 7.558594, 44.119142 ], [ 7.426758, 43.707594 ], [ 6.547852, 43.133061 ], [ 4.570312, 43.389082 ], [ 3.120117, 43.068888 ], [ 2.988281, 42.488302 ], [ 1.845703, 42.358544 ], [ 0.703125, 42.811522 ], [ 0.351562, 42.585444 ], [ 0.000000, 42.650122 ], [ -1.494141, 43.036776 ], [ -1.889648, 43.421009 ], [ -1.362305, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.241211, 47.070122 ], [ -2.944336, 47.576526 ], [ -3.515625, 47.694974 ], [ -3.515625, 48.864715 ], [ -3.295898, 48.893615 ], [ -1.625977, 48.632909 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.667628 ], [ 1.318359, 50.120578 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.458352 ], [ 28.256836, 48.166085 ], [ 28.652344, 48.107431 ], [ 29.135742, 47.842658 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.338823 ], [ 29.575195, 46.920255 ], [ 29.926758, 46.679594 ], [ 29.838867, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.346928 ], [ 29.179688, 46.377254 ], [ 29.091797, 46.528635 ], [ 28.872070, 46.437857 ], [ 28.916016, 46.255847 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.583290 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.168945, 46.377254 ], [ 28.125000, 46.800059 ], [ 26.938477, 48.136767 ], [ 26.630859, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.458352 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.498392 ], [ 16.875000, 46.377254 ], [ 17.622070, 45.951150 ], [ 18.457031, 45.767523 ], [ 18.808594, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 18.984375, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.058001 ], [ 17.006836, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 44.995883 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.809122 ], [ 16.259766, 44.339565 ], [ 16.435547, 44.056012 ], [ 16.918945, 43.675818 ], [ 17.314453, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.457031, 42.488302 ], [ 17.490234, 42.843751 ], [ 16.918945, 43.197167 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.380859, 44.308127 ], [ 14.941406, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.930664, 44.809122 ], [ 13.666992, 45.151053 ], [ 13.666992, 45.490946 ], [ 14.414062, 45.460131 ], [ 14.589844, 45.644768 ], [ 14.941406, 45.460131 ], [ 15.336914, 45.460131 ], [ 15.336914, 45.736860 ], [ 15.688477, 45.828799 ], [ 15.776367, 46.225453 ], [ 16.567383, 46.498392 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.368164, 42.326062 ], [ 22.895508, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.763672, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.060547, 41.145570 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.610352, 41.079351 ], [ 20.478516, 41.508577 ], [ 20.610352, 41.869561 ], [ 20.698242, 41.836828 ], [ 20.742188, 42.065607 ], [ 21.357422, 42.195969 ], [ 21.928711, 42.293564 ], [ 22.368164, 42.326062 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 46.164614 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.736860 ], [ 20.874023, 45.429299 ], [ 21.489258, 45.182037 ], [ 21.577148, 44.777936 ], [ 22.148438, 44.465151 ], [ 22.456055, 44.715514 ], [ 22.719727, 44.590467 ], [ 22.456055, 44.402392 ], [ 22.675781, 44.245199 ], [ 22.412109, 43.992815 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.197167 ], [ 22.587891, 42.908160 ], [ 22.456055, 42.585444 ], [ 22.543945, 42.455888 ], [ 22.368164, 42.326062 ], [ 21.577148, 42.261049 ], [ 21.533203, 42.326062 ], [ 21.796875, 42.682435 ], [ 21.621094, 42.682435 ], [ 20.830078, 43.261206 ], [ 20.654297, 43.229195 ], [ 20.478516, 42.875964 ], [ 20.258789, 42.811522 ], [ 20.346680, 42.908160 ], [ 19.951172, 43.100983 ], [ 19.643555, 43.229195 ], [ 19.204102, 43.516689 ], [ 19.467773, 43.580391 ], [ 19.599609, 44.024422 ], [ 19.116211, 44.433780 ], [ 19.379883, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.920587 ], [ 19.599609, 46.164614 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.449219, 13.880746 ], [ 6.459961, 13.496473 ], [ 6.811523, 13.111580 ], [ 7.338867, 13.111580 ], [ 7.822266, 13.325485 ], [ 9.008789, 12.811801 ], [ 9.536133, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.722656, 13.239945 ], [ 10.986328, 13.368243 ], [ 11.513672, 13.325485 ], [ 12.304688, 13.025966 ], [ 13.095703, 13.581921 ], [ 13.315430, 13.539201 ], [ 13.974609, 12.468760 ], [ 14.194336, 12.468760 ], [ 14.589844, 12.082296 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.566144 ], [ 13.579102, 10.790141 ], [ 13.183594, 9.622414 ], [ 12.963867, 9.405710 ], [ 12.744141, 8.711359 ], [ 12.216797, 8.320212 ], [ 12.084961, 7.798079 ], [ 11.821289, 7.406048 ], [ 11.733398, 6.970049 ], [ 11.074219, 6.664608 ], [ 10.502930, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.536133, 6.446318 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.470703, 4.390229 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.258768 ], [ 5.361328, 4.872048 ], [ 5.053711, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.724609, 8.494105 ], [ 2.900391, 9.145486 ], [ 3.691406, 10.055403 ], [ 3.603516, 10.314919 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.307708 ], [ 3.691406, 12.554564 ], [ 3.955078, 12.940322 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.449219, 13.880746 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.686523, 35.710838 ], [ 24.257812, 35.353216 ], [ 25.004883, 35.424868 ], [ 25.751953, 35.353216 ], [ 25.751953, 35.173808 ], [ 26.279297, 35.317366 ], [ 26.147461, 34.994004 ], [ 24.741211, 34.921971 ], [ 24.741211, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.059570, 40.813809 ], [ 25.444336, 40.847060 ], [ 24.916992, 40.946714 ], [ 23.730469, 40.680638 ], [ 24.389648, 40.111689 ], [ 23.906250, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.631836, 40.245992 ], [ 22.851562, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.983398, 38.959409 ], [ 23.510742, 38.513788 ], [ 24.038086, 38.203655 ], [ 24.038086, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.422852, 37.405074 ], [ 22.763672, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.500000, 36.421282 ], [ 21.665039, 36.844461 ], [ 21.313477, 37.649034 ], [ 21.137695, 38.307181 ], [ 20.214844, 39.334297 ], [ 20.170898, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 21.005859, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.060547, 41.145570 ], [ 22.587891, 41.145570 ], [ 22.763672, 41.310824 ], [ 22.939453, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.574361 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.584961, 35.675147 ], [ 33.881836, 35.245619 ], [ 33.969727, 35.065973 ], [ 33.881836, 35.101934 ], [ 33.486328, 34.994004 ], [ 33.398438, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.739258, 35.137879 ], [ 32.783203, 35.137879 ], [ 32.958984, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.584961, 35.675147 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.630859, 48.224673 ], [ 26.938477, 48.136767 ], [ 28.125000, 46.800059 ], [ 28.168945, 46.377254 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.490946 ], [ 28.696289, 45.305803 ], [ 29.135742, 45.460131 ], [ 29.619141, 45.305803 ], [ 29.619141, 45.026950 ], [ 29.135742, 44.809122 ], [ 28.828125, 44.902578 ], [ 28.564453, 43.707594 ], [ 27.949219, 43.802819 ], [ 27.246094, 44.182204 ], [ 26.059570, 43.929550 ], [ 25.576172, 43.675818 ], [ 24.082031, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.456055, 44.402392 ], [ 22.719727, 44.590467 ], [ 22.456055, 44.715514 ], [ 22.148438, 44.465151 ], [ 21.577148, 44.777936 ], [ 21.489258, 45.182037 ], [ 20.874023, 45.429299 ], [ 20.742188, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 46.980252 ], [ 22.104492, 47.665387 ], [ 22.719727, 47.872144 ], [ 23.159180, 48.107431 ], [ 23.774414, 47.989922 ], [ 24.389648, 47.989922 ], [ 24.873047, 47.724545 ], [ 25.224609, 47.901614 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.630859, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.956055, 41.244772 ], [ 45.175781, 40.979898 ], [ 45.571289, 40.813809 ], [ 45.351562, 40.547200 ], [ 45.878906, 40.212441 ], [ 45.615234, 39.909736 ], [ 46.054688, 39.639538 ], [ 46.494141, 39.470125 ], [ 46.494141, 38.754083 ], [ 46.142578, 38.754083 ], [ 45.747070, 39.334297 ], [ 45.747070, 39.470125 ], [ 45.307617, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.707187 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.245992 ], [ 43.769531, 40.747257 ], [ 43.593750, 41.079351 ], [ 44.956055, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.548548 ], [ 40.913086, 43.389082 ], [ 42.407227, 43.229195 ], [ 43.769531, 42.747012 ], [ 43.945312, 42.553080 ], [ 44.516602, 42.714732 ], [ 45.483398, 42.488302 ], [ 45.791016, 42.098222 ], [ 46.406250, 41.869561 ], [ 46.142578, 41.738528 ], [ 46.625977, 41.178654 ], [ 46.494141, 41.079351 ], [ 45.966797, 41.112469 ], [ 45.219727, 41.409776 ], [ 44.956055, 41.244772 ], [ 43.593750, 41.079351 ], [ 42.626953, 41.574361 ], [ 41.572266, 41.541478 ], [ 41.704102, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.004647 ], [ 40.341797, 43.133061 ], [ 39.946289, 43.421009 ], [ 40.078125, 43.548548 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.222656, 12.168226 ], [ 33.090820, 11.436955 ], [ 33.222656, 10.703792 ], [ 33.706055, 10.314919 ], [ 33.837891, 9.968851 ], [ 33.837891, 9.492408 ], [ 33.969727, 9.449062 ], [ 33.969727, 8.667918 ], [ 33.837891, 8.363693 ], [ 33.310547, 8.363693 ], [ 32.958984, 7.798079 ], [ 33.574219, 7.710992 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.716797, 6.577303 ], [ 35.288086, 5.484768 ], [ 34.013672, 4.258768 ], [ 33.398438, 3.776559 ], [ 32.695312, 3.776559 ], [ 31.860352, 3.557283 ], [ 31.245117, 3.776559 ], [ 30.849609, 3.513421 ], [ 29.970703, 4.171115 ], [ 29.707031, 4.609278 ], [ 29.179688, 4.390229 ], [ 28.696289, 4.434044 ], [ 28.432617, 4.302591 ], [ 27.993164, 4.390229 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.235352, 6.533645 ], [ 25.795898, 6.970049 ], [ 25.136719, 7.493196 ], [ 25.136719, 7.841615 ], [ 23.906250, 8.624472 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.795678 ], [ 25.048828, 10.271681 ], [ 25.795898, 10.401378 ], [ 26.499023, 9.535749 ], [ 26.762695, 9.449062 ], [ 27.114258, 9.622414 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 29.003906, 9.622414 ], [ 29.531250, 9.795678 ], [ 29.619141, 10.098670 ], [ 30.014648, 10.271681 ], [ 30.849609, 9.709057 ], [ 31.333008, 9.795678 ], [ 31.860352, 10.531020 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.080078, 11.953349 ], [ 32.695312, 12.039321 ], [ 32.739258, 12.254128 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.161133, 37.439974 ], [ 15.292969, 37.125286 ], [ 15.117188, 36.633162 ], [ 14.326172, 36.985003 ], [ 13.842773, 37.090240 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.754883, 38.030786 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.172852, 47.129951 ], [ 12.392578, 46.769968 ], [ 13.798828, 46.498392 ], [ 13.710938, 46.012224 ], [ 13.930664, 45.583290 ], [ 13.139648, 45.736860 ], [ 12.348633, 45.367584 ], [ 12.392578, 44.871443 ], [ 12.260742, 44.590467 ], [ 12.568359, 44.087585 ], [ 13.535156, 43.580391 ], [ 14.018555, 42.747012 ], [ 15.161133, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.171875, 41.738528 ], [ 15.908203, 41.541478 ], [ 17.534180, 40.880295 ], [ 18.369141, 40.346544 ], [ 18.500977, 40.178873 ], [ 18.281250, 39.808536 ], [ 17.753906, 40.279526 ], [ 16.875000, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.182617, 39.436193 ], [ 17.050781, 38.891033 ], [ 16.655273, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.688477, 37.892196 ], [ 15.688477, 38.203655 ], [ 15.908203, 38.754083 ], [ 16.127930, 38.959409 ], [ 15.424805, 40.044438 ], [ 14.985352, 40.178873 ], [ 14.721680, 40.613952 ], [ 14.062500, 40.780541 ], [ 13.623047, 41.178654 ], [ 12.875977, 41.244772 ], [ 12.084961, 41.705729 ], [ 11.206055, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.711914, 44.024422 ], [ 8.876953, 44.370987 ], [ 8.437500, 44.245199 ], [ 7.866211, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.558594, 44.119142 ], [ 6.987305, 44.245199 ], [ 6.767578, 45.026950 ], [ 7.075195, 45.336702 ], [ 6.811523, 45.706179 ], [ 6.855469, 45.981695 ], [ 7.294922, 45.767523 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.184570, 46.437857 ], [ 9.931641, 46.316584 ], [ 10.371094, 46.498392 ], [ 10.458984, 46.890232 ], [ 11.030273, 46.739861 ], [ 11.162109, 46.950262 ], [ 12.172852, 47.129951 ] ] ], [ [ [ 9.228516, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.164141 ], [ 9.228516, 39.232253 ], [ 8.789062, 38.891033 ], [ 8.437500, 39.164141 ], [ 8.393555, 40.380028 ], [ 8.173828, 40.946714 ], [ 8.701172, 40.913513 ], [ 9.228516, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.223633, 43.293200 ], [ 75.629883, 42.875964 ], [ 75.981445, 42.972502 ], [ 77.651367, 42.972502 ], [ 79.145508, 42.843751 ], [ 79.628906, 42.488302 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.574361 ], [ 78.178711, 41.178654 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.413496 ], [ 75.454102, 40.547200 ], [ 74.794922, 40.380028 ], [ 73.828125, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.696289, 39.436193 ], [ 71.806641, 39.266284 ], [ 70.532227, 39.605688 ], [ 69.477539, 39.537940 ], [ 69.565430, 40.111689 ], [ 70.664062, 39.943436 ], [ 71.015625, 40.245992 ], [ 71.762695, 40.145289 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.376809 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.508577 ], [ 71.279297, 42.163403 ], [ 70.971680, 42.261049 ], [ 71.191406, 42.714732 ], [ 71.850586, 42.843751 ], [ 73.476562, 42.488302 ], [ 73.652344, 43.100983 ], [ 74.223633, 43.293200 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.005904 ], [ 0.043945, 11.005904 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.185187 ], [ 0.351562, 9.449062 ], [ 0.439453, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.926427 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.527344, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.977539, 4.696879 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.362467 ], [ -2.548828, 8.233237 ], [ -2.944336, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.186523, 11.005904 ], [ -0.747070, 10.919618 ], [ -0.439453, 11.092166 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.074219, 26.037042 ], [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.898438, 24.926295 ], [ 55.810547, 24.287027 ], [ 55.986328, 24.126702 ], [ 55.546875, 23.926013 ], [ 55.546875, 23.523700 ], [ 55.239258, 23.120154 ], [ 55.195312, 22.715390 ], [ 55.019531, 22.512557 ], [ 51.987305, 22.998852 ], [ 51.591797, 24.246965 ], [ 51.767578, 24.287027 ], [ 51.811523, 24.006326 ], [ 52.558594, 24.166802 ], [ 54.008789, 24.126702 ], [ 56.074219, 26.037042 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.501953, 12.854649 ], [ 14.897461, 12.211180 ], [ 14.941406, 11.566144 ], [ 14.941406, 10.876465 ], [ 15.468750, 9.968851 ], [ 14.897461, 10.012130 ], [ 14.633789, 9.925566 ], [ 14.150391, 10.012130 ], [ 13.974609, 9.535749 ], [ 14.545898, 8.971897 ], [ 14.985352, 8.798225 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.402648 ], [ 14.545898, 6.227934 ], [ 14.458008, 5.441022 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.424805, 3.337954 ], [ 15.864258, 3.030812 ], [ 15.908203, 2.547988 ], [ 15.996094, 2.284551 ], [ 15.952148, 1.713612 ], [ 14.326172, 2.240640 ], [ 13.095703, 2.284551 ], [ 12.963867, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.293945, 2.240640 ], [ 9.667969, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.964844, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.481445, 4.477856 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.536133, 6.446318 ], [ 10.107422, 7.057282 ], [ 10.502930, 7.057282 ], [ 11.074219, 6.664608 ], [ 11.733398, 6.970049 ], [ 11.821289, 7.406048 ], [ 12.084961, 7.798079 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.711359 ], [ 12.963867, 9.405710 ], [ 13.183594, 9.622414 ], [ 13.579102, 10.790141 ], [ 14.414062, 11.566144 ], [ 14.458008, 11.910354 ], [ 14.589844, 12.082296 ], [ 14.194336, 12.468760 ], [ 14.194336, 12.811801 ], [ 14.501953, 12.854649 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.064453, 10.660608 ], [ 50.844727, 10.271681 ], [ 50.537109, 9.188870 ], [ 49.438477, 6.795535 ], [ 48.603516, 5.353521 ], [ 47.724609, 4.214943 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.064982 ], [ 44.077148, 1.054628 ], [ 43.154297, 0.307616 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 41.000977, -0.878872 ], [ 41.000977, 2.767478 ], [ 41.835938, 3.908099 ], [ 42.143555, 4.214943 ], [ 42.758789, 4.258768 ], [ 43.681641, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.955078, 9.449062 ], [ 48.955078, 11.393879 ], [ 49.262695, 11.436955 ], [ 50.273438, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.402765 ], [ 23.818359, 19.559790 ], [ 23.906250, 15.623037 ], [ 23.027344, 15.665354 ], [ 22.587891, 14.944785 ], [ 22.324219, 14.306969 ], [ 22.500000, 14.093957 ], [ 22.192383, 13.795406 ], [ 22.280273, 13.368243 ], [ 22.016602, 12.940322 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.640338 ], [ 22.500000, 12.254128 ], [ 22.500000, 11.695273 ], [ 22.895508, 11.393879 ], [ 22.851562, 11.135287 ], [ 22.236328, 10.962764 ], [ 21.708984, 10.574222 ], [ 21.005859, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.058702 ], [ 18.808594, 8.971897 ], [ 18.896484, 8.624472 ], [ 18.369141, 8.276727 ], [ 17.973633, 7.885147 ], [ 16.699219, 7.493196 ], [ 16.435547, 7.754537 ], [ 16.303711, 7.754537 ], [ 16.127930, 7.493196 ], [ 15.292969, 7.406048 ], [ 15.424805, 7.710992 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.971897 ], [ 13.974609, 9.535749 ], [ 14.150391, 10.012130 ], [ 14.633789, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.468750, 9.968851 ], [ 14.941406, 10.876465 ], [ 14.941406, 11.566144 ], [ 14.897461, 12.211180 ], [ 14.501953, 12.854649 ], [ 14.589844, 13.325485 ], [ 13.974609, 13.368243 ], [ 13.974609, 14.008696 ], [ 13.535156, 14.349548 ], [ 13.974609, 15.665354 ], [ 15.249023, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.688477, 19.973349 ], [ 15.908203, 20.385825 ], [ 15.468750, 20.715015 ], [ 15.468750, 21.043491 ], [ 15.117188, 21.289374 ], [ 14.853516, 22.877440 ], [ 15.864258, 23.402765 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.827148, 35.496456 ], [ 78.925781, 34.307144 ], [ 78.793945, 33.504759 ], [ 79.189453, 32.990236 ], [ 79.189453, 32.472695 ], [ 78.442383, 32.620870 ], [ 78.750000, 31.503629 ], [ 79.716797, 30.864510 ], [ 81.123047, 30.183122 ], [ 80.463867, 29.726222 ], [ 80.068359, 28.806174 ], [ 81.079102, 28.420391 ], [ 82.001953, 27.916767 ], [ 83.320312, 27.371767 ], [ 84.682617, 27.215556 ], [ 85.253906, 26.745610 ], [ 87.231445, 26.391870 ], [ 88.066406, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.071980 ], [ 88.857422, 27.098254 ], [ 89.736328, 26.706360 ], [ 90.351562, 26.863281 ], [ 91.230469, 26.824071 ], [ 92.021484, 26.824071 ], [ 92.109375, 27.449790 ], [ 91.713867, 27.761330 ], [ 92.504883, 27.877928 ], [ 93.427734, 28.652031 ], [ 94.570312, 29.267233 ], [ 95.405273, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.591797, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.338867, 28.265682 ], [ 97.382812, 27.877928 ], [ 97.031250, 27.683528 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.254630 ], [ 95.141602, 26.588527 ], [ 95.141602, 25.997550 ], [ 94.614258, 25.165173 ], [ 94.570312, 24.686952 ], [ 94.086914, 23.845650 ], [ 93.339844, 24.086589 ], [ 93.295898, 23.039298 ], [ 93.076172, 22.715390 ], [ 93.164062, 22.268764 ], [ 92.680664, 22.024546 ], [ 92.153320, 23.644524 ], [ 91.889648, 23.604262 ], [ 91.713867, 22.998852 ], [ 91.142578, 23.483401 ], [ 91.450195, 24.086589 ], [ 91.933594, 24.126702 ], [ 92.373047, 24.966140 ], [ 91.801758, 25.165173 ], [ 90.878906, 25.125393 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.958045 ], [ 89.340820, 25.997550 ], [ 88.549805, 26.431228 ], [ 88.198242, 25.760320 ], [ 88.945312, 25.244696 ], [ 88.286133, 24.846565 ], [ 88.066406, 24.487149 ], [ 88.681641, 24.246965 ], [ 88.549805, 23.644524 ], [ 88.857422, 22.877440 ], [ 89.033203, 22.065278 ], [ 88.901367, 21.698265 ], [ 88.198242, 21.698265 ], [ 86.967773, 21.493964 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.138470 ], [ 85.078125, 19.476950 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.014768 ], [ 82.177734, 16.551962 ], [ 80.771484, 15.961329 ], [ 80.332031, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.244141, 13.838080 ], [ 80.288086, 13.025966 ], [ 79.848633, 12.039321 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.535749 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.928487 ], [ 77.958984, 8.233237 ], [ 77.519531, 7.972198 ], [ 76.596680, 8.885072 ], [ 75.761719, 11.307708 ], [ 75.410156, 11.781325 ], [ 74.882812, 12.726084 ], [ 74.443359, 14.604847 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.641602, 21.371244 ], [ 71.191406, 20.756114 ], [ 70.488281, 20.879343 ], [ 69.169922, 22.105999 ], [ 69.653320, 22.431340 ], [ 69.345703, 22.836946 ], [ 68.159180, 23.684774 ], [ 68.862305, 24.367114 ], [ 71.059570, 24.367114 ], [ 70.839844, 25.204941 ], [ 70.268555, 25.720735 ], [ 70.180664, 26.509905 ], [ 69.521484, 26.941660 ], [ 70.620117, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.960089 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.977609 ], [ 74.399414, 31.690782 ], [ 75.278320, 32.287133 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.307144 ], [ 74.223633, 34.741612 ], [ 75.761719, 34.488448 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.223633, 43.293200 ], [ 75.629883, 42.875964 ], [ 75.981445, 42.972502 ], [ 77.651367, 42.972502 ], [ 79.145508, 42.843751 ], [ 79.628906, 42.488302 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.574361 ], [ 78.178711, 41.178654 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.413496 ], [ 75.454102, 40.547200 ], [ 74.794922, 40.380028 ], [ 73.828125, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.696289, 39.436193 ], [ 71.806641, 39.266284 ], [ 70.532227, 39.605688 ], [ 69.477539, 39.537940 ], [ 69.565430, 40.111689 ], [ 70.664062, 39.943436 ], [ 71.015625, 40.245992 ], [ 71.762695, 40.145289 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.376809 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.508577 ], [ 71.279297, 42.163403 ], [ 70.971680, 42.261049 ], [ 71.191406, 42.714732 ], [ 71.850586, 42.843751 ], [ 73.476562, 42.488302 ], [ 73.652344, 43.100983 ], [ 74.223633, 43.293200 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.471955 ], [ 102.744141, 21.657428 ], [ 103.183594, 20.756114 ], [ 104.414062, 20.756114 ], [ 104.809570, 19.890723 ], [ 104.194336, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.646245 ], [ 106.567383, 16.594081 ], [ 107.314453, 15.919074 ], [ 107.578125, 15.199386 ], [ 107.402344, 14.221789 ], [ 106.479492, 14.562318 ], [ 106.040039, 13.880746 ], [ 105.205078, 14.264383 ], [ 105.556641, 14.732386 ], [ 105.600586, 15.580711 ], [ 104.765625, 16.425548 ], [ 104.721680, 17.434511 ], [ 103.974609, 18.229351 ], [ 103.183594, 18.312811 ], [ 103.007812, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.128906, 18.104087 ], [ 101.074219, 17.518344 ], [ 101.030273, 18.396230 ], [ 101.293945, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.097206 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.821289, 21.166484 ], [ 101.645508, 22.309426 ], [ 102.172852, 22.471955 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.175612 ], [ 40.385742, 31.877558 ], [ 41.879883, 31.203405 ], [ 44.692383, 29.190533 ], [ 46.582031, 29.113775 ], [ 47.460938, 28.998532 ], [ 47.724609, 28.536275 ], [ 48.427734, 28.536275 ], [ 48.823242, 27.683528 ], [ 49.306641, 27.449790 ], [ 49.482422, 27.098254 ], [ 50.141602, 26.706360 ], [ 50.229492, 26.273714 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.601902 ], [ 50.537109, 25.324167 ], [ 50.800781, 24.766785 ], [ 51.108398, 24.567108 ], [ 51.372070, 24.647017 ], [ 51.987305, 22.998852 ], [ 55.019531, 22.512557 ], [ 55.195312, 22.715390 ], [ 55.678711, 21.983801 ], [ 55.019531, 20.014645 ], [ 51.987305, 19.020577 ], [ 49.130859, 18.604601 ], [ 48.164062, 18.145852 ], [ 47.460938, 17.098792 ], [ 47.021484, 16.930705 ], [ 46.757812, 17.266728 ], [ 46.362305, 17.224758 ], [ 45.395508, 17.350638 ], [ 45.219727, 17.434511 ], [ 44.077148, 17.392579 ], [ 43.813477, 17.308688 ], [ 43.374023, 17.560247 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.341226 ], [ 42.670898, 16.762468 ], [ 42.363281, 17.056785 ], [ 42.275391, 17.476432 ], [ 41.748047, 17.853290 ], [ 41.220703, 18.687879 ], [ 40.957031, 19.476950 ], [ 40.253906, 20.179724 ], [ 39.814453, 20.344627 ], [ 39.155273, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.593726 ], [ 38.496094, 23.684774 ], [ 38.012695, 24.086589 ], [ 37.485352, 24.287027 ], [ 37.133789, 24.846565 ], [ 37.221680, 25.085599 ], [ 36.914062, 25.601902 ], [ 36.650391, 25.839449 ], [ 36.254883, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.343875 ], [ 36.079102, 29.190533 ], [ 36.518555, 29.496988 ], [ 36.738281, 29.878755 ], [ 37.485352, 29.993002 ], [ 37.661133, 30.334954 ], [ 38.012695, 30.524413 ], [ 37.001953, 31.503629 ], [ 39.023438, 32.026706 ], [ 39.199219, 32.175612 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.364258, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.462891, 36.774092 ], [ 129.462891, 35.639441 ], [ 129.111328, 35.065973 ], [ 128.188477, 34.885931 ], [ 127.397461, 34.488448 ], [ 126.474609, 34.379713 ], [ 126.386719, 34.921971 ], [ 126.562500, 35.675147 ], [ 126.123047, 36.738884 ], [ 126.870117, 36.879621 ], [ 126.166992, 37.753344 ], [ 126.254883, 37.857507 ], [ 126.694336, 37.788081 ], [ 127.089844, 38.272689 ], [ 128.188477, 38.376115 ], [ 128.364258, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.664062, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.377930, 5.222247 ], [ 27.993164, 4.390229 ], [ 28.432617, 4.302591 ], [ 28.696289, 4.434044 ], [ 29.179688, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.970703, 4.171115 ], [ 30.849609, 3.513421 ], [ 30.761719, 2.328460 ], [ 31.157227, 2.196727 ], [ 30.849609, 1.845384 ], [ 30.454102, 1.581830 ], [ 30.102539, 1.054628 ], [ 29.882812, 0.615223 ], [ 29.838867, 0.000000 ], [ 29.838867, -0.219726 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.362176 ], [ 29.311523, -1.625758 ], [ 29.267578, -2.196727 ], [ 29.135742, -2.284551 ], [ 29.003906, -2.855263 ], [ 29.267578, -3.294082 ], [ 29.267578, -3.513421 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.723583 ], [ 16.391602, -1.757537 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.709961, 0.000000 ], [ 17.841797, 0.307616 ], [ 17.753906, 0.834931 ], [ 17.885742, 1.757537 ], [ 18.105469, 2.372369 ], [ 18.413086, 2.899153 ], [ 18.544922, 4.214943 ], [ 18.940430, 4.696879 ], [ 19.467773, 5.047171 ], [ 20.302734, 4.696879 ], [ 20.917969, 4.302591 ], [ 21.665039, 4.214943 ], [ 22.412109, 4.039618 ], [ 22.719727, 4.653080 ], [ 22.851562, 4.696879 ], [ 23.291016, 4.609278 ], [ 24.389648, 5.090944 ], [ 24.785156, 4.915833 ], [ 25.136719, 4.915833 ], [ 25.268555, 5.178482 ], [ 25.664062, 5.266008 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.001953, -3.118576 ], [ 127.265625, -3.469557 ], [ 127.177734, -3.513421 ], [ 126.123047, -3.513421 ], [ 125.991211, -3.162456 ], [ 127.001953, -3.118576 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.074695 ], [ 130.649414, -3.513421 ], [ 130.122070, -3.513421 ], [ 129.990234, -3.425692 ], [ 129.155273, -3.381824 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.989258, -0.790990 ], [ 134.165039, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.439453, -3.381824 ], [ 136.274414, -2.328460 ], [ 137.460938, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.921875, -2.416276 ], [ 141.020508, -2.591889 ], [ 141.020508, -3.513421 ], [ 132.758789, -3.513421 ], [ 132.758789, -3.294082 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.625758 ], [ 130.957031, -1.450040 ], [ 130.517578, -0.922812 ], [ 131.879883, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.026367, 4.302591 ], [ 117.861328, 4.127285 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.922812 ], [ 117.817383, 0.790990 ], [ 117.465820, 0.087891 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.504085 ], [ 116.279297, -3.513421 ], [ 114.477539, -3.513421 ], [ 113.774414, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.030812 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.581830 ], [ 109.555664, -1.318243 ], [ 109.072266, -0.439449 ], [ 109.028320, 0.000000 ], [ 108.940430, 0.395505 ], [ 109.072266, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.318243 ], [ 110.522461, 0.790990 ], [ 111.137695, 0.966751 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.136719, 2.811371 ], [ 115.532227, 3.162456 ], [ 115.883789, 4.302591 ], [ 117.026367, 4.302591 ] ] ], [ [ [ 125.068359, 1.625758 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.706055, 0.219726 ], [ 122.739258, 0.439449 ], [ 121.069336, 0.395505 ], [ 120.190430, 0.219726 ], [ 120.146484, 0.000000 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.354492, -0.615223 ], [ 123.266602, -1.054628 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.537901 ], [ 121.508789, -1.889306 ], [ 122.475586, -3.206333 ], [ 122.299805, -3.513421 ], [ 120.893555, -3.513421 ], [ 120.981445, -2.635789 ], [ 120.322266, -2.943041 ], [ 120.366211, -3.513421 ], [ 119.487305, -3.513421 ], [ 119.091797, -3.469557 ], [ 118.784180, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.311523, -1.362176 ], [ 119.794922, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.684570, 1.010690 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.068359, 1.625758 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.258768 ], [ 99.711914, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.064982 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.571280 ], [ 103.842773, 0.087891 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.801461 ], [ 104.897461, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.127930, -3.074695 ], [ 105.996094, -3.513421 ], [ 102.041016, -3.513421 ], [ 101.381836, -2.811371 ], [ 100.898438, -2.064982 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.294082 ], [ 96.416016, 3.864255 ], [ 95.361328, 4.959615 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 127.924805, 2.152814 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.351560 ], [ 128.012695, 0.000000 ], [ 127.968750, -0.263671 ], [ 128.364258, -0.790990 ], [ 128.100586, -0.878872 ], [ 127.705078, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.617188, 1.801461 ], [ 127.924805, 2.152814 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.484768 ], [ 35.815430, 5.353521 ], [ 35.815430, 4.784469 ], [ 36.166992, 4.434044 ], [ 36.870117, 4.434044 ], [ 38.100586, 3.601142 ], [ 38.671875, 3.601142 ], [ 38.891602, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.858398, 3.820408 ], [ 40.781250, 4.258768 ], [ 41.176758, 3.908099 ], [ 41.835938, 3.908099 ], [ 41.000977, 2.767478 ], [ 41.000977, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.649414, -2.504085 ], [ 40.253906, -2.591889 ], [ 40.122070, -3.294082 ], [ 39.946289, -3.513421 ], [ 37.749023, -3.513421 ], [ 37.705078, -3.118576 ], [ 33.881836, -0.966751 ], [ 33.881836, 0.087891 ], [ 34.672852, 1.186439 ], [ 35.024414, 1.889306 ], [ 34.584961, 3.074695 ], [ 34.497070, 3.557283 ], [ 34.013672, 4.258768 ], [ 35.288086, 5.484768 ] ] ] } } ] } ] } , @@ -282,39 +262,37 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.374023, 48.297812 ], [ -84.880371, 46.905246 ], [ -84.770508, 46.634351 ], [ -84.550781, 46.543750 ], [ -84.594727, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.133301, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.118942 ], [ -83.605957, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.583984, 45.813486 ], [ -82.551270, 45.352145 ], [ -82.133789, 43.564472 ], [ -82.419434, 42.972502 ], [ -82.902832, 42.423457 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.967659 ], [ -83.034668, 41.836828 ], [ -82.683105, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.212245 ], [ -80.244141, 42.358544 ], [ -78.947754, 42.859860 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.167480, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.816406, 43.628123 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.809122 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.081543, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.235840, 47.442950 ], [ -68.906250, 47.189712 ], [ -68.225098, 47.353711 ], [ -67.785645, 47.070122 ], [ -67.785645, 45.706179 ], [ -67.126465, 45.135555 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.691708 ], [ -70.817871, 42.859860 ], [ -70.817871, 42.342305 ], [ -70.488281, 41.804078 ], [ -70.070801, 41.787697 ], [ -70.180664, 42.147114 ], [ -69.895020, 41.918629 ], [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.492121 ], [ -71.850586, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.930115 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.959961, 40.747257 ], [ -74.267578, 40.480381 ], [ -73.959961, 40.430224 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.942321 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.249271 ], [ -75.520020, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.265310 ], [ -75.717773, 37.944198 ], [ -76.223145, 38.324420 ], [ -76.354980, 39.147103 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.311035, 37.909534 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.897194 ], [ -75.871582, 36.544949 ], [ -75.717773, 35.550105 ], [ -76.354980, 34.813803 ], [ -77.387695, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.870416 ], [ -79.057617, 33.486435 ], [ -79.211426, 33.155948 ], [ -80.310059, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.031055 ], [ -80.969238, 29.171349 ], [ -80.529785, 28.478349 ], [ -80.529785, 28.033198 ], [ -80.046387, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.320801, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.705078, 27.488781 ], [ -82.858887, 27.877928 ], [ -82.639160, 28.555576 ], [ -82.924805, 29.094577 ], [ -83.715820, 29.935895 ], [ -84.089355, 30.088108 ], [ -85.100098, 29.630771 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.391830 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -91.757812, 29.649869 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.200684, 25.204941 ], [ -77.893066, 25.165173 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.704895 ], [ -78.024902, 24.287027 ], [ -78.398438, 24.567108 ], [ -78.200684, 25.204941 ] ] ], [ [ [ -77.783203, 27.039557 ], [ -76.992188, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.365723, 25.997550 ], [ -77.343750, 26.529565 ], [ -77.783203, 26.922070 ], [ -77.783203, 27.039557 ] ] ], [ [ [ -78.508301, 26.863281 ], [ -77.849121, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.903809, 26.411551 ], [ -78.969727, 26.784847 ], [ -78.508301, 26.863281 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.990234, 16.003576 ], [ -84.375000, 15.834536 ], [ -83.781738, 15.432501 ], [ -83.408203, 15.262989 ], [ -83.144531, 14.987240 ], [ -83.496094, 15.008464 ], [ -83.627930, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.221191, 14.753635 ], [ -84.440918, 14.626109 ], [ -84.638672, 14.668626 ], [ -84.814453, 14.817371 ], [ -84.924316, 14.796128 ], [ -85.056152, 14.541050 ], [ -85.144043, 14.562318 ], [ -85.166016, 14.349548 ], [ -85.693359, 13.966054 ], [ -85.803223, 13.838080 ], [ -86.088867, 14.030015 ], [ -86.308594, 13.774066 ], [ -86.748047, 13.752725 ], [ -86.726074, 13.261333 ], [ -86.879883, 13.261333 ], [ -87.011719, 13.025966 ], [ -87.319336, 12.983148 ], [ -87.495117, 13.304103 ], [ -87.802734, 13.389620 ], [ -87.714844, 13.795406 ], [ -87.868652, 13.902076 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.838080 ], [ -88.549805, 13.987376 ], [ -88.835449, 14.136576 ], [ -89.055176, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.143066, 14.668626 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.220215, 15.728814 ], [ -88.110352, 15.686510 ], [ -87.912598, 15.855674 ], [ -87.604980, 15.876809 ], [ -87.517090, 15.792254 ], [ -87.363281, 15.855674 ], [ -86.901855, 15.749963 ], [ -86.440430, 15.792254 ], [ -86.110840, 15.897942 ], [ -86.000977, 16.003576 ], [ -85.451660, 15.876809 ], [ -85.187988, 15.919074 ], [ -84.990234, 16.003576 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.508301, 67.204032 ], [ -34.211426, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.937514 ], [ -38.364258, 65.694476 ], [ -39.814453, 65.458261 ], [ -40.671387, 64.839597 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.479957 ], [ -42.824707, 62.684228 ], [ -42.407227, 61.897578 ], [ -43.374023, 60.097718 ], [ -44.780273, 60.031930 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.855613 ], [ -49.240723, 61.407236 ], [ -49.899902, 62.380185 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.282760 ], [ -52.272949, 65.173806 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -53.964844, 67.204032 ], [ -33.508301, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.561523, 11.221510 ], [ -84.902344, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.353027, 11.005904 ], [ -84.199219, 10.790141 ], [ -83.891602, 10.725381 ], [ -83.649902, 10.941192 ], [ -83.408203, 10.401378 ], [ -82.551270, 9.557417 ], [ -82.924805, 9.470736 ], [ -82.924805, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.858887, 8.798225 ], [ -82.836914, 8.624472 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.646196 ], [ -83.605957, 8.819939 ], [ -83.627930, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.638672, 9.622414 ], [ -84.704590, 9.903921 ], [ -84.968262, 10.077037 ], [ -84.902344, 9.795678 ], [ -85.100098, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.925566 ], [ -85.803223, 10.141932 ], [ -85.781250, 10.444598 ], [ -85.649414, 10.746969 ], [ -85.935059, 10.898042 ], [ -85.561523, 11.221510 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.362793, 14.434680 ], [ -89.055176, 14.349548 ], [ -88.835449, 14.136576 ], [ -88.549805, 13.987376 ], [ -88.505859, 13.838080 ], [ -88.066406, 13.966054 ], [ -87.868652, 13.902076 ], [ -87.714844, 13.795406 ], [ -87.802734, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.154376 ], [ -88.835449, 13.261333 ], [ -89.252930, 13.453737 ], [ -89.802246, 13.517838 ], [ -90.000000, 13.667338 ], [ -90.087891, 13.731381 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.923404 ], [ -89.538574, 14.243087 ], [ -89.582520, 14.370834 ], [ -89.362793, 14.434680 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.805176, 18.521283 ], [ -76.904297, 18.396230 ], [ -76.354980, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.761230, 17.853290 ], [ -78.332520, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.586914, 19.890723 ], [ -70.795898, 19.870060 ], [ -70.224609, 19.621892 ], [ -69.960938, 19.642588 ], [ -69.763184, 19.290406 ], [ -69.213867, 19.311143 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.979026 ], [ -68.312988, 18.604601 ], [ -68.686523, 18.208480 ], [ -69.169922, 18.417079 ], [ -69.631348, 18.375379 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.510254, 18.187607 ], [ -70.664062, 18.417079 ], [ -70.993652, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.652832, 17.748687 ], [ -71.718750, 18.041421 ], [ -71.696777, 18.312811 ], [ -71.938477, 18.625425 ], [ -71.696777, 18.791918 ], [ -71.630859, 19.165924 ], [ -71.718750, 19.704658 ], [ -71.586914, 19.890723 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.938965, 12.168226 ], [ -69.587402, 11.458491 ], [ -68.884277, 11.436955 ], [ -68.225098, 10.876465 ], [ -68.203125, 10.552622 ], [ -67.302246, 10.552622 ], [ -66.225586, 10.639014 ], [ -65.654297, 10.206813 ], [ -64.885254, 10.077037 ], [ -64.335938, 10.379765 ], [ -64.313965, 10.639014 ], [ -63.083496, 10.703792 ], [ -61.875000, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.380371, 9.947209 ], [ -61.589355, 9.882275 ], [ -60.820312, 9.384032 ], [ -60.666504, 8.581021 ], [ -60.139160, 8.602747 ], [ -59.765625, 8.363693 ], [ -60.556641, 7.776309 ], [ -60.644531, 7.406048 ], [ -60.292969, 7.035476 ], [ -60.534668, 6.860985 ], [ -61.149902, 6.686431 ], [ -61.149902, 6.227934 ], [ -61.413574, 5.965754 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.797852, 4.017699 ], [ -63.083496, 3.776559 ], [ -63.896484, 4.017699 ], [ -64.621582, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.357910, 3.798484 ], [ -64.401855, 3.118576 ], [ -64.270020, 2.504085 ], [ -63.413086, 2.416276 ], [ -63.369141, 2.196727 ], [ -64.072266, 1.911267 ], [ -64.204102, 1.493971 ], [ -65.346680, 1.098565 ], [ -65.544434, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.252342 ], [ -67.170410, 2.240640 ], [ -67.456055, 2.591889 ], [ -67.807617, 2.811371 ], [ -67.302246, 3.316018 ], [ -67.346191, 3.535352 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.499762 ], [ -67.741699, 5.222247 ], [ -67.521973, 5.550381 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.206090 ], [ -69.389648, 6.096860 ], [ -70.092773, 6.970049 ], [ -70.664062, 7.079088 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.443848, 7.427837 ], [ -72.487793, 7.623887 ], [ -72.355957, 7.993957 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.624472 ], [ -72.795410, 9.080400 ], [ -73.300781, 9.145486 ], [ -73.037109, 9.730714 ], [ -72.905273, 10.444598 ], [ -72.619629, 10.811724 ], [ -72.224121, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.323242, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.938477, 11.415418 ], [ -71.630859, 10.962764 ], [ -71.630859, 10.444598 ], [ -72.070312, 9.860628 ], [ -71.696777, 9.080400 ], [ -71.257324, 9.145486 ], [ -71.037598, 9.860628 ], [ -71.345215, 10.206813 ], [ -71.411133, 10.962764 ], [ -70.158691, 11.372339 ], [ -70.290527, 11.845847 ], [ -69.938965, 12.168226 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.041504, 6.031311 ], [ -53.964844, 5.747174 ], [ -54.470215, 4.893941 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.184394 ], [ -54.272461, 2.723583 ], [ -54.514160, 2.306506 ], [ -55.107422, 2.526037 ], [ -55.568848, 2.416276 ], [ -55.964355, 2.504085 ], [ -56.074219, 2.218684 ], [ -55.898438, 2.021065 ], [ -55.986328, 1.823423 ], [ -56.535645, 1.889306 ], [ -57.150879, 2.767478 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.854004, 4.587376 ], [ -57.919922, 4.806365 ], [ -57.304688, 5.069058 ], [ -57.150879, 5.965754 ], [ -55.942383, 5.769036 ], [ -55.832520, 5.943900 ], [ -55.041504, 6.031311 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.898042 ], [ -60.886230, 10.854886 ], [ -60.930176, 10.120302 ], [ -61.765137, 9.990491 ], [ -61.940918, 10.098670 ], [ -61.655273, 10.358151 ], [ -61.677246, 10.768556 ], [ -61.105957, 10.898042 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.580566, 55.128649 ], [ -7.360840, 54.597528 ], [ -7.580566, 54.059388 ], [ -6.943359, 54.072283 ], [ -6.196289, 53.865486 ], [ -6.042480, 53.146770 ], [ -6.789551, 52.254709 ], [ -8.569336, 51.672555 ], [ -9.975586, 51.822198 ], [ -9.162598, 52.869130 ], [ -9.689941, 53.878440 ], [ -8.327637, 54.661124 ], [ -7.580566, 55.128649 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.657227, 27.664069 ], [ -8.679199, 25.878994 ], [ -11.975098, 25.938287 ], [ -11.931152, 23.382598 ], [ -12.875977, 23.281719 ], [ -13.117676, 22.776182 ], [ -12.919922, 21.330315 ], [ -16.853027, 21.330315 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.412162 ], [ -14.743652, 21.493964 ], [ -14.633789, 21.861499 ], [ -14.216309, 22.309426 ], [ -13.886719, 23.684774 ], [ -12.502441, 24.766785 ], [ -12.041016, 26.037042 ], [ -11.711426, 26.096255 ], [ -11.381836, 26.882880 ], [ -10.546875, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.733887, 26.863281 ], [ -9.404297, 27.098254 ], [ -8.789062, 27.117813 ], [ -8.811035, 27.664069 ], [ -8.657227, 27.664069 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.277309 ], [ -8.020020, 41.787697 ], [ -7.426758, 41.787697 ], [ -7.250977, 41.918629 ], [ -6.657715, 41.885921 ], [ -6.394043, 41.376809 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.329796 ], [ -7.031250, 40.178873 ], [ -7.075195, 39.707187 ], [ -7.492676, 39.622615 ], [ -7.097168, 39.027719 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.163086, 37.805444 ], [ -7.536621, 37.422526 ], [ -7.448730, 37.090240 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.862043 ], [ -8.745117, 37.649034 ], [ -8.833008, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.736946 ], [ -9.448242, 39.385264 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.767090, 40.763901 ], [ -8.789062, 41.178654 ], [ -8.986816, 41.541478 ], [ -9.030762, 41.885921 ], [ -8.679199, 42.130821 ], [ -8.261719, 42.277309 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.185547, 35.746512 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.173808 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.524661 ], [ -1.735840, 33.925130 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.614746, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.647461, 31.634676 ], [ -3.691406, 30.902225 ], [ -4.855957, 30.505484 ], [ -5.251465, 29.993002 ], [ -6.064453, 29.726222 ], [ -7.053223, 29.573457 ], [ -8.679199, 28.844674 ], [ -8.657227, 27.664069 ], [ -8.811035, 27.664069 ], [ -8.789062, 27.117813 ], [ -9.404297, 27.098254 ], [ -9.733887, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.546875, 27.000408 ], [ -11.381836, 26.882880 ], [ -11.711426, 26.096255 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.766785 ], [ -13.886719, 23.684774 ], [ -14.216309, 22.309426 ], [ -14.633789, 21.861499 ], [ -14.743652, 21.493964 ], [ -17.028809, 21.412162 ], [ -16.962891, 21.881890 ], [ -16.589355, 22.167058 ], [ -16.259766, 22.674847 ], [ -16.325684, 23.019076 ], [ -15.974121, 23.725012 ], [ -15.424805, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.436035, 26.254010 ], [ -13.776855, 26.627818 ], [ -13.139648, 27.644606 ], [ -12.612305, 28.033198 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.825425 ], [ -10.393066, 29.094577 ], [ -9.558105, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.426270, 32.045333 ], [ -9.294434, 32.565333 ], [ -8.657227, 33.247876 ], [ -7.646484, 33.706063 ], [ -6.921387, 34.107256 ], [ -6.240234, 35.137879 ], [ -5.932617, 35.764343 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.567871, 16.594081 ], [ -14.106445, 16.299051 ], [ -13.425293, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 13.987376 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.132979 ], [ -11.469727, 12.747516 ], [ -11.513672, 12.447305 ], [ -11.667480, 12.382928 ], [ -12.194824, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.618897 ], [ -15.820312, 12.511665 ], [ -16.149902, 12.554564 ], [ -16.677246, 12.382928 ], [ -16.831055, 13.154376 ], [ -15.930176, 13.132979 ], [ -15.688477, 13.261333 ], [ -15.512695, 13.282719 ], [ -15.139160, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.842773, 13.496473 ], [ -14.040527, 13.795406 ], [ -14.370117, 13.624633 ], [ -14.677734, 13.624633 ], [ -15.073242, 13.880746 ], [ -15.402832, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.116699, 14.370834 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.923554 ], [ -16.699219, 15.623037 ], [ -16.457520, 16.130262 ], [ -16.127930, 16.446622 ], [ -15.622559, 16.362310 ], [ -15.139160, 16.594081 ], [ -14.567871, 16.594081 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.618897 ], [ -13.710938, 12.576010 ], [ -13.710938, 12.254128 ], [ -13.820801, 12.146746 ], [ -13.732910, 11.802834 ], [ -13.908691, 11.673755 ], [ -14.128418, 11.673755 ], [ -14.392090, 11.501557 ], [ -14.677734, 11.523088 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.325684, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.511665 ], [ -15.556641, 12.618897 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.391278 ], [ -4.921875, 24.966140 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.320139 ], [ -5.317383, 16.193575 ], [ -5.537109, 15.496032 ], [ -9.558105, 15.496032 ], [ -9.689941, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.796128 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.425293, 16.045813 ], [ -14.106445, 16.299051 ], [ -14.567871, 16.594081 ], [ -15.139160, 16.594081 ], [ -15.622559, 16.362310 ], [ -16.127930, 16.446622 ], [ -16.457520, 16.130262 ], [ -16.545410, 16.678293 ], [ -16.259766, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.103648 ], [ -16.369629, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.330315 ], [ -12.919922, 21.330315 ], [ -13.117676, 22.776182 ], [ -12.875977, 23.281719 ], [ -11.931152, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.679199, 25.878994 ], [ -8.679199, 27.391278 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.505371, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.373535, 14.923554 ], [ 0.285645, 14.434680 ], [ 0.439453, 13.987376 ], [ 0.988770, 13.325485 ], [ 1.032715, 12.854649 ], [ 1.757812, 12.704651 ], [ 1.757812, 11.609193 ], [ 1.450195, 11.544616 ], [ 1.252441, 11.113727 ], [ 0.900879, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.092166 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.005904 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.977051, 9.860628 ], [ -4.328613, 9.600750 ], [ -4.790039, 9.817329 ], [ -4.943848, 10.141932 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.941192 ], [ -5.207520, 11.372339 ], [ -5.229492, 11.716788 ], [ -4.416504, 12.533115 ], [ -4.284668, 13.218556 ], [ -3.999023, 13.475106 ], [ -3.515625, 13.346865 ], [ -3.098145, 13.539201 ], [ -2.966309, 13.795406 ], [ -2.197266, 14.243087 ], [ -1.999512, 14.562318 ], [ -1.076660, 14.966013 ], [ -0.505371, 15.114553 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.832520, 9.687398 ], [ -10.612793, 9.275622 ], [ -10.656738, 8.971897 ], [ -10.502930, 8.711359 ], [ -10.502930, 8.341953 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.928675 ], [ -11.140137, 7.406048 ], [ -11.206055, 7.100893 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.253496 ], [ -12.941895, 7.798079 ], [ -13.117676, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.340672 ], [ -12.590332, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.909180, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.849121, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.395505 ], [ -76.574707, 0.263671 ], [ -76.289062, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.366211, -0.153808 ], [ -75.234375, -0.900842 ], [ -75.541992, -1.559866 ], [ -75.739746, -1.757537 ], [ -80.793457, -1.757537 ], [ -80.925293, -1.054628 ], [ -80.573730, -0.900842 ], [ -80.397949, -0.285643 ], [ -80.222168, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.447305 ], [ -71.389160, 12.382928 ], [ -71.147461, 12.103781 ], [ -71.323242, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.224121, 11.113727 ], [ -72.619629, 10.811724 ], [ -72.905273, 10.444598 ], [ -73.037109, 9.730714 ], [ -73.300781, 9.145486 ], [ -72.795410, 9.080400 ], [ -72.663574, 8.624472 ], [ -72.443848, 8.407168 ], [ -72.355957, 7.993957 ], [ -72.487793, 7.623887 ], [ -72.443848, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.664062, 7.079088 ], [ -70.092773, 6.970049 ], [ -69.389648, 6.096860 ], [ -68.994141, 6.206090 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.550381 ], [ -67.741699, 5.222247 ], [ -67.829590, 4.499762 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.535352 ], [ -67.302246, 3.316018 ], [ -67.807617, 2.811371 ], [ -67.456055, 2.591889 ], [ -67.170410, 2.240640 ], [ -66.884766, 1.252342 ], [ -67.060547, 1.120534 ], [ -67.258301, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.691649 ], [ -69.807129, 1.713612 ], [ -69.807129, 1.098565 ], [ -69.213867, 0.988720 ], [ -69.257812, 0.593251 ], [ -69.455566, 0.703107 ], [ -70.004883, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.411621, -1.120534 ], [ -69.477539, -1.757537 ], [ -73.388672, -1.757537 ], [ -73.652344, -1.252342 ], [ -74.113770, -1.010690 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.065918 ], [ -75.366211, -0.153808 ], [ -75.651855, 0.000000 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.263671 ], [ -77.431641, 0.395505 ], [ -77.673340, 0.834931 ], [ -77.849121, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.757537 ], [ -78.662109, 2.262595 ], [ -78.420410, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.124023, 3.842332 ], [ -77.497559, 4.083453 ], [ -77.299805, 4.674980 ], [ -77.541504, 5.572250 ], [ -77.321777, 5.834616 ], [ -77.475586, 6.686431 ], [ -77.871094, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.233887, 7.928675 ], [ -77.475586, 8.515836 ], [ -77.343750, 8.667918 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.673828, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.476074, 10.617418 ], [ -74.904785, 11.092166 ], [ -74.267578, 11.092166 ], [ -74.201660, 11.307708 ], [ -73.410645, 11.221510 ], [ -72.246094, 11.953349 ], [ -71.762695, 12.447305 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.102539, -0.065918 ], [ -74.443359, -0.527336 ], [ -74.113770, -1.010690 ], [ -73.652344, -1.252342 ], [ -73.388672, -1.757537 ], [ -75.739746, -1.757537 ], [ -75.541992, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.366211, -0.153808 ], [ -75.102539, -0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 15.347762 ], [ 1.757812, 12.704651 ], [ 1.032715, 12.854649 ], [ 0.988770, 13.325485 ], [ 0.439453, 13.987376 ], [ 0.285645, 14.434680 ], [ 0.373535, 14.923554 ], [ 1.010742, 14.966013 ], [ 1.384277, 15.326572 ], [ 1.757812, 15.347762 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.747174 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.565474 ], [ -51.657715, 4.149201 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.504085 ], [ -52.932129, 2.130856 ], [ -53.415527, 2.043024 ], [ -53.547363, 2.328460 ], [ -53.789062, 2.372369 ], [ -54.096680, 2.108899 ], [ -54.514160, 2.306506 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.184394 ], [ -54.008789, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.470215, 4.893941 ], [ -53.964844, 5.747174 ] ] ], [ [ [ 1.757812, 50.972265 ], [ 1.757812, 42.374778 ], [ 0.703125, 42.795401 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.494141, 43.036776 ], [ -1.911621, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.219238, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.482422, 47.960502 ], [ -4.592285, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.988770, 49.353756 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.120578 ], [ 1.647949, 50.944584 ], [ 1.757812, 50.972265 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 36.633162 ], [ 1.757812, 20.653346 ], [ 0.000000, 21.800308 ], [ -4.921875, 24.966140 ], [ -8.679199, 27.391278 ], [ -8.679199, 28.844674 ], [ -7.053223, 29.573457 ], [ -6.064453, 29.726222 ], [ -5.251465, 29.993002 ], [ -4.855957, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.647461, 31.634676 ], [ -3.076172, 31.728167 ], [ -2.614746, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.120605, 32.657876 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.524661 ], [ -2.175293, 35.173808 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.597889 ], [ 1.757812, 36.633162 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 11.609193 ], [ 1.757812, 6.446318 ], [ 1.625977, 6.839170 ], [ 1.669922, 9.123792 ], [ 1.472168, 9.340672 ], [ 1.428223, 9.817329 ], [ 0.769043, 10.466206 ], [ 0.900879, 11.005904 ], [ 1.252441, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.757812, 11.609193 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.900879, 11.005904 ], [ 0.769043, 10.466206 ], [ 1.428223, 9.817329 ], [ 1.472168, 9.340672 ], [ 1.669922, 9.123792 ], [ 1.625977, 6.839170 ], [ 1.757812, 6.446318 ], [ 1.757812, 6.118708 ], [ 1.054688, 5.922045 ], [ 0.834961, 6.271618 ], [ 0.571289, 6.904614 ], [ 0.483398, 7.406048 ], [ 0.703125, 8.320212 ], [ 0.461426, 8.667918 ], [ 0.373535, 9.470736 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.639014 ], [ -0.043945, 10.703792 ], [ 0.021973, 11.027472 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.639014 ], [ 0.373535, 10.185187 ], [ 0.373535, 9.470736 ], [ 0.461426, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.904614 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.955566, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.249776 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.211490 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.005904 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.092166 ] ] ] } } ] } ] } , @@ -340,8 +318,6 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.131836, 1.757537 ], [ 44.077148, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.594238, -1.691649 ], [ 41.000977, -0.856902 ], [ 41.000977, 0.000000 ], [ 40.979004, 1.757537 ], [ 45.131836, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.051758, 1.757537 ], [ 13.293457, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.282227, 1.186439 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.326172, -0.549308 ], [ 14.436035, -1.340210 ], [ 14.304199, -1.999106 ], [ 13.996582, -2.460181 ], [ 13.117676, -2.438229 ], [ 12.568359, -1.955187 ], [ 12.502441, -2.394322 ], [ 11.821289, -2.504085 ], [ 11.469727, -2.767478 ], [ 11.865234, -3.425692 ], [ 11.096191, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.120534 ], [ 8.833008, -0.769020 ], [ 9.052734, -0.461421 ], [ 9.294434, 0.263671 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.293945, 1.054628 ], [ 11.271973, 1.757537 ], [ 13.051758, 1.757537 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.381348, -5.856475 ], [ 16.325684, -5.878332 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.231699 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.993957 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.993957 ], [ 19.160156, -7.732765 ], [ 19.423828, -7.166300 ], [ 20.039062, -7.122696 ], [ 20.083008, -6.948239 ], [ 20.610352, -6.948239 ], [ 20.522461, -7.297088 ], [ 21.730957, -7.297088 ], [ 21.752930, -7.928675 ], [ 21.950684, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.884766, -9.514079 ], [ 22.214355, -9.903921 ], [ 22.148438, -11.092166 ], [ 22.412109, -10.984335 ], [ 22.829590, -11.027472 ], [ 23.466797, -10.876465 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.243062 ], [ 23.906250, -11.716788 ], [ 24.082031, -12.189704 ], [ 23.928223, -12.576010 ], [ 24.016113, -12.918907 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.088042 ], [ 22.565918, -16.888660 ], [ 23.225098, -17.518344 ], [ 21.379395, -17.936929 ], [ 18.962402, -17.790535 ], [ 18.259277, -17.308688 ], [ 14.216309, -17.350638 ], [ 14.062500, -17.413546 ], [ 13.469238, -16.972741 ], [ 12.810059, -16.951724 ], [ 12.216797, -17.119793 ], [ 11.733398, -17.308688 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.881087 ], [ 12.172852, -14.455958 ], [ 12.502441, -13.539201 ], [ 12.744141, -13.132979 ], [ 13.315430, -12.490214 ], [ 13.623047, -12.039321 ], [ 13.732910, -11.307708 ], [ 13.688965, -10.725381 ], [ 13.381348, -10.379765 ], [ 12.875977, -9.167179 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.326660, -6.096860 ], [ 12.744141, -5.965754 ], [ 13.029785, -5.987607 ], [ 13.381348, -5.856475 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.985840, -4.784469 ], [ 12.634277, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.790897 ], [ 11.909180, -5.047171 ], [ 12.326660, -4.609278 ], [ 12.612305, -4.434044 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.951724 ], [ 13.469238, -16.972741 ], [ 14.062500, -17.413546 ], [ 14.216309, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.962402, -17.790535 ], [ 21.379395, -17.936929 ], [ 23.225098, -17.518344 ], [ 24.038086, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.581194 ], [ 25.092773, -17.664960 ], [ 24.521484, -17.895114 ], [ 24.213867, -17.895114 ], [ 23.576660, -18.271086 ], [ 23.203125, -17.874203 ], [ 21.665039, -18.229351 ], [ 20.917969, -18.250220 ], [ 20.874023, -21.820708 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 19.006348, -28.979312 ], [ 18.457031, -29.036961 ], [ 17.841797, -28.863918 ], [ 17.380371, -28.786918 ], [ 17.226562, -28.362402 ], [ 16.831055, -28.091366 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.098254 ], [ 14.985352, -26.115986 ], [ 14.743652, -25.383735 ], [ 14.414062, -23.845650 ], [ 14.392090, -22.654572 ], [ 14.260254, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.359375, -20.879343 ], [ 12.832031, -19.663280 ], [ 12.612305, -19.041349 ], [ 11.799316, -18.062312 ], [ 11.733398, -17.308688 ], [ 12.216797, -17.119793 ], [ 12.810059, -16.951724 ] ] ] } } @@ -366,14 +342,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.092773, -17.664960 ], [ 25.268555, -17.727759 ], [ 25.642090, -18.542117 ], [ 25.839844, -18.708692 ], [ 26.169434, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.729492, -20.488773 ], [ 27.729492, -20.858812 ], [ 28.015137, -21.493964 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.836946 ], [ 27.114258, -23.584126 ], [ 26.784668, -24.246965 ], [ 26.477051, -24.607069 ], [ 25.949707, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.312988, -25.264568 ], [ 22.829590, -25.502785 ], [ 22.587891, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.895996, -26.824071 ], [ 20.676270, -26.470573 ], [ 20.764160, -25.859224 ], [ 20.170898, -24.926295 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.820708 ], [ 20.917969, -18.250220 ], [ 21.665039, -18.229351 ], [ 23.203125, -17.874203 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.895114 ], [ 24.521484, -17.895114 ], [ 25.092773, -17.664960 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.421387, -22.085640 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.201172, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.839449 ], [ 31.333008, -25.661333 ], [ 31.047363, -25.740529 ], [ 30.959473, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.695801, -26.745610 ], [ 31.289062, -27.293689 ], [ 31.860352, -27.176469 ], [ 32.080078, -26.725987 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.453613, -28.304381 ], [ 32.211914, -28.748397 ], [ 31.333008, -29.401320 ], [ 30.893555, -29.916852 ], [ 30.629883, -30.429730 ], [ 30.058594, -31.147006 ], [ 28.916016, -32.175612 ], [ 28.212891, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.773926, -33.943360 ], [ 25.180664, -33.797409 ], [ 24.675293, -33.979809 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.925130 ], [ 22.565918, -33.870416 ], [ 21.533203, -34.252676 ], [ 20.698242, -34.415973 ], [ 20.061035, -34.795762 ], [ 19.621582, -34.813803 ], [ 19.204102, -34.470335 ], [ 18.852539, -34.452218 ], [ 18.435059, -33.998027 ], [ 18.369141, -34.143635 ], [ 18.237305, -33.870416 ], [ 18.259277, -33.284620 ], [ 17.929688, -32.602362 ], [ 18.237305, -32.435613 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.732393 ], [ 16.347656, -28.574874 ], [ 16.831055, -28.091366 ], [ 17.226562, -28.362402 ], [ 17.380371, -28.786918 ], [ 17.841797, -28.863918 ], [ 18.457031, -29.036961 ], [ 19.006348, -28.979312 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.170898, -24.926295 ], [ 20.764160, -25.859224 ], [ 20.676270, -26.470573 ], [ 20.895996, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.587891, -25.977799 ], [ 22.829590, -25.502785 ], [ 23.312988, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.213867, -25.661333 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.482951 ], [ 25.949707, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.246965 ], [ 27.114258, -23.584126 ], [ 28.015137, -22.836946 ], [ 29.421387, -22.085640 ] ], [ [ 28.542480, -28.652031 ], [ 28.081055, -28.844674 ], [ 27.531738, -29.248063 ], [ 27.004395, -29.878755 ], [ 27.751465, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.300781, -30.221102 ], [ 28.850098, -30.069094 ], [ 29.333496, -29.248063 ], [ 28.981934, -28.960089 ], [ 28.542480, -28.652031 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.661333 ], [ 31.838379, -25.839449 ], [ 31.992188, -26.293415 ], [ 32.080078, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.289062, -27.293689 ], [ 30.695801, -26.745610 ], [ 30.673828, -26.391870 ], [ 30.959473, -26.017298 ], [ 31.047363, -25.740529 ], [ 31.333008, -25.661333 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.542480, -28.652031 ], [ 28.981934, -28.960089 ], [ 29.333496, -29.248063 ], [ 28.850098, -30.069094 ], [ 28.300781, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.751465, -30.637912 ], [ 27.004395, -29.878755 ], [ 27.531738, -29.248063 ], [ 28.081055, -28.844674 ], [ 28.542480, -28.652031 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.928223, -48.618385 ], [ 69.587402, -48.936935 ], [ 70.532227, -49.066668 ], [ 70.554199, -49.253465 ], [ 70.290527, -49.710273 ], [ 68.752441, -49.781264 ], [ 68.730469, -49.239121 ], [ 68.928223, -48.618385 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.536133, -65.820782 ], [ 55.415039, -65.874725 ], [ 56.359863, -65.973325 ], [ 57.150879, -66.249163 ], [ 57.216797, -66.513260 ], [ 57.260742, -66.679087 ], [ 58.139648, -67.016009 ], [ 58.557129, -67.204032 ], [ 48.735352, -67.204032 ], [ 48.999023, -67.093105 ], [ 49.921875, -67.110204 ], [ 50.756836, -66.878345 ], [ 50.954590, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.249163 ], [ 52.624512, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ] ] ], [ [ [ 84.726562, -67.204032 ], [ 85.649414, -67.093105 ], [ 86.748047, -67.152898 ], [ 87.473145, -66.878345 ], [ 87.758789, -66.513260 ], [ 87.978516, -66.213739 ], [ 88.395996, -66.513260 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 84.726562, -67.204032 ] ] ], [ [ [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.127290 ], [ 91.757812, -67.204032 ], [ 90.834961, -67.204032 ] ] ] ] } } ] } ] } @@ -382,43 +354,41 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 55.478853 ], [ -1.120605, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.691895, 52.736292 ], [ 1.560059, 52.106505 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.764259 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.478853 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.977614 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.942383, 54.007769 ], [ 11.953125, 54.201010 ], [ 12.524414, 54.470038 ], [ 13.645020, 54.072283 ], [ 14.128418, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.084473, 52.975108 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.611816, 51.740636 ], [ 15.007324, 51.110420 ], [ 14.567871, 50.999929 ], [ 14.304199, 51.110420 ], [ 14.062500, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.261254 ], [ 12.414551, 49.965356 ], [ 12.524414, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.601074, 48.879167 ], [ 13.249512, 48.414619 ], [ 12.875977, 48.283193 ], [ 13.029785, 47.635784 ], [ 12.941895, 47.472663 ], [ 12.612305, 47.665387 ], [ 12.150879, 47.709762 ], [ 11.425781, 47.517201 ], [ 10.546875, 47.561701 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.576526 ], [ 9.602051, 47.532038 ], [ 8.525391, 47.827908 ], [ 8.327637, 47.620975 ], [ 7.470703, 47.620975 ], [ 7.602539, 48.327039 ], [ 8.107910, 49.023461 ], [ 6.657715, 49.196064 ], [ 6.196289, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.998535, 51.849353 ], [ 6.591797, 51.849353 ], [ 6.833496, 52.227799 ], [ 7.097168, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.129883, 53.527248 ], [ 8.811035, 54.020680 ], [ 8.569336, 54.393352 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.826008 ], [ 9.931641, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.018066, 67.204032 ], [ 15.402832, 66.513260 ], [ 15.117188, 66.196009 ], [ 13.557129, 64.783488 ], [ 13.930664, 64.444372 ], [ 13.579102, 64.052978 ], [ 12.590332, 64.062591 ], [ 11.931152, 63.124572 ], [ 11.997070, 61.804284 ], [ 12.634277, 61.291349 ], [ 12.304688, 60.119619 ], [ 11.469727, 59.433903 ], [ 11.030273, 58.859224 ], [ 10.349121, 59.467408 ], [ 8.371582, 58.309489 ], [ 7.053223, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.317383, 59.667741 ], [ 4.987793, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.547363, 63.450509 ], [ 10.524902, 64.482261 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.996582, 67.204032 ], [ 16.018066, 67.204032 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 67.204032 ], [ 23.554688, 66.513260 ], [ 23.576660, 66.399160 ], [ 23.906250, 66.009086 ], [ 22.192383, 65.721594 ], [ 21.203613, 65.025785 ], [ 21.379395, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.841797, 62.744665 ], [ 17.116699, 61.344078 ], [ 17.841797, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.950008 ], [ 16.831055, 58.722599 ], [ 16.457520, 57.040730 ], [ 15.886230, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.106445, 55.404070 ], [ 12.941895, 55.366625 ], [ 12.634277, 56.304349 ], [ 11.777344, 57.444949 ], [ 11.030273, 58.859224 ], [ 11.469727, 59.433903 ], [ 12.304688, 60.119619 ], [ 12.634277, 61.291349 ], [ 11.997070, 61.804284 ], [ 11.931152, 63.124572 ], [ 12.590332, 64.062591 ], [ 13.579102, 64.052978 ], [ 13.930664, 64.444372 ], [ 13.557129, 64.783488 ], [ 15.117188, 66.196009 ], [ 15.402832, 66.513260 ], [ 16.018066, 67.204032 ], [ 23.554688, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.108810 ], [ 12.700195, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.052246, 55.366625 ], [ 10.898438, 55.776573 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 10.590820, 57.727619 ], [ 10.546875, 57.219608 ], [ 10.239258, 56.885002 ], [ 10.371094, 56.607885 ], [ 10.920410, 56.462490 ], [ 10.678711, 56.084298 ], [ 10.371094, 56.194481 ], [ 9.645996, 55.466399 ], [ 9.931641, 54.977614 ], [ 9.272461, 54.826008 ], [ 8.525391, 54.965002 ], [ 8.129883, 55.516192 ], [ 8.085938, 56.535258 ], [ 8.261719, 56.812908 ], [ 8.547363, 57.112385 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.444949 ], [ 10.590820, 57.727619 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.134664 ], [ 6.240234, 49.908787 ], [ 6.196289, 49.468124 ], [ 5.888672, 49.439557 ], [ 5.668945, 49.525208 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.134664 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.382324, 43.004647 ], [ 9.558105, 42.147114 ], [ 9.228516, 41.376809 ], [ 8.767090, 41.590797 ], [ 8.547363, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.004647 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.658691, 50.792047 ], [ 3.120117, 50.778155 ], [ 3.581543, 50.373496 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.979488 ], [ 5.668945, 49.525208 ], [ 5.888672, 49.439557 ], [ 6.196289, 49.468124 ], [ 6.657715, 49.196064 ], [ 8.107910, 49.023461 ], [ 7.602539, 48.327039 ], [ 7.470703, 47.620975 ], [ 7.185059, 47.442950 ], [ 6.745605, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.042480, 46.724800 ], [ 6.020508, 46.271037 ], [ 6.503906, 46.422713 ], [ 6.833496, 45.996962 ], [ 6.811523, 45.706179 ], [ 7.097168, 45.336702 ], [ 6.745605, 45.026950 ], [ 7.009277, 44.260937 ], [ 7.558594, 44.134913 ], [ 7.426758, 43.691708 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.068888 ], [ 2.988281, 42.472097 ], [ 1.823730, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.494141, 43.036776 ], [ -1.757812, 43.277205 ], [ -1.757812, 43.596306 ], [ -1.384277, 44.024422 ], [ -1.186523, 46.012224 ], [ -1.757812, 46.589069 ], [ -1.757812, 48.661943 ], [ -1.625977, 48.647428 ], [ -1.757812, 49.152970 ], [ -1.757812, 49.696062 ], [ -0.988770, 49.353756 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.120578 ], [ 1.647949, 50.944584 ], [ 2.504883, 51.151786 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.313965, 49.567978 ], [ 19.819336, 49.210420 ], [ 20.412598, 49.425267 ], [ 20.895996, 49.325122 ], [ 21.599121, 49.468124 ], [ 22.565918, 49.081062 ], [ 22.280273, 48.821333 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.808105, 48.618385 ], [ 20.478516, 48.560250 ], [ 20.236816, 48.327039 ], [ 19.775391, 48.195387 ], [ 19.665527, 48.268569 ], [ 19.182129, 48.107431 ], [ 18.786621, 48.078079 ], [ 18.698730, 47.886881 ], [ 17.863770, 47.754098 ], [ 17.490234, 47.872144 ], [ 16.984863, 48.122101 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 48.994636 ], [ 18.105469, 49.037868 ], [ 18.171387, 49.267805 ], [ 18.391113, 49.310799 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.918457, 49.439557 ], [ 19.313965, 49.567978 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.682435 ], [ 19.797363, 42.504503 ], [ 20.061035, 42.585444 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.212245 ], [ 20.588379, 41.853196 ], [ 20.456543, 41.508577 ], [ 20.610352, 41.079351 ], [ 21.027832, 40.847060 ], [ 21.005859, 40.580585 ], [ 20.676270, 40.430224 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.622615 ], [ 19.973145, 39.690281 ], [ 19.951172, 39.909736 ], [ 19.401855, 40.245992 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.379883, 41.869561 ], [ 19.313965, 42.195969 ], [ 19.731445, 42.682435 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.498392 ], [ 16.875000, 46.377254 ], [ 17.622070, 45.951150 ], [ 18.457031, 45.752193 ], [ 18.830566, 45.905300 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 19.006348, 44.855869 ], [ 18.544922, 45.089036 ], [ 17.863770, 45.073521 ], [ 17.006836, 45.228481 ], [ 16.545410, 45.213004 ], [ 16.325684, 45.011419 ], [ 15.952148, 45.228481 ], [ 15.754395, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.457520, 44.040219 ], [ 16.918945, 43.659924 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.020714 ], [ 18.566895, 42.650122 ], [ 18.457031, 42.472097 ], [ 17.512207, 42.843751 ], [ 16.940918, 43.213183 ], [ 16.018066, 43.500752 ], [ 15.183105, 44.245199 ], [ 15.380859, 44.323848 ], [ 14.919434, 44.731126 ], [ 14.897461, 45.073521 ], [ 14.260254, 45.228481 ], [ 13.952637, 44.809122 ], [ 13.666992, 45.135555 ], [ 13.688965, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.414062, 45.460131 ], [ 14.589844, 45.629405 ], [ 14.941406, 45.475540 ], [ 15.336914, 45.444717 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.828799 ], [ 15.776367, 46.240652 ], [ 16.567383, 46.498392 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.851074, 56.377419 ], [ 25.004883, 56.170023 ], [ 25.532227, 56.096556 ], [ 26.499023, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.773926, 54.851315 ], [ 25.532227, 54.278055 ], [ 24.455566, 53.904338 ], [ 23.488770, 53.917281 ], [ 23.247070, 54.226708 ], [ 22.741699, 54.329338 ], [ 22.653809, 54.584797 ], [ 22.763672, 54.851315 ], [ 22.324219, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.884277, 56.267761 ], [ 24.851074, 56.377419 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 46.164614 ], [ 20.214844, 46.134170 ], [ 20.764160, 45.736860 ], [ 20.874023, 45.413876 ], [ 21.489258, 45.182037 ], [ 21.555176, 44.762337 ], [ 22.148438, 44.480830 ], [ 22.456055, 44.699898 ], [ 22.697754, 44.574817 ], [ 22.478027, 44.402392 ], [ 22.653809, 44.229457 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.609863, 42.892064 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.455888 ], [ 22.390137, 42.326062 ], [ 21.906738, 42.309815 ], [ 21.577148, 42.244785 ], [ 21.533203, 42.326062 ], [ 21.665039, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.643066, 42.682435 ], [ 21.445312, 42.859860 ], [ 21.269531, 42.908160 ], [ 21.137695, 43.068888 ], [ 20.961914, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.213183 ], [ 20.500488, 42.892064 ], [ 20.258789, 42.811522 ], [ 20.346680, 42.892064 ], [ 19.951172, 43.100983 ], [ 19.621582, 43.213183 ], [ 19.489746, 43.357138 ], [ 19.226074, 43.516689 ], [ 19.445801, 43.564472 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.418088 ], [ 19.357910, 44.855869 ], [ 19.006348, 44.855869 ], [ 19.379883, 45.243953 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.905300 ], [ 19.599609, 46.164614 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.229457 ], [ 22.939453, 43.818675 ], [ 23.334961, 43.897892 ], [ 24.104004, 43.739352 ], [ 25.576172, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.246094, 44.182204 ], [ 27.971191, 43.818675 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.000325 ], [ 27.136230, 42.147114 ], [ 26.125488, 41.820455 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.228249 ], [ 24.499512, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.961426, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.390137, 42.326062 ], [ 22.543945, 42.455888 ], [ 22.434082, 42.585444 ], [ 22.609863, 42.892064 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.653809, 44.229457 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.708496, 35.710838 ], [ 24.235840, 35.371135 ], [ 25.026855, 35.424868 ], [ 25.773926, 35.353216 ], [ 25.751953, 35.173808 ], [ 26.279297, 35.299435 ], [ 26.169434, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.741211, 35.083956 ], [ 23.510742, 35.281501 ], [ 23.708496, 35.710838 ] ] ], [ [ [ 26.125488, 41.820455 ], [ 26.608887, 41.557922 ], [ 26.301270, 40.930115 ], [ 26.059570, 40.830437 ], [ 25.444336, 40.847060 ], [ 24.916992, 40.946714 ], [ 23.708496, 40.680638 ], [ 24.411621, 40.128491 ], [ 23.906250, 39.960280 ], [ 23.334961, 39.960280 ], [ 22.807617, 40.480381 ], [ 22.631836, 40.262761 ], [ 22.851562, 39.656456 ], [ 23.356934, 39.198205 ], [ 22.983398, 38.976492 ], [ 23.532715, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.400879, 37.405074 ], [ 22.785645, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.500000, 36.403600 ], [ 21.665039, 36.844461 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.307181 ], [ 20.214844, 39.334297 ], [ 20.148926, 39.622615 ], [ 20.610352, 40.111689 ], [ 20.676270, 40.430224 ], [ 21.005859, 40.580585 ], [ 21.027832, 40.847060 ], [ 21.665039, 40.930115 ], [ 22.060547, 41.145570 ], [ 22.587891, 41.129021 ], [ 22.763672, 41.310824 ], [ 22.961426, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.499512, 41.590797 ], [ 25.202637, 41.228249 ], [ 26.103516, 41.327326 ], [ 26.125488, 41.820455 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.338867, 37.125286 ], [ 7.734375, 36.879621 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.478565 ], [ 8.151855, 34.651285 ], [ 7.514648, 34.089061 ], [ 7.602539, 33.339707 ], [ 8.437500, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.101190 ], [ 9.492188, 30.315988 ], [ 9.799805, 29.420460 ], [ 9.865723, 28.960089 ], [ 9.689941, 28.149503 ], [ 9.755859, 27.683528 ], [ 9.624023, 27.137368 ], [ 9.711914, 26.509905 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.363882 ], [ 9.953613, 24.946219 ], [ 10.305176, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.463246 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.601194 ], [ 4.262695, 19.145168 ], [ 3.164062, 19.062118 ], [ 3.142090, 19.683970 ], [ 2.680664, 19.849394 ], [ 2.065430, 20.138470 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.800308 ], [ -1.757812, 22.938160 ], [ -1.757812, 32.212801 ], [ -1.318359, 32.268555 ], [ -1.120605, 32.657876 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.925130 ], [ -1.757812, 35.406961 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.597889 ], [ 3.164062, 36.791691 ], [ 4.812012, 36.862043 ], [ 5.317383, 36.721274 ], [ 6.262207, 37.107765 ], [ 7.338867, 37.125286 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.608887, 48.224673 ], [ 26.916504, 48.122101 ], [ 27.224121, 47.827908 ], [ 27.553711, 47.398349 ], [ 28.125000, 46.815099 ], [ 28.168945, 46.377254 ], [ 28.059082, 45.951150 ], [ 28.234863, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.157715, 45.460131 ], [ 29.597168, 45.290347 ], [ 29.619141, 45.042478 ], [ 29.135742, 44.824708 ], [ 28.828125, 44.918139 ], [ 28.564453, 43.707594 ], [ 27.971191, 43.818675 ], [ 27.246094, 44.182204 ], [ 26.059570, 43.945372 ], [ 25.576172, 43.691708 ], [ 24.104004, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.939453, 43.818675 ], [ 22.653809, 44.229457 ], [ 22.478027, 44.402392 ], [ 22.697754, 44.574817 ], [ 22.456055, 44.699898 ], [ 22.148438, 44.480830 ], [ 21.555176, 44.762337 ], [ 21.489258, 45.182037 ], [ 20.874023, 45.413876 ], [ 20.764160, 45.736860 ], [ 20.214844, 46.134170 ], [ 21.027832, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.104492, 47.665387 ], [ 22.719727, 47.886881 ], [ 23.137207, 48.092757 ], [ 23.752441, 47.989922 ], [ 24.411621, 47.975214 ], [ 24.873047, 47.739323 ], [ 25.202637, 47.886881 ], [ 25.949707, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.608887, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.856445, 12.232655 ], [ 3.603516, 11.652236 ], [ 3.581543, 11.329253 ], [ 3.801270, 10.725381 ], [ 3.603516, 10.336536 ], [ 3.713379, 10.055403 ], [ 3.229980, 9.449062 ], [ 2.922363, 9.145486 ], [ 2.724609, 8.515836 ], [ 2.746582, 7.863382 ], [ 2.702637, 6.249776 ], [ 1.867676, 6.140555 ], [ 1.625977, 6.839170 ], [ 1.669922, 9.123792 ], [ 1.472168, 9.340672 ], [ 1.428223, 9.817329 ], [ 0.769043, 10.466206 ], [ 0.900879, 11.005904 ], [ 1.252441, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.933594, 11.630716 ], [ 2.153320, 11.931852 ], [ 2.482910, 12.232655 ], [ 2.856445, 12.232655 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.548548 ], [ 40.913086, 43.389082 ], [ 42.385254, 43.213183 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.553080 ], [ 44.538574, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.406250, 41.853196 ], [ 46.142578, 41.722131 ], [ 46.647949, 41.178654 ], [ 46.494141, 41.062786 ], [ 45.966797, 41.129021 ], [ 45.219727, 41.409776 ], [ 44.978027, 41.244772 ], [ 43.571777, 41.095912 ], [ 42.626953, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.704102, 41.967659 ], [ 41.462402, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.078125, 43.548548 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.293945, 1.054628 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.161133, 37.439974 ], [ 15.314941, 37.142803 ], [ 15.095215, 36.615528 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.030786 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.150879, 47.115000 ], [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.012224 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.392578, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.590332, 44.087585 ], [ 13.535156, 43.580391 ], [ 14.040527, 42.763146 ], [ 15.139160, 41.951320 ], [ 15.930176, 41.967659 ], [ 16.171875, 41.738528 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.162083 ], [ 18.303223, 39.808536 ], [ 17.731934, 40.279526 ], [ 16.875000, 40.446947 ], [ 16.457520, 39.791655 ], [ 17.160645, 39.419221 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.839708 ], [ 16.105957, 37.978845 ], [ 15.688477, 37.909534 ], [ 15.688477, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.959409 ], [ 15.402832, 40.044438 ], [ 15.007324, 40.178873 ], [ 14.699707, 40.597271 ], [ 14.062500, 40.780541 ], [ 13.623047, 41.195190 ], [ 12.897949, 41.261291 ], [ 12.106934, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.924252 ], [ 10.195312, 43.913723 ], [ 9.711914, 44.040219 ], [ 8.898926, 44.370987 ], [ 8.437500, 44.229457 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.691708 ], [ 7.558594, 44.134913 ], [ 7.009277, 44.260937 ], [ 6.745605, 45.026950 ], [ 7.097168, 45.336702 ], [ 6.811523, 45.706179 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.756348, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.184570, 46.437857 ], [ 9.931641, 46.316584 ], [ 10.371094, 46.483265 ], [ 10.437012, 46.890232 ], [ 11.052246, 46.754917 ], [ 11.162109, 46.935261 ], [ 12.150879, 47.115000 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.799805, 40.497092 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.232253 ], [ 8.811035, 38.908133 ], [ 8.437500, 39.164141 ], [ 8.393555, 40.380028 ], [ 8.151855, 40.946714 ], [ 8.701172, 40.896906 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.200684, 35.173808 ], [ 33.376465, 35.155846 ], [ 33.464355, 35.101934 ], [ 33.486328, 34.994004 ], [ 33.530273, 35.029996 ], [ 33.684082, 35.012002 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 34.013672, 34.976002 ], [ 32.980957, 34.578952 ], [ 32.497559, 34.705493 ], [ 32.255859, 35.101934 ], [ 32.739258, 35.137879 ], [ 32.915039, 35.083956 ], [ 33.200684, 35.173808 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.639014 ], [ 0.373535, 10.185187 ], [ 0.373535, 9.470736 ], [ 0.461426, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.904614 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.757812, 4.784469 ], [ -1.757812, 10.984335 ], [ -1.208496, 11.005904 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.092166 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.178223, 32.528289 ], [ 35.551758, 32.398516 ], [ 35.551758, 31.784217 ], [ 35.397949, 31.484893 ], [ 34.936523, 31.353637 ], [ 34.980469, 31.615966 ], [ 35.222168, 31.746854 ], [ 34.980469, 31.858897 ], [ 35.178223, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.501953, 12.854649 ], [ 14.897461, 12.211180 ], [ 14.963379, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.468750, 9.990491 ], [ 14.919434, 9.990491 ], [ 14.633789, 9.925566 ], [ 14.172363, 10.012130 ], [ 13.952637, 9.557417 ], [ 14.545898, 8.971897 ], [ 14.985352, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.446777, 7.689217 ], [ 14.765625, 6.402648 ], [ 14.545898, 6.227934 ], [ 14.458008, 5.441022 ], [ 14.567871, 5.025283 ], [ 14.479980, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.842332 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.008870 ], [ 15.908203, 2.547988 ], [ 16.018066, 2.262595 ], [ 15.930176, 1.735574 ], [ 14.348145, 2.218684 ], [ 13.073730, 2.262595 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.755371, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.942871, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.481445, 4.499762 ], [ 8.503418, 4.762573 ], [ 8.767090, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.446318 ], [ 10.107422, 7.035476 ], [ 10.502930, 7.057282 ], [ 11.052246, 6.642783 ], [ 11.755371, 6.991859 ], [ 11.843262, 7.406048 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.298470 ], [ 12.744141, 8.711359 ], [ 12.963867, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.315430, 10.163560 ], [ 13.579102, 10.790141 ], [ 14.414062, 11.566144 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.082296 ], [ 14.172363, 12.490214 ], [ 14.216309, 12.811801 ], [ 14.501953, 12.854649 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.402765 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.601875 ], [ 23.027344, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.521973, 14.093957 ], [ 22.192383, 13.795406 ], [ 22.302246, 13.368243 ], [ 22.038574, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.640338 ], [ 22.500000, 12.254128 ], [ 22.500000, 11.673755 ], [ 22.873535, 11.393879 ], [ 22.873535, 11.135287 ], [ 22.236328, 10.962764 ], [ 21.730957, 10.574222 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.918457, 8.624472 ], [ 18.391113, 8.276727 ], [ 17.973633, 7.885147 ], [ 16.699219, 7.514981 ], [ 16.457520, 7.732765 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.270996, 7.427837 ], [ 15.446777, 7.689217 ], [ 15.117188, 8.385431 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.172363, 10.012130 ], [ 14.633789, 9.925566 ], [ 14.919434, 9.990491 ], [ 15.468750, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.963379, 11.566144 ], [ 14.897461, 12.211180 ], [ 14.501953, 12.854649 ], [ 14.589844, 13.325485 ], [ 13.952637, 13.346865 ], [ 13.952637, 13.987376 ], [ 13.535156, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.735566 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.857195 ], [ 15.864258, 23.402765 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 39.001465, 16.846605 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.088379, 12.704651 ], [ 42.780762, 12.447305 ], [ 42.341309, 12.533115 ], [ 42.011719, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.115267 ], [ 40.034180, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.732386 ], [ 38.518066, 14.498508 ], [ 37.902832, 14.966013 ], [ 37.595215, 14.221789 ], [ 36.430664, 14.413400 ], [ 36.320801, 14.817371 ], [ 36.760254, 16.299051 ], [ 36.848145, 16.951724 ], [ 37.177734, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.406250, 41.853196 ], [ 46.691895, 41.820455 ], [ 47.373047, 41.211722 ], [ 47.812500, 41.145570 ], [ 47.988281, 41.409776 ], [ 48.581543, 41.804078 ], [ 49.108887, 41.277806 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.044786 ], [ 48.867188, 38.822591 ], [ 48.889160, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.788345 ], [ 48.361816, 39.283294 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.504041 ], [ 46.516113, 38.771216 ], [ 46.494141, 39.470125 ], [ 46.032715, 39.622615 ], [ 45.615234, 39.892880 ], [ 45.900879, 40.212441 ], [ 45.351562, 40.563895 ], [ 45.571289, 40.813809 ], [ 45.175781, 40.979898 ], [ 44.978027, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.129021 ], [ 46.494141, 41.062786 ], [ 46.647949, 41.178654 ], [ 46.142578, 41.722131 ], [ 46.406250, 41.853196 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.307617, 39.470125 ], [ 45.747070, 39.470125 ], [ 45.725098, 39.317300 ], [ 46.142578, 38.736946 ], [ 45.461426, 38.873929 ], [ 44.956055, 39.334297 ], [ 44.802246, 39.707187 ], [ 45.000000, 39.740986 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.223633, 43.293200 ], [ 75.629883, 42.875964 ], [ 76.003418, 42.988576 ], [ 77.651367, 42.956423 ], [ 79.145508, 42.859860 ], [ 79.650879, 42.504503 ], [ 80.266113, 42.342305 ], [ 80.112305, 42.130821 ], [ 78.552246, 41.574361 ], [ 78.178711, 41.178654 ], [ 76.904297, 41.062786 ], [ 76.530762, 40.430224 ], [ 75.476074, 40.563895 ], [ 74.772949, 40.363288 ], [ 73.828125, 39.892880 ], [ 73.959961, 39.656456 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.554199, 39.605688 ], [ 69.455566, 39.520992 ], [ 69.565430, 40.094882 ], [ 70.642090, 39.943436 ], [ 71.015625, 40.245992 ], [ 71.784668, 40.145289 ], [ 73.059082, 40.863680 ], [ 71.872559, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.422363, 41.525030 ], [ 71.257324, 42.163403 ], [ 70.971680, 42.261049 ], [ 71.191406, 42.698586 ], [ 71.850586, 42.843751 ], [ 73.498535, 42.504503 ], [ 73.652344, 43.084937 ], [ 74.223633, 43.293200 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.403809, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.458008, 22.654572 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.105000 ], [ 58.491211, 20.427013 ], [ 58.029785, 20.488773 ], [ 57.832031, 20.241583 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.062118 ], [ 57.700195, 18.937464 ], [ 57.238770, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.513672, 18.083201 ], [ 56.293945, 17.874203 ], [ 55.656738, 17.874203 ], [ 55.261230, 17.623082 ], [ 55.283203, 17.224758 ], [ 54.799805, 16.951724 ], [ 54.228516, 17.035777 ], [ 53.569336, 16.699340 ], [ 53.107910, 16.657244 ], [ 52.009277, 18.999803 ], [ 54.997559, 19.993998 ], [ 55.656738, 22.004175 ], [ 55.217285, 22.715390 ], [ 55.239258, 23.120154 ], [ 55.524902, 23.523700 ], [ 55.524902, 23.926013 ], [ 55.986328, 24.126702 ], [ 55.810547, 24.266997 ], [ 55.876465, 24.926295 ], [ 56.403809, 24.926295 ] ] ], [ [ [ 56.359863, 26.391870 ], [ 56.491699, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.271973, 25.720735 ], [ 56.074219, 26.056783 ], [ 56.359863, 26.391870 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.157012 ], [ 40.407715, 31.896214 ], [ 41.879883, 31.184609 ], [ 44.714355, 29.171349 ], [ 46.560059, 29.094577 ], [ 47.460938, 28.998532 ], [ 47.702637, 28.516969 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.683528 ], [ 49.306641, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.686730 ], [ 50.207520, 26.273714 ], [ 50.119629, 25.938287 ], [ 50.229492, 25.601902 ], [ 50.537109, 25.324167 ], [ 50.668945, 25.005973 ], [ 50.800781, 24.746831 ], [ 51.108398, 24.547123 ], [ 51.394043, 24.627045 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.006326 ], [ 52.009277, 22.998852 ], [ 54.997559, 22.492257 ], [ 55.217285, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 19.993998 ], [ 52.009277, 18.999803 ], [ 49.108887, 18.625425 ], [ 48.186035, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.757812, 17.287709 ], [ 46.362305, 17.224758 ], [ 45.395508, 17.329664 ], [ 45.219727, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.220215, 16.657244 ], [ 42.780762, 16.341226 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.748047, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.935059, 19.476950 ], [ 40.253906, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.573438 ], [ 38.496094, 23.684774 ], [ 38.034668, 24.086589 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.650391, 25.819672 ], [ 36.254883, 26.568877 ], [ 35.134277, 28.071980 ], [ 34.628906, 28.052591 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.958496, 29.363027 ], [ 36.079102, 29.190533 ], [ 36.496582, 29.496988 ], [ 36.738281, 29.859701 ], [ 37.507324, 30.012031 ], [ 37.661133, 30.334954 ], [ 37.990723, 30.505484 ], [ 37.001953, 31.503629 ], [ 39.001465, 32.008076 ], [ 39.199219, 32.157012 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.154297, 11.458491 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.854886 ], [ 44.121094, 10.444598 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.135287 ], [ 48.032227, 11.199957 ], [ 48.383789, 11.372339 ], [ 48.955078, 11.415418 ], [ 48.933105, 9.449062 ], [ 48.493652, 8.841651 ], [ 47.790527, 7.993957 ], [ 46.955566, 7.993957 ], [ 43.681641, 9.188870 ], [ 43.286133, 9.535749 ], [ 42.561035, 10.574222 ], [ 43.154297, 11.458491 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.168457, 37.125286 ], [ 75.893555, 36.668419 ], [ 76.201172, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.882324, 34.651285 ], [ 75.761719, 34.506557 ], [ 74.245605, 34.741612 ], [ 73.740234, 34.325292 ], [ 74.113770, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.268555 ], [ 74.399414, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.454590, 29.973970 ], [ 72.817383, 28.960089 ], [ 71.784668, 27.916767 ], [ 70.620117, 27.994401 ], [ 69.521484, 26.941660 ], [ 70.158691, 26.490240 ], [ 70.290527, 25.720735 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.347097 ], [ 68.840332, 24.367114 ], [ 68.181152, 23.684774 ], [ 67.434082, 23.946096 ], [ 67.148438, 24.666986 ], [ 66.379395, 25.423431 ], [ 64.533691, 25.244696 ], [ 62.907715, 25.224820 ], [ 61.501465, 25.085599 ], [ 61.875000, 26.234302 ], [ 63.325195, 26.765231 ], [ 63.237305, 27.215556 ], [ 62.753906, 27.371767 ], [ 62.731934, 28.265682 ], [ 61.765137, 28.690588 ], [ 61.369629, 29.305561 ], [ 60.864258, 29.821583 ], [ 62.556152, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.357910, 29.554345 ], [ 65.039062, 29.477861 ], [ 66.357422, 29.878755 ], [ 66.379395, 30.732393 ], [ 66.928711, 31.297328 ], [ 67.675781, 31.297328 ], [ 67.785645, 31.578535 ], [ 68.554688, 31.709476 ], [ 68.928223, 31.615966 ], [ 69.323730, 31.896214 ], [ 69.257812, 32.509762 ], [ 69.697266, 33.100745 ], [ 70.334473, 33.358062 ], [ 69.938965, 34.016242 ], [ 70.883789, 33.979809 ], [ 71.147461, 34.343436 ], [ 71.125488, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.499023, 35.657296 ], [ 71.257324, 36.066862 ], [ 71.850586, 36.509636 ], [ 72.927246, 36.721274 ], [ 74.069824, 36.844461 ], [ 74.575195, 37.020098 ], [ 75.168457, 37.125286 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.285033 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.033198 ], [ 91.757812, 27.722436 ], [ 91.757812, 26.824071 ], [ 91.208496, 26.804461 ], [ 90.373535, 26.882880 ], [ 90.000000, 26.784847 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.293689 ], [ 89.472656, 28.033198 ], [ 90.000000, 28.285033 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.142502 ], [ 30.805664, -1.691649 ], [ 30.805664, -1.757537 ], [ 29.289551, -1.757537 ], [ 29.289551, -1.625758 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.450040 ], [ 30.410156, -1.142502 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.288086, 5.506640 ], [ 35.815430, 5.331644 ], [ 35.815430, 4.784469 ], [ 36.166992, 4.455951 ], [ 36.848145, 4.455951 ], [ 38.122559, 3.601142 ], [ 38.671875, 3.623071 ], [ 38.891602, 3.491489 ], [ 39.550781, 3.425692 ], [ 39.858398, 3.842332 ], [ 40.759277, 4.258768 ], [ 41.176758, 3.930020 ], [ 41.857910, 3.908099 ], [ 40.979004, 2.789425 ], [ 41.000977, 0.000000 ], [ 41.000977, -0.856902 ], [ 41.594238, -1.691649 ], [ 41.462402, -1.757537 ], [ 35.310059, -1.757537 ], [ 33.903809, -0.944781 ], [ 33.903809, 0.109863 ], [ 34.672852, 1.186439 ], [ 35.046387, 1.911267 ], [ 34.606934, 3.052754 ], [ 34.475098, 3.557283 ], [ 34.013672, 4.258768 ], [ 35.288086, 5.506640 ] ] ] } } ] } ] } , @@ -470,30 +440,24 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 67.204032 ], [ 181.757812, 67.204032 ], [ 181.757812, 65.403445 ], [ 181.647949, 65.394298 ], [ 181.098633, 65.739656 ], [ 181.318359, 66.116068 ], [ 180.109863, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.605038 ], [ 178.308105, 64.072200 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.494629, 62.573106 ], [ 179.230957, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.572754, 61.773123 ], [ 173.671875, 61.648162 ], [ 172.155762, 60.951777 ], [ 170.705566, 60.337823 ], [ 170.332031, 59.877912 ], [ 168.903809, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.849609, 60.163376 ], [ 164.882812, 59.734253 ], [ 163.542480, 59.866883 ], [ 163.212891, 59.209688 ], [ 162.026367, 58.240164 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.610107 ], [ 163.059082, 56.157788 ], [ 162.136230, 56.121060 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.851315 ], [ 160.378418, 54.342149 ], [ 160.026855, 53.199452 ], [ 158.532715, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.796875, 51.013755 ], [ 156.423340, 51.699800 ], [ 155.983887, 53.159947 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.764768 ], [ 156.752930, 57.362090 ], [ 156.818848, 57.833055 ], [ 158.356934, 58.054632 ], [ 160.158691, 59.310768 ], [ 161.872559, 60.337823 ], [ 163.674316, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.461567 ], [ 162.663574, 61.637726 ], [ 160.114746, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.730957, 61.438767 ], [ 154.226074, 59.756395 ], [ 155.039062, 59.142135 ], [ 152.819824, 58.881942 ], [ 151.259766, 58.779591 ], [ 151.347656, 59.500880 ], [ 149.787598, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.333189 ], [ 142.207031, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.131836, 54.724620 ], [ 136.691895, 54.597528 ], [ 137.197266, 53.981935 ], [ 138.164062, 53.748711 ], [ 138.801270, 54.252389 ], [ 139.899902, 54.188155 ], [ 141.350098, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.603027, 51.234407 ], [ 140.515137, 50.050085 ], [ 140.053711, 48.443778 ], [ 138.559570, 46.995241 ], [ 138.229980, 46.301406 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.912598, 42.795401 ], [ 132.275391, 43.277205 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.212245 ], [ 130.649414, 42.391009 ], [ 130.627441, 42.908160 ], [ 131.154785, 42.924252 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.964798 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.121094, 47.219568 ], [ 134.494629, 47.576526 ], [ 135.021973, 48.472921 ], [ 133.374023, 48.180739 ], [ 132.517090, 47.783635 ], [ 130.979004, 47.783635 ], [ 130.583496, 48.734455 ], [ 129.396973, 49.439557 ], [ 127.661133, 49.767074 ], [ 127.287598, 50.736455 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.781436 ], [ 125.947266, 52.789476 ], [ 125.068359, 53.159947 ], [ 123.574219, 53.461890 ], [ 122.255859, 53.435719 ], [ 121.003418, 53.252069 ], [ 120.168457, 52.749594 ], [ 120.717773, 52.522906 ], [ 120.739746, 51.957807 ], [ 120.190430, 51.645294 ], [ 119.289551, 50.583237 ], [ 119.289551, 50.148746 ], [ 117.883301, 49.510944 ], [ 116.674805, 49.894634 ], [ 115.488281, 49.809632 ], [ 114.960938, 50.134664 ], [ 114.367676, 50.247205 ], [ 112.895508, 49.539469 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.124219 ], [ 109.401855, 49.296472 ], [ 108.479004, 49.282140 ], [ 107.863770, 49.795450 ], [ 106.896973, 50.275299 ], [ 105.886230, 50.401515 ], [ 104.611816, 50.275299 ], [ 103.666992, 50.092393 ], [ 102.260742, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.898438, 51.522416 ], [ 99.975586, 51.631657 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.239746, 50.415519 ], [ 97.250977, 49.724479 ], [ 95.822754, 49.979488 ], [ 94.812012, 50.007739 ], [ 94.152832, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.241211, 50.805935 ], [ 90.703125, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.813477, 49.468124 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.261719, 52.736292 ], [ 143.239746, 51.754240 ], [ 143.657227, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.857403 ], [ 143.525391, 46.830134 ], [ 143.503418, 46.134170 ], [ 142.756348, 46.739861 ], [ 142.097168, 45.966425 ], [ 141.899414, 46.800059 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.141113, 49.610710 ], [ 142.185059, 50.958427 ], [ 141.591797, 51.930718 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, 25.839449 ], [ 88.242188, 27.916767 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.098254 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.882880 ], [ 91.208496, 26.804461 ], [ 92.043457, 26.843677 ], [ 92.109375, 27.449790 ], [ 91.691895, 27.780772 ], [ 92.504883, 27.897349 ], [ 93.405762, 28.632747 ], [ 94.570312, 29.286399 ], [ 95.405273, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.591797, 28.825425 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.404785, 27.877928 ], [ 97.053223, 27.702984 ], [ 97.141113, 27.078692 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.568877 ], [ 95.163574, 25.997550 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.666986 ], [ 94.108887, 23.845650 ], [ 93.317871, 24.086589 ], [ 93.295898, 23.039298 ], [ 93.054199, 22.695120 ], [ 93.164062, 22.268764 ], [ 92.680664, 22.044913 ], [ 92.153320, 23.624395 ], [ 91.867676, 23.624395 ], [ 91.713867, 22.978624 ], [ 91.164551, 23.503552 ], [ 91.472168, 24.066528 ], [ 91.911621, 24.126702 ], [ 92.373047, 24.986058 ], [ 91.801758, 25.145285 ], [ 90.878906, 25.125393 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.264568 ], [ 89.824219, 25.958045 ], [ 89.362793, 26.017298 ], [ 88.571777, 26.450902 ], [ 88.242188, 25.839449 ] ] ], [ [ [ 88.242188, 24.427145 ], [ 88.703613, 24.226929 ], [ 88.527832, 23.624395 ], [ 88.879395, 22.877440 ], [ 89.033203, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.242188, 21.698265 ], [ 88.242188, 24.427145 ] ] ], [ [ [ 88.242188, 25.740529 ], [ 88.923340, 25.244696 ], [ 88.308105, 24.866503 ], [ 88.242188, 24.766785 ], [ 88.242188, 25.740529 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.631657 ], [ 100.898438, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.260742, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.275299 ], [ 105.886230, 50.401515 ], [ 106.896973, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.479004, 49.282140 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.124219 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.539469 ], [ 114.367676, 50.247205 ], [ 114.960938, 50.134664 ], [ 115.488281, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.488281, 48.136767 ], [ 115.751953, 47.724545 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.694974 ], [ 118.059082, 48.063397 ], [ 118.872070, 47.754098 ], [ 119.772949, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.800059 ], [ 117.421875, 46.679594 ], [ 116.718750, 46.392411 ], [ 115.993652, 45.721522 ], [ 114.455566, 45.336702 ], [ 113.466797, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.357422, 44.465151 ], [ 111.665039, 44.071800 ], [ 111.818848, 43.739352 ], [ 111.137695, 43.405047 ], [ 110.412598, 42.875964 ], [ 109.248047, 42.520700 ], [ 107.753906, 42.488302 ], [ 106.127930, 42.130821 ], [ 104.963379, 41.590797 ], [ 104.523926, 41.902277 ], [ 103.315430, 41.902277 ], [ 101.843262, 42.520700 ], [ 100.854492, 42.666281 ], [ 99.514160, 42.520700 ], [ 97.448730, 42.747012 ], [ 96.350098, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.317383, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.593262, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.285645, 47.694974 ], [ 88.857422, 48.063397 ], [ 88.242188, 48.458352 ], [ 88.242188, 49.382373 ], [ 88.813477, 49.468124 ], [ 90.000000, 50.007739 ], [ 90.703125, 50.331436 ], [ 92.241211, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.152832, 50.485474 ], [ 94.812012, 50.007739 ], [ 95.822754, 49.979488 ], [ 97.250977, 49.724479 ], [ 98.239746, 50.415519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.214844, 20.097206 ], [ 110.786133, 20.076570 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.248922 ], [ 110.346680, 18.687879 ], [ 109.467773, 18.187607 ], [ 108.654785, 18.500447 ], [ 108.632812, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.214844, 20.097206 ] ] ], [ [ [ 123.574219, 53.461890 ], [ 125.068359, 53.159947 ], [ 125.947266, 52.789476 ], [ 126.562500, 51.781436 ], [ 126.936035, 51.358062 ], [ 127.287598, 50.736455 ], [ 127.661133, 49.767074 ], [ 129.396973, 49.439557 ], [ 130.583496, 48.734455 ], [ 130.979004, 47.783635 ], [ 132.517090, 47.783635 ], [ 133.374023, 48.180739 ], [ 135.021973, 48.472921 ], [ 134.494629, 47.576526 ], [ 134.121094, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.964798 ], [ 131.286621, 44.119142 ], [ 131.154785, 42.924252 ], [ 130.627441, 42.908160 ], [ 130.649414, 42.391009 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.423457 ], [ 128.056641, 42.000325 ], [ 128.210449, 41.459195 ], [ 127.353516, 41.508577 ], [ 126.870117, 41.820455 ], [ 126.188965, 41.112469 ], [ 125.090332, 40.563895 ], [ 124.255371, 39.926588 ], [ 122.871094, 39.639538 ], [ 122.124023, 39.164141 ], [ 121.047363, 38.891033 ], [ 121.596680, 39.368279 ], [ 121.376953, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.640625, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.641113, 39.892880 ], [ 119.025879, 39.249271 ], [ 118.037109, 39.198205 ], [ 117.531738, 38.736946 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.892196 ], [ 118.916016, 37.439974 ], [ 119.707031, 37.160317 ], [ 120.827637, 37.874853 ], [ 121.706543, 37.474858 ], [ 122.365723, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.113281, 36.650793 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.603719 ], [ 119.157715, 34.903953 ], [ 120.234375, 34.361576 ], [ 120.629883, 33.376412 ], [ 121.223145, 32.454156 ], [ 121.904297, 31.690782 ], [ 121.882324, 30.958769 ], [ 121.267090, 30.675715 ], [ 121.508789, 30.145127 ], [ 122.102051, 29.840644 ], [ 121.948242, 29.017748 ], [ 121.684570, 28.226970 ], [ 121.135254, 28.130128 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.740529 ], [ 118.652344, 24.547123 ], [ 117.290039, 23.624395 ], [ 115.883789, 22.776182 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.247070, 22.044913 ], [ 111.840820, 21.555284 ], [ 110.786133, 21.391705 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.002471 ], [ 109.863281, 21.391705 ], [ 108.522949, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.050781, 21.820708 ], [ 106.567383, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.820312, 22.978624 ], [ 105.336914, 23.342256 ], [ 104.479980, 22.816694 ], [ 103.513184, 22.695120 ], [ 102.700195, 22.715390 ], [ 102.172852, 22.471955 ], [ 101.645508, 22.309426 ], [ 101.799316, 21.166484 ], [ 101.271973, 21.207459 ], [ 101.184082, 21.432617 ], [ 101.140137, 21.841105 ], [ 100.415039, 21.555284 ], [ 99.250488, 22.126355 ], [ 99.536133, 22.958393 ], [ 98.898926, 23.140360 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.734375, 25.085599 ], [ 98.679199, 25.918526 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.508271 ], [ 98.239746, 27.741885 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.591797, 28.825425 ], [ 96.108398, 29.458731 ], [ 95.405273, 29.036961 ], [ 94.570312, 29.286399 ], [ 93.405762, 28.632747 ], [ 92.504883, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.033198 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.033198 ], [ 88.813477, 27.293689 ], [ 88.725586, 28.091366 ], [ 88.242188, 27.916767 ], [ 88.242188, 48.458352 ], [ 88.857422, 48.063397 ], [ 90.285645, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.593262, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.317383, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.350098, 42.730874 ], [ 97.448730, 42.747012 ], [ 99.514160, 42.520700 ], [ 100.854492, 42.666281 ], [ 101.843262, 42.520700 ], [ 103.315430, 41.902277 ], [ 104.523926, 41.902277 ], [ 104.963379, 41.590797 ], [ 106.127930, 42.130821 ], [ 107.753906, 42.488302 ], [ 109.248047, 42.520700 ], [ 110.412598, 42.875964 ], [ 111.137695, 43.405047 ], [ 111.818848, 43.739352 ], [ 111.665039, 44.071800 ], [ 111.357422, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.466797, 44.809122 ], [ 114.455566, 45.336702 ], [ 115.993652, 45.721522 ], [ 116.718750, 46.392411 ], [ 117.421875, 46.679594 ], [ 118.872070, 46.800059 ], [ 119.663086, 46.694667 ], [ 119.772949, 47.055154 ], [ 118.872070, 47.754098 ], [ 118.059082, 48.063397 ], [ 117.290039, 47.694974 ], [ 116.301270, 47.857403 ], [ 115.751953, 47.724545 ], [ 115.488281, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.883301, 49.510944 ], [ 119.289551, 50.148746 ], [ 119.289551, 50.583237 ], [ 120.190430, 51.645294 ], [ 120.739746, 51.957807 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.749594 ], [ 121.003418, 53.252069 ], [ 122.255859, 53.435719 ], [ 123.574219, 53.461890 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.285033 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.033198 ], [ 91.691895, 27.780772 ], [ 92.109375, 27.449790 ], [ 92.043457, 26.843677 ], [ 91.208496, 26.804461 ], [ 90.373535, 26.882880 ], [ 90.000000, 26.784847 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.293689 ], [ 89.472656, 28.033198 ], [ 90.000000, 28.285033 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.571777, 26.450902 ], [ 89.362793, 26.017298 ], [ 89.824219, 25.958045 ], [ 89.912109, 25.264568 ], [ 90.000000, 25.264568 ], [ 90.878906, 25.125393 ], [ 91.801758, 25.145285 ], [ 92.373047, 24.986058 ], [ 91.911621, 24.126702 ], [ 91.472168, 24.066528 ], [ 91.164551, 23.503552 ], [ 91.713867, 22.978624 ], [ 91.867676, 23.624395 ], [ 92.153320, 23.624395 ], [ 92.680664, 22.044913 ], [ 92.658691, 21.330315 ], [ 92.307129, 21.473518 ], [ 92.373047, 20.673905 ], [ 92.087402, 21.186973 ], [ 92.021484, 21.698265 ], [ 91.845703, 22.187405 ], [ 91.406250, 22.755921 ], [ 90.505371, 22.796439 ], [ 90.593262, 22.390714 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.428711, 21.963425 ], [ 89.033203, 22.065278 ], [ 88.879395, 22.877440 ], [ 88.527832, 23.624395 ], [ 88.703613, 24.226929 ], [ 88.242188, 24.427145 ], [ 88.242188, 24.766785 ], [ 88.308105, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.242188, 25.740529 ], [ 88.242188, 25.839449 ], [ 88.571777, 26.450902 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.239746, 27.741885 ], [ 98.679199, 27.508271 ], [ 98.701172, 26.745610 ], [ 98.679199, 25.918526 ], [ 97.734375, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.898926, 23.140360 ], [ 99.536133, 22.958393 ], [ 99.250488, 22.126355 ], [ 100.415039, 21.555284 ], [ 101.140137, 21.841105 ], [ 101.184082, 21.432617 ], [ 100.327148, 20.776659 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.179724 ], [ 98.964844, 19.746024 ], [ 98.261719, 19.704658 ], [ 97.800293, 18.625425 ], [ 97.382812, 18.437925 ], [ 97.866211, 17.560247 ], [ 98.503418, 16.846605 ], [ 98.898926, 16.172473 ], [ 98.547363, 15.305380 ], [ 98.195801, 15.114553 ], [ 98.437500, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.261333 ], [ 99.206543, 12.811801 ], [ 99.580078, 11.888853 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.925566 ], [ 98.459473, 10.682201 ], [ 98.767090, 11.436955 ], [ 98.437500, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.107910, 13.645987 ], [ 97.778320, 14.838612 ], [ 97.602539, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.361328, 15.707663 ], [ 94.812012, 15.813396 ], [ 94.196777, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.328613, 18.208480 ], [ 93.537598, 19.373341 ], [ 93.669434, 19.725342 ], [ 93.076172, 19.849394 ], [ 92.373047, 20.673905 ], [ 92.307129, 21.473518 ], [ 92.658691, 21.330315 ], [ 92.680664, 22.044913 ], [ 93.164062, 22.268764 ], [ 93.054199, 22.695120 ], [ 93.295898, 23.039298 ], [ 93.317871, 24.086589 ], [ 94.108887, 23.845650 ], [ 94.548340, 24.666986 ], [ 94.592285, 25.165173 ], [ 95.163574, 25.997550 ], [ 95.119629, 26.568877 ], [ 96.416016, 27.274161 ], [ 97.141113, 27.078692 ], [ 97.053223, 27.702984 ], [ 97.404785, 27.877928 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.471955 ], [ 102.744141, 21.677848 ], [ 103.205566, 20.776659 ], [ 104.436035, 20.756114 ], [ 104.831543, 19.890723 ], [ 104.194336, 19.621892 ], [ 103.886719, 19.269665 ], [ 105.095215, 18.667063 ], [ 106.545410, 16.594081 ], [ 107.314453, 15.919074 ], [ 107.556152, 15.199386 ], [ 107.380371, 14.200488 ], [ 106.501465, 14.562318 ], [ 106.040039, 13.880746 ], [ 105.227051, 14.264383 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.787598, 16.446622 ], [ 104.721680, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.205566, 18.312811 ], [ 103.007812, 17.957832 ], [ 102.414551, 17.936929 ], [ 102.106934, 18.104087 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.456234 ], [ 100.612793, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.776659 ], [ 101.184082, 21.432617 ], [ 101.271973, 21.207459 ], [ 101.799316, 21.166484 ], [ 101.645508, 22.309426 ], [ 102.172852, 22.471955 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ], [ 100.612793, 19.518375 ], [ 101.271973, 19.456234 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.104087 ], [ 102.414551, 17.936929 ], [ 103.007812, 17.957832 ], [ 103.205566, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.721680, 17.434511 ], [ 104.787598, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.227051, 14.264383 ], [ 104.282227, 14.413400 ], [ 102.985840, 14.221789 ], [ 102.348633, 13.389620 ], [ 102.590332, 12.189704 ], [ 101.689453, 12.640338 ], [ 100.832520, 12.618897 ], [ 100.986328, 13.410994 ], [ 100.107422, 13.410994 ], [ 100.019531, 12.297068 ], [ 99.162598, 9.968851 ], [ 99.228516, 9.232249 ], [ 99.865723, 9.210560 ], [ 100.283203, 8.298470 ], [ 100.458984, 7.427837 ], [ 101.008301, 6.860985 ], [ 101.623535, 6.730076 ], [ 102.150879, 6.227934 ], [ 101.821289, 5.812757 ], [ 101.162109, 5.681584 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.839170 ], [ 99.514160, 7.340675 ], [ 98.503418, 8.385431 ], [ 98.349609, 7.798079 ], [ 98.151855, 8.341953 ], [ 98.261719, 8.971897 ], [ 98.547363, 9.925566 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.888853 ], [ 99.206543, 12.811801 ], [ 99.206543, 13.261333 ], [ 99.096680, 13.838080 ], [ 98.437500, 14.626109 ], [ 98.195801, 15.114553 ], [ 98.547363, 15.305380 ], [ 98.898926, 16.172473 ], [ 98.503418, 16.846605 ], [ 97.866211, 17.560247 ], [ 97.382812, 18.437925 ], [ 97.800293, 18.625425 ], [ 98.261719, 19.704658 ], [ 98.964844, 19.746024 ], [ 99.536133, 20.179724 ], [ 100.107422, 20.427013 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.501465, 14.562318 ], [ 107.380371, 14.200488 ], [ 107.622070, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.820312, 11.566144 ], [ 106.259766, 10.962764 ], [ 105.205078, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.095703, 11.156845 ], [ 102.590332, 12.189704 ], [ 102.348633, 13.389620 ], [ 102.985840, 14.221789 ], [ 104.282227, 14.413400 ], [ 105.227051, 14.264383 ], [ 106.040039, 13.880746 ], [ 106.501465, 14.562318 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.336914, 23.342256 ], [ 105.820312, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.567383, 22.228090 ], [ 107.050781, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.721191, 20.694462 ], [ 105.886230, 19.746024 ], [ 105.666504, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.335938, 13.432367 ], [ 109.204102, 11.673755 ], [ 108.369141, 11.005904 ], [ 107.226562, 10.358151 ], [ 106.413574, 9.535749 ], [ 105.161133, 8.602747 ], [ 104.787598, 9.232249 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.205078, 10.898042 ], [ 106.259766, 10.962764 ], [ 105.820312, 11.566144 ], [ 107.490234, 12.340002 ], [ 107.622070, 13.539201 ], [ 107.380371, 14.200488 ], [ 107.556152, 15.199386 ], [ 107.314453, 15.919074 ], [ 106.545410, 16.594081 ], [ 105.095215, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.194336, 19.621892 ], [ 104.831543, 19.890723 ], [ 104.436035, 20.756114 ], [ 103.205566, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.172852, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.513184, 22.695120 ], [ 104.479980, 22.816694 ], [ 105.336914, 23.342256 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.649414, 42.391009 ], [ 130.781250, 42.212245 ], [ 130.407715, 42.277309 ], [ 129.968262, 41.934977 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.880295 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.480381 ], [ 128.627930, 40.195659 ], [ 127.968750, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.507324, 39.317300 ], [ 127.375488, 39.215231 ], [ 127.792969, 39.044786 ], [ 128.342285, 38.616870 ], [ 128.210449, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.255436 ], [ 126.694336, 37.805444 ], [ 126.232910, 37.840157 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.573730, 37.753344 ], [ 125.266113, 37.666429 ], [ 125.244141, 37.857507 ], [ 124.980469, 37.944198 ], [ 124.716797, 38.099983 ], [ 124.980469, 38.548165 ], [ 125.222168, 38.668356 ], [ 125.134277, 38.856820 ], [ 125.375977, 39.385264 ], [ 125.332031, 39.554883 ], [ 124.738770, 39.656456 ], [ 124.255371, 39.926588 ], [ 125.090332, 40.563895 ], [ 126.188965, 41.112469 ], [ 126.870117, 41.820455 ], [ 127.353516, 41.508577 ], [ 128.210449, 41.459195 ], [ 128.056641, 42.000325 ], [ 129.594727, 42.423457 ], [ 129.990234, 42.988576 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.342285, 38.616870 ], [ 129.221191, 37.439974 ], [ 129.462891, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.885931 ], [ 127.397461, 34.470335 ], [ 126.496582, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.562500, 35.692995 ], [ 126.123047, 36.721274 ], [ 126.870117, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.840157 ], [ 126.694336, 37.805444 ], [ 127.067871, 38.255436 ], [ 127.770996, 38.307181 ], [ 128.210449, 38.376115 ], [ 128.342285, 38.616870 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.441022 ], [ 115.356445, 4.324501 ], [ 114.873047, 4.346411 ], [ 114.653320, 4.017699 ], [ 114.213867, 4.521666 ], [ 114.609375, 4.893941 ], [ 115.444336, 5.441022 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.136230, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.397273 ], [ 119.113770, 5.025283 ], [ 118.432617, 4.959615 ], [ 118.608398, 4.477856 ], [ 117.883301, 4.127285 ], [ 117.004395, 4.302591 ], [ 115.861816, 4.302591 ], [ 115.510254, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.631348, 1.428075 ], [ 113.796387, 1.208406 ], [ 112.851562, 1.493971 ], [ 112.390137, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.966751 ], [ 110.522461, 0.769020 ], [ 109.819336, 1.340210 ], [ 109.665527, 1.999106 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.845384 ], [ 111.379395, 2.701635 ], [ 111.796875, 2.877208 ], [ 113.005371, 3.096636 ], [ 113.708496, 3.886177 ], [ 114.213867, 4.521666 ], [ 114.653320, 4.017699 ], [ 114.873047, 4.346411 ], [ 115.356445, 4.324501 ], [ 115.444336, 5.441022 ], [ 116.213379, 6.140555 ], [ 116.718750, 6.926427 ], [ 117.136230, 6.926427 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.162109, 5.681584 ], [ 101.821289, 5.812757 ], [ 102.150879, 6.227934 ], [ 102.370605, 6.118708 ], [ 102.963867, 5.528511 ], [ 103.381348, 4.850154 ], [ 103.447266, 4.171115 ], [ 103.337402, 3.732708 ], [ 103.425293, 3.381824 ], [ 103.513184, 2.789425 ], [ 103.864746, 2.526037 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.700684, 3.930020 ], [ 100.546875, 4.762573 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.031311 ], [ 100.085449, 6.468151 ], [ 100.261230, 6.642783 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.419922, 9.752370 ], [ 126.232910, 9.275622 ], [ 126.474609, 7.754537 ], [ 126.540527, 7.188101 ], [ 126.188965, 6.271618 ], [ 125.837402, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.683594, 6.053161 ], [ 125.397949, 5.572250 ], [ 124.211426, 6.162401 ], [ 123.947754, 6.882800 ], [ 124.233398, 7.362467 ], [ 123.618164, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.827148, 7.449624 ], [ 122.080078, 6.904614 ], [ 121.926270, 7.188101 ], [ 122.321777, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.689639 ], [ 123.837891, 8.233237 ], [ 124.606934, 8.515836 ], [ 124.760742, 8.950193 ], [ 125.463867, 8.993600 ], [ 125.419922, 9.752370 ] ] ], [ [ [ 121.311035, 18.500447 ], [ 121.948242, 18.208480 ], [ 122.255859, 18.479609 ], [ 122.343750, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.519531, 17.098792 ], [ 122.255859, 16.256867 ], [ 121.662598, 15.940202 ], [ 121.508789, 15.114553 ], [ 121.728516, 14.328260 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.328260 ], [ 123.947754, 13.774066 ], [ 123.859863, 13.239945 ], [ 124.189453, 13.004558 ], [ 124.079590, 12.533115 ], [ 123.288574, 13.025966 ], [ 122.937012, 13.560562 ], [ 122.673340, 13.175771 ], [ 122.036133, 13.774066 ], [ 121.135254, 13.645987 ], [ 120.629883, 13.859414 ], [ 120.673828, 14.264383 ], [ 120.981445, 14.519780 ], [ 120.695801, 14.753635 ], [ 120.563965, 14.392118 ], [ 120.080566, 14.966013 ], [ 119.926758, 15.411319 ], [ 119.882812, 16.362310 ], [ 120.278320, 16.024696 ], [ 120.388184, 17.602139 ], [ 120.717773, 18.500447 ], [ 121.311035, 18.500447 ] ] ], [ [ [ 124.277344, 12.554564 ], [ 125.222168, 12.533115 ], [ 125.507812, 12.168226 ], [ 125.793457, 11.049038 ], [ 125.002441, 11.307708 ], [ 125.024414, 10.984335 ], [ 125.288086, 10.358151 ], [ 124.804688, 10.141932 ], [ 124.760742, 10.833306 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.892578, 11.415418 ], [ 124.870605, 11.802834 ], [ 124.277344, 12.554564 ] ] ], [ [ [ 124.079590, 11.243062 ], [ 123.991699, 10.271681 ], [ 123.618164, 9.947209 ], [ 123.310547, 9.318990 ], [ 123.002930, 9.015302 ], [ 122.387695, 9.709057 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.876465 ], [ 123.508301, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.079590, 11.243062 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.552622 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.180176, 8.363693 ], [ 117.663574, 9.058702 ], [ 118.388672, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.888853 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.156845 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.970215, 10.898042 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.888853 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.530762, 13.068777 ], [ 121.267090, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.790990 ], [ 134.143066, -1.142502 ], [ 134.252930, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.625758 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.944781 ], [ 131.857910, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.428075 ], [ 124.431152, 0.417477 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.373533 ], [ 120.190430, 0.241699 ], [ 120.146484, 0.000000 ], [ 120.036621, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.332520, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.838379, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.333496, -1.362176 ], [ 119.772949, 0.000000 ], [ 120.036621, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.662598, 1.010690 ], [ 122.937012, 0.878872 ], [ 124.079590, 0.922812 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 117.004395, 4.302591 ], [ 117.883301, 4.127285 ], [ 117.312012, 3.228271 ], [ 118.059082, 2.284551 ], [ 117.883301, 1.823423 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.790990 ], [ 117.487793, 0.109863 ], [ 117.487793, 0.000000 ], [ 117.531738, -0.812961 ], [ 116.564941, -1.493971 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.061035, -1.603794 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.028320, 0.000000 ], [ 108.962402, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 1.999106 ], [ 109.819336, 1.340210 ], [ 110.522461, 0.769020 ], [ 111.159668, 0.966751 ], [ 111.796875, 0.900842 ], [ 112.390137, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.796387, 1.208406 ], [ 114.631348, 1.428075 ], [ 115.136719, 2.811371 ], [ 115.510254, 3.162456 ], [ 115.861816, 4.302591 ], [ 117.004395, 4.302591 ] ] ], [ [ [ 95.295410, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.492676, 5.244128 ], [ 98.371582, 4.258768 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.667480, 2.086941 ], [ 102.502441, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.842773, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.076597 ], [ 104.523926, -1.757537 ], [ 100.744629, -1.757537 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.032659 ], [ 98.591309, 1.823423 ], [ 97.690430, 2.460181 ], [ 97.185059, 3.316018 ], [ 96.416016, 3.864255 ], [ 95.383301, 4.981505 ], [ 95.295410, 5.484768 ] ] ], [ [ [ 137.329102, -1.757537 ], [ 137.438965, -1.713612 ], [ 138.339844, -1.713612 ], [ 138.471680, -1.757537 ], [ 137.329102, -1.757537 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.693848, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.241699 ], [ 128.386230, -0.769020 ], [ 128.100586, -0.900842 ], [ 127.705078, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.801461 ], [ 127.924805, 2.174771 ] ] ] ] } } @@ -652,10 +616,6 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.143066, 17.811456 ], [ -89.154053, 17.014768 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.516846, 15.855674 ], [ -88.220215, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.154053, 15.061515 ], [ -89.219971, 14.870469 ], [ -89.143066, 14.679254 ], [ -89.351807, 14.424040 ], [ -89.582520, 14.360191 ], [ -89.538574, 14.243087 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.880746 ], [ -90.098877, 13.731381 ], [ -90.604248, 13.912740 ], [ -90.878906, 13.912740 ], [ -90.878906, 16.066929 ], [ -90.461426, 16.066929 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.467695 ], [ -90.714111, 16.688817 ], [ -90.878906, 16.794024 ], [ -90.878906, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.189697, 25.214881 ], [ -77.893066, 25.165173 ], [ -77.541504, 24.337087 ], [ -77.530518, 23.755182 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.189697, 25.214881 ] ] ], [ [ [ -77.794189, 27.039557 ], [ -77.003174, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.354736, 26.007424 ], [ -77.343750, 26.529565 ], [ -77.783203, 26.922070 ], [ -77.794189, 27.039557 ] ] ], [ [ [ -78.508301, 26.873081 ], [ -77.849121, 26.843677 ], [ -77.816162, 26.578702 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.508301, 26.873081 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.344098 ], [ -88.121338, 18.072757 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.308105, 17.130292 ], [ -88.242188, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.014768 ], [ -89.154053, 17.957832 ], [ -89.033203, 17.999632 ], [ -88.846436, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.297119, 18.500447 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.351807, 14.424040 ], [ -89.055176, 14.338904 ], [ -88.846436, 14.136576 ], [ -88.538818, 13.976715 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.857666, 13.891411 ], [ -87.725830, 13.784737 ], [ -87.791748, 13.389620 ], [ -87.901611, 13.143678 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.252930, 13.453737 ], [ -89.813232, 13.517838 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.731381 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.934067 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.243087 ], [ -89.582520, 14.360191 ], [ -89.351807, 14.424040 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.485107, 15.019075 ], [ -83.144531, 14.997852 ], [ -83.232422, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.177490, 14.306969 ], [ -83.408203, 13.966054 ], [ -83.518066, 13.571242 ], [ -83.551025, 13.122280 ], [ -83.496094, 12.865360 ], [ -83.474121, 12.415119 ], [ -83.627930, 12.318536 ], [ -83.715820, 11.888853 ], [ -83.649902, 11.630716 ], [ -83.858643, 11.372339 ], [ -83.803711, 11.102947 ], [ -83.660889, 10.941192 ], [ -83.891602, 10.725381 ], [ -84.188232, 10.790141 ], [ -84.353027, 10.995120 ], [ -84.671631, 11.081385 ], [ -84.902344, 10.951978 ], [ -85.561523, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.802834 ], [ -86.748047, 12.146746 ], [ -87.165527, 12.458033 ], [ -87.670898, 12.908198 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.983148 ], [ -87.000732, 13.025966 ], [ -86.879883, 13.250640 ], [ -86.737061, 13.261333 ], [ -86.759033, 13.752725 ], [ -86.517334, 13.774066 ], [ -86.308594, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.693359, 13.955392 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.349548 ], [ -85.144043, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.924316, 14.785505 ], [ -84.825439, 14.817371 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.627930, 14.881087 ], [ -83.485107, 15.019075 ] ] ] } } @@ -664,9 +624,7 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.611582 ], [ -79.024658, 9.557417 ], [ -79.057617, 9.459899 ], [ -78.497314, 9.416548 ], [ -78.057861, 9.243093 ], [ -77.728271, 8.950193 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.634776 ], [ -77.750244, 7.710992 ], [ -77.882080, 7.220800 ], [ -78.211670, 7.514981 ], [ -78.431396, 8.048352 ], [ -78.178711, 8.320212 ], [ -78.431396, 8.385431 ], [ -78.618164, 8.722218 ], [ -79.123535, 8.993600 ], [ -79.562988, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.167236, 8.331083 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.416942 ], [ -80.419922, 7.275292 ], [ -80.881348, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.710992 ], [ -81.716309, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.386475, 8.287599 ], [ -82.814941, 8.287599 ], [ -82.847900, 8.070107 ], [ -82.968750, 8.222364 ], [ -82.913818, 8.428904 ], [ -82.825928, 8.624472 ], [ -82.869873, 8.809082 ], [ -82.716064, 8.928487 ], [ -82.924805, 9.069551 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.993600 ], [ -81.804199, 8.950193 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.863362 ], [ -80.518799, 9.112945 ], [ -79.914551, 9.308149 ], [ -79.573975, 9.611582 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.265625, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.617676, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.277344, 22.400872 ], [ -78.343506, 22.512557 ], [ -77.991943, 22.278931 ], [ -76.519775, 21.207459 ], [ -76.190186, 21.217701 ], [ -75.596924, 21.012727 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.300537, 20.045611 ], [ -74.959717, 19.921713 ], [ -75.629883, 19.870060 ], [ -76.322021, 19.952696 ], [ -77.750244, 19.859727 ], [ -77.080078, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.134766, 20.735566 ], [ -78.486328, 21.033237 ], [ -78.717041, 21.596151 ], [ -79.288330, 21.555284 ], [ -80.222168, 21.830907 ], [ -80.518799, 22.034730 ], [ -81.826172, 22.187405 ], [ -82.166748, 22.390714 ], [ -81.793213, 22.634293 ], [ -82.770996, 22.684984 ], [ -83.496094, 22.167058 ], [ -83.913574, 22.156883 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.800308 ], [ -84.979248, 21.892084 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.563293 ], [ -83.781738, 22.786311 ], [ -83.265381, 22.978624 ], [ -82.507324, 23.079732 ], [ -82.265625, 23.190863 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.911384 ], [ -72.575684, 19.870060 ], [ -71.707764, 19.715000 ], [ -71.619873, 19.165924 ], [ -71.696777, 18.781517 ], [ -71.949463, 18.615013 ], [ -71.685791, 18.312811 ], [ -71.707764, 18.041421 ], [ -72.377930, 18.218916 ], [ -72.839355, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.030975 ], [ -74.454346, 18.344098 ], [ -74.366455, 18.667063 ], [ -73.454590, 18.521283 ], [ -72.696533, 18.448347 ], [ -72.333984, 18.667063 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.410645, 19.642588 ], [ -73.190918, 19.911384 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.794189, 18.521283 ], [ -76.893311, 18.396230 ], [ -76.365967, 18.156291 ], [ -76.201172, 17.884659 ], [ -76.904297, 17.863747 ], [ -77.200928, 17.696362 ], [ -77.761230, 17.863747 ], [ -78.332520, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.794189, 18.521283 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.652934 ], [ -69.774170, 19.290406 ], [ -69.224854, 19.311143 ], [ -69.257812, 19.010190 ], [ -68.807373, 18.979026 ], [ -68.312988, 18.615013 ], [ -68.686523, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.620361, 18.385805 ], [ -69.949951, 18.427502 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.664062, 18.427502 ], [ -71.004639, 18.281518 ], [ -71.400146, 17.602139 ], [ -71.652832, 17.759150 ], [ -71.707764, 18.041421 ], [ -71.685791, 18.312811 ], [ -71.949463, 18.615013 ], [ -71.696777, 18.781517 ], [ -71.619873, 19.165924 ], [ -71.707764, 19.715000 ], [ -71.586914, 19.880392 ], [ -70.806885, 19.880392 ] ] ] } } , @@ -676,14 +634,12 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.938965, 12.157486 ], [ -69.587402, 11.458491 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.192139, 10.552622 ], [ -67.291260, 10.541821 ], [ -66.225586, 10.649811 ], [ -65.654297, 10.196000 ], [ -64.885254, 10.077037 ], [ -64.324951, 10.390572 ], [ -64.313965, 10.639014 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.714587 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.947209 ], [ -61.589355, 9.871452 ], [ -60.831299, 9.384032 ], [ -60.666504, 8.581021 ], [ -60.150146, 8.602747 ], [ -59.754639, 8.363693 ], [ -60.545654, 7.776309 ], [ -60.633545, 7.416942 ], [ -60.292969, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.138916, 6.238855 ], [ -61.413574, 5.954827 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.963135, 4.532618 ], [ -62.083740, 4.160158 ], [ -62.808838, 4.006740 ], [ -63.094482, 3.765597 ], [ -63.885498, 4.017699 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.493109 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.196727 ], [ -64.083252, 1.911267 ], [ -64.204102, 1.493971 ], [ -64.610596, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.544434, 0.790990 ], [ -66.324463, 0.725078 ], [ -66.873779, 1.252342 ], [ -67.181396, 2.251617 ], [ -67.445068, 2.602864 ], [ -67.807617, 2.822344 ], [ -67.302246, 3.316018 ], [ -67.335205, 3.546318 ], [ -67.620850, 3.842332 ], [ -67.818604, 4.499762 ], [ -67.741699, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.151478 ], [ -68.983154, 6.206090 ], [ -69.389648, 6.096860 ], [ -70.092773, 6.959144 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.443848, 7.427837 ], [ -72.476807, 7.634776 ], [ -72.355957, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.624472 ], [ -72.784424, 9.080400 ], [ -73.300781, 9.156333 ], [ -73.026123, 9.741542 ], [ -72.905273, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.224121, 11.113727 ], [ -71.971436, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.356201, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.619873, 10.973550 ], [ -71.630859, 10.444598 ], [ -72.070312, 9.860628 ], [ -71.696777, 9.069551 ], [ -71.268311, 9.134639 ], [ -71.037598, 9.860628 ], [ -71.345215, 10.206813 ], [ -71.400146, 10.973550 ], [ -70.158691, 11.372339 ], [ -70.290527, 11.845847 ], [ -69.938965, 12.157486 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.030518, 6.020385 ], [ -53.953857, 5.758105 ], [ -54.481201, 4.893941 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.184394 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.306506 ], [ -55.096436, 2.526037 ], [ -55.568848, 2.416276 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.218684 ], [ -55.909424, 2.021065 ], [ -55.997314, 1.812442 ], [ -56.535645, 1.900286 ], [ -57.150879, 2.767478 ], [ -57.282715, 3.337954 ], [ -57.601318, 3.337954 ], [ -58.040771, 4.061536 ], [ -57.864990, 4.576425 ], [ -57.908936, 4.817312 ], [ -57.304688, 5.069058 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.769036 ], [ -55.843506, 5.954827 ], [ -55.030518, 6.020385 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.216064, 5.244128 ], [ -59.985352, 5.014339 ], [ -60.106201, 4.576425 ], [ -59.765625, 4.423090 ], [ -59.534912, 3.962901 ], [ -59.820557, 3.601142 ], [ -59.974365, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.644775, 1.790480 ], [ -59.029541, 1.318243 ], [ -58.535156, 1.263325 ], [ -58.425293, 1.461023 ], [ -58.117676, 1.504954 ], [ -57.656250, 1.680667 ], [ -57.337646, 1.944207 ], [ -56.777344, 1.867345 ], [ -56.535645, 1.900286 ], [ -55.997314, 1.812442 ], [ -55.909424, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.975342, 2.515061 ], [ -55.568848, 2.416276 ], [ -55.096436, 2.526037 ], [ -54.525146, 2.306506 ], [ -54.085693, 2.108899 ], [ -53.778076, 2.372369 ], [ -53.558350, 2.339438 ], [ -53.415527, 2.054003 ], [ -52.943115, 2.119878 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.239240 ], [ -51.657715, 4.160158 ], [ -51.317139, 4.203986 ], [ -51.064453, 3.645000 ], [ -50.504150, 1.900286 ], [ -49.976807, 1.735574 ], [ -49.943848, 1.043643 ], [ -50.701904, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.383301, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -0.878872 ], [ -69.488525, -0.878872 ], [ -69.576416, -0.549308 ], [ -70.015869, -0.186767 ], [ -70.015869, 0.538322 ], [ -69.455566, 0.703107 ], [ -69.257812, 0.604237 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.087581 ], [ -69.818115, 1.713612 ], [ -67.873535, 1.691649 ], [ -67.532959, 2.032045 ], [ -67.258301, 1.724593 ], [ -67.060547, 1.131518 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.610596, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.911267 ], [ -63.369141, 2.196727 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.493109 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.885498, 4.017699 ], [ -63.094482, 3.765597 ], [ -62.808838, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.963135, 4.532618 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.216064, 5.244128 ] ] ], [ [ [ -48.164062, -0.878872 ], [ -47.823486, -0.582265 ], [ -46.779785, -0.878872 ], [ -48.164062, -0.878872 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.823946 ], [ -77.420654, 0.395505 ], [ -76.574707, 0.252685 ], [ -76.289062, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.153808 ], [ -75.234375, -0.878872 ], [ -80.573730, -0.878872 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.977736 ], [ -78.859863, 1.384143 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.751709, 12.436577 ], [ -71.400146, 12.372197 ], [ -71.136475, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.971436, 11.609193 ], [ -72.224121, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.905273, 10.455402 ], [ -73.026123, 9.741542 ], [ -73.300781, 9.156333 ], [ -72.784424, 9.080400 ], [ -72.663574, 8.624472 ], [ -72.443848, 8.407168 ], [ -72.355957, 8.004837 ], [ -72.476807, 7.634776 ], [ -72.443848, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.092773, 6.959144 ], [ -69.389648, 6.096860 ], [ -68.983154, 6.206090 ], [ -68.269043, 6.151478 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.741699, 5.222247 ], [ -67.818604, 4.499762 ], [ -67.620850, 3.842332 ], [ -67.335205, 3.546318 ], [ -67.302246, 3.316018 ], [ -67.807617, 2.822344 ], [ -67.445068, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.873779, 1.252342 ], [ -67.060547, 1.131518 ], [ -67.258301, 1.724593 ], [ -67.532959, 2.032045 ], [ -67.873535, 1.691649 ], [ -69.818115, 1.713612 ], [ -69.807129, 1.087581 ], [ -69.213867, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.703107 ], [ -70.015869, 0.538322 ], [ -70.015869, -0.186767 ], [ -69.576416, -0.549308 ], [ -69.488525, -0.878872 ], [ -74.201660, -0.878872 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.054932 ], [ -75.377197, -0.153808 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.252685 ], [ -77.420654, 0.395505 ], [ -77.673340, 0.823946 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.662109, 2.262595 ], [ -78.431396, 2.624814 ], [ -77.937012, 2.701635 ], [ -77.508545, 3.326986 ], [ -77.124023, 3.853293 ], [ -77.497559, 4.083453 ], [ -77.310791, 4.664030 ], [ -77.530518, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.475586, 6.686431 ], [ -77.882080, 7.220800 ], [ -77.750244, 7.710992 ], [ -77.431641, 7.634776 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.667918 ], [ -76.838379, 8.635334 ], [ -76.091309, 9.340672 ], [ -75.673828, 9.438224 ], [ -75.662842, 9.774025 ], [ -75.476074, 10.617418 ], [ -74.904785, 11.081385 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.307708 ], [ -73.410645, 11.232286 ], [ -72.630615, 11.727546 ], [ -72.235107, 11.953349 ], [ -71.751709, 12.436577 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.102539, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.201660, -0.878872 ], [ -75.234375, -0.878872 ], [ -75.377197, -0.153808 ], [ -75.102539, -0.054932 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.953857, 5.758105 ], [ -52.877197, 5.408211 ], [ -51.822510, 4.565474 ], [ -51.657715, 4.160158 ], [ -52.250977, 3.239240 ], [ -52.558594, 2.504085 ], [ -52.943115, 2.119878 ], [ -53.415527, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.778076, 2.372369 ], [ -54.085693, 2.108899 ], [ -54.525146, 2.306506 ], [ -54.272461, 2.734557 ], [ -54.184570, 3.195364 ], [ -54.008789, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.893941 ], [ -53.953857, 5.758105 ] ] ] } } ] } ] } @@ -866,43 +822,41 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.680664, 41.640078 ], [ 2.087402, 41.228249 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.120090 ], [ 0.000000, 39.901309 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.899583 ], [ 0.109863, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.472412, 38.289937 ], [ -0.681152, 37.640335 ], [ -0.878906, 37.588119 ], [ -0.878906, 41.640078 ], [ 2.680664, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.511475, 41.640078 ], [ 20.467529, 41.516804 ], [ 20.610352, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.838749 ], [ 20.994873, 40.580585 ], [ 20.676270, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.622615 ], [ 19.984131, 39.698734 ], [ 19.962158, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 20.511475, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.923554 ], [ 0.373535, 14.934170 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.450195, 11.544616 ], [ 1.241455, 11.113727 ], [ 0.900879, 10.995120 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.758057, 10.941192 ], [ -0.878906, 10.951978 ], [ -0.878906, 15.019075 ], [ -0.516357, 15.114553 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 44.967041, 41.244772 ], [ 43.582764, 41.095912 ], [ 42.615967, 41.582580 ], [ 41.550293, 41.533254 ], [ 41.594238, 41.640078 ], [ 45.878906, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.338379, 41.640078 ], [ 9.228516, 41.376809 ], [ 8.778076, 41.582580 ], [ 8.756104, 41.640078 ], [ 9.338379, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.116526 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.430122 ], [ 8.371582, 35.478565 ], [ 8.140869, 34.651285 ], [ 7.525635, 34.098159 ], [ 7.613525, 33.339707 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.101190 ], [ 9.481201, 30.306503 ], [ 9.810791, 29.420460 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.139816 ], [ 9.755859, 27.683528 ], [ 9.624023, 27.137368 ], [ 9.711914, 26.509905 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.363882 ], [ 9.953613, 24.936257 ], [ 10.305176, 24.377121 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.096619 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.565502 ], [ 5.679932, 19.601194 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.065430, 20.138470 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.790107 ], [ -0.878906, 22.360236 ], [ -0.878906, 35.764343 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.969115 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.606709 ], [ 3.164062, 36.782892 ], [ 4.812012, 36.862043 ], [ 5.317383, 36.712467 ], [ 6.262207, 37.107765 ], [ 7.327881, 37.116526 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.701917 ], [ 24.246826, 35.371135 ], [ 25.026855, 35.424868 ], [ 25.773926, 35.353216 ], [ 25.740967, 35.182788 ], [ 26.290283, 35.299435 ], [ 26.169434, 35.003003 ], [ 24.730225, 34.921971 ], [ 24.730225, 35.083956 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.701917 ] ] ], [ [ [ 26.466064, 41.640078 ], [ 26.608887, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.411621, 40.128491 ], [ 23.895264, 39.960280 ], [ 23.345947, 39.960280 ], [ 22.818604, 40.472024 ], [ 22.620850, 40.254377 ], [ 22.851562, 39.656456 ], [ 23.345947, 39.189691 ], [ 22.972412, 38.967951 ], [ 23.532715, 38.513788 ], [ 24.027100, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.159180, 36.421282 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.844461 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.307181 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.622615 ], [ 20.610352, 40.111689 ], [ 20.676270, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.763916, 40.979898 ], [ 22.060547, 41.153842 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.640078 ], [ 26.466064, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.491699, 33.137551 ], [ 12.667236, 32.796510 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.713355 ], [ 15.249023, 32.268555 ], [ 15.710449, 31.372399 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.760719 ], [ 19.083252, 30.268556 ], [ 19.577637, 30.524413 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.137939, 32.240683 ], [ 20.852051, 32.704111 ], [ 21.544189, 32.842674 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.609619, 32.184911 ], [ 23.928223, 32.017392 ], [ 24.916992, 31.896214 ], [ 25.169678, 31.569175 ], [ 24.807129, 31.090574 ], [ 24.960938, 30.666266 ], [ 24.697266, 30.040566 ], [ 25.004883, 29.238477 ], [ 25.004883, 20.004322 ], [ 23.851318, 20.004322 ], [ 23.840332, 19.580493 ], [ 19.852295, 21.493964 ], [ 15.864258, 23.412847 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.039298 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.096619 ], [ 10.766602, 24.567108 ], [ 10.305176, 24.377121 ], [ 9.953613, 24.936257 ], [ 9.909668, 25.363882 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.509905 ], [ 9.624023, 27.137368 ], [ 9.755859, 27.683528 ], [ 9.678955, 28.139816 ], [ 9.854736, 28.960089 ], [ 9.810791, 29.420460 ], [ 9.481201, 30.306503 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.958769 ], [ 9.953613, 31.372399 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.436768, 32.370683 ], [ 11.491699, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.640078 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.236511 ], [ 24.488525, 41.582580 ], [ 23.697510, 41.310824 ], [ 22.950439, 41.335576 ], [ 22.917480, 41.640078 ], [ 26.114502, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.232655 ], [ 3.614502, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.801270, 10.736175 ], [ 3.603516, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.134639 ], [ 2.724609, 8.504970 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.867676, 6.140555 ], [ 1.614990, 6.828261 ], [ 1.669922, 9.123792 ], [ 1.461182, 9.329831 ], [ 1.428223, 9.828154 ], [ 0.769043, 10.466206 ], [ 0.900879, 10.995120 ], [ 1.241455, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.493896, 12.232655 ], [ 2.845459, 12.232655 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.448975, 13.496473 ], [ 6.822510, 13.111580 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.019775, 12.822514 ], [ 9.525146, 12.854649 ], [ 10.118408, 13.272026 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.325485 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.592600 ], [ 13.315430, 13.560562 ], [ 13.996582, 12.458033 ], [ 14.183350, 12.479487 ], [ 14.578857, 12.082296 ], [ 14.468994, 11.899604 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.172607, 9.644077 ], [ 12.952881, 9.416548 ], [ 12.755127, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.798079 ], [ 11.843262, 7.395153 ], [ 11.744385, 6.980954 ], [ 11.063232, 6.642783 ], [ 10.491943, 7.057282 ], [ 10.118408, 7.035476 ], [ 9.525146, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.503418, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.086182, 4.466904 ], [ 6.701660, 4.236856 ], [ 5.899658, 4.258768 ], [ 5.361328, 4.882994 ], [ 5.031738, 5.615986 ], [ 4.328613, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.134639 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.603516, 10.336536 ], [ 3.801270, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.951029 ], [ 4.108887, 13.528519 ], [ 4.372559, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 44.967041, 41.244772 ], [ 43.582764, 41.095912 ], [ 42.615967, 41.582580 ], [ 41.550293, 41.533254 ], [ 41.594238, 41.640078 ], [ 45.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.054628 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.116526 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.430122 ], [ 8.371582, 35.478565 ], [ 8.140869, 34.651285 ], [ 7.525635, 34.098159 ], [ 7.613525, 33.339707 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.101190 ], [ 9.481201, 30.306503 ], [ 9.810791, 29.420460 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.139816 ], [ 9.755859, 27.683528 ], [ 9.624023, 27.137368 ], [ 9.711914, 26.509905 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.363882 ], [ 9.953613, 24.936257 ], [ 10.305176, 24.377121 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.096619 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.565502 ], [ 5.679932, 19.601194 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.065430, 20.138470 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.790107 ], [ -0.878906, 22.360236 ], [ -0.878906, 35.764343 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.969115 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.606709 ], [ 3.164062, 36.782892 ], [ 4.812012, 36.862043 ], [ 5.317383, 36.712467 ], [ 6.262207, 37.107765 ], [ 7.327881, 37.116526 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.557283 ], [ 18.457031, 3.502455 ], [ 18.391113, 2.899153 ], [ 18.094482, 2.361392 ], [ 17.896729, 1.746556 ], [ 17.775879, 0.856902 ], [ 17.830811, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.054932 ], [ 17.644043, -0.428463 ], [ 17.523193, -0.747049 ], [ 17.336426, -0.878872 ], [ 14.359131, -0.878872 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.029541, 1.395126 ], [ 13.282471, 1.318243 ], [ 13.007812, 1.834403 ], [ 13.073730, 2.262595 ], [ 14.337158, 2.229662 ], [ 15.150146, 1.966167 ], [ 15.941162, 1.724593 ], [ 16.018066, 2.262595 ], [ 16.534424, 3.195364 ], [ 17.127686, 3.732708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.523682, 38.229550 ], [ 15.161133, 37.439974 ], [ 15.314941, 37.134045 ], [ 15.095215, 36.624345 ], [ 14.337158, 36.993778 ], [ 13.831787, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.125915 ], [ 13.743896, 38.030786 ], [ 15.523682, 38.229550 ] ] ], [ [ [ 16.029053, 41.640078 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.880295 ], [ 18.380127, 40.354917 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.808536 ], [ 17.742920, 40.279526 ], [ 16.875000, 40.438586 ], [ 16.446533, 39.791655 ], [ 17.171631, 39.427707 ], [ 17.050781, 38.899583 ], [ 16.633301, 38.839708 ], [ 16.105957, 37.987504 ], [ 15.688477, 37.909534 ], [ 15.688477, 38.212288 ], [ 15.897217, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.721436, 39.546412 ], [ 15.413818, 40.044438 ], [ 14.996338, 40.170479 ], [ 14.699707, 40.605612 ], [ 14.062500, 40.788860 ], [ 13.853760, 40.979898 ], [ 13.623047, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.216797, 41.640078 ], [ 16.029053, 41.640078 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.667969, 39.181175 ], [ 9.217529, 39.240763 ], [ 8.811035, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.393555, 40.380028 ], [ 8.162842, 40.946714 ], [ 8.712158, 40.896906 ], [ 8.843994, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.387451, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.530273, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.870850, 35.092945 ], [ 33.969727, 35.056980 ], [ 34.002686, 34.976002 ], [ 32.980957, 34.569906 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.101934 ], [ 32.728271, 35.137879 ], [ 32.915039, 35.083956 ], [ 33.189697, 35.173808 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.900879, 10.995120 ], [ 0.769043, 10.466206 ], [ 1.428223, 9.828154 ], [ 1.461182, 9.329831 ], [ 1.669922, 9.123792 ], [ 1.614990, 6.828261 ], [ 1.867676, 6.140555 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.416942 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.678779 ], [ 0.362549, 9.459899 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.002197, 34.642247 ], [ 36.452637, 34.597042 ], [ 36.606445, 34.198173 ], [ 36.068115, 33.824794 ], [ 35.826416, 33.275435 ], [ 35.551758, 33.266250 ], [ 35.463867, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.485840, 33.906896 ], [ 36.002197, 34.642247 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.459899 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.416942 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.342583 ], [ -0.878906, 5.112830 ], [ -0.878906, 10.951978 ], [ -0.758057, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.244772 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.878906, 40.204050 ], [ 45.615234, 39.901309 ], [ 45.878906, 39.724089 ], [ 45.878906, 39.113014 ], [ 45.736084, 39.317300 ], [ 45.736084, 39.470125 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.002372 ], [ 43.659668, 40.254377 ], [ 43.747559, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.095912 ], [ 44.967041, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.854649 ], [ 14.897461, 12.221918 ], [ 14.963379, 11.555380 ], [ 14.919434, 10.887254 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.622803, 9.925566 ], [ 14.172363, 10.022948 ], [ 13.952637, 9.546583 ], [ 14.545898, 8.961045 ], [ 14.985352, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.689217 ], [ 15.281982, 7.416942 ], [ 14.776611, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.025283 ], [ 14.479980, 4.729727 ], [ 14.952393, 4.214943 ], [ 15.040283, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.008870 ], [ 15.908203, 2.558963 ], [ 16.018066, 2.262595 ], [ 15.941162, 1.724593 ], [ 15.150146, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.262595 ], [ 12.952881, 2.317483 ], [ 12.359619, 2.196727 ], [ 11.755371, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.942871, 3.908099 ], [ 8.745117, 4.357366 ], [ 8.492432, 4.499762 ], [ 8.503418, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.525146, 6.457234 ], [ 10.118408, 7.035476 ], [ 10.491943, 7.057282 ], [ 11.063232, 6.642783 ], [ 11.744385, 6.980954 ], [ 11.843262, 7.395153 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.309341 ], [ 12.755127, 8.722218 ], [ 12.952881, 9.416548 ], [ 13.172607, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.468994, 11.899604 ], [ 14.578857, 12.082296 ], [ 14.183350, 12.479487 ], [ 14.216309, 12.801088 ], [ 14.490967, 12.854649 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.826416, 33.275435 ], [ 35.837402, 32.870360 ], [ 35.705566, 32.713355 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.189209, 32.528289 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.615966 ], [ 34.925537, 31.353637 ], [ 35.397949, 31.484893 ], [ 35.419922, 31.099982 ], [ 34.925537, 29.496988 ], [ 34.266357, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.958496, 32.824211 ], [ 35.101318, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.463867, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.826416, 33.275435 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.675147 ], [ 33.903809, 35.245619 ], [ 33.969727, 35.056980 ], [ 33.870850, 35.092945 ], [ 33.673096, 35.021000 ], [ 33.530273, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.387451, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.083956 ], [ 32.728271, 35.137879 ], [ 32.805176, 35.146863 ], [ 32.947998, 35.389050 ], [ 33.662109, 35.371135 ], [ 34.573975, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.870117, 22.004175 ], [ 37.188721, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.485352, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.424029 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.951724 ], [ 36.749268, 16.288506 ], [ 36.320801, 14.817371 ], [ 36.430664, 14.424040 ], [ 36.265869, 13.560562 ], [ 35.859375, 12.576010 ], [ 35.255127, 12.082296 ], [ 34.826660, 11.318481 ], [ 34.727783, 10.908830 ], [ 34.255371, 10.628216 ], [ 33.958740, 9.579084 ], [ 33.958740, 9.459899 ], [ 33.826904, 9.481572 ], [ 33.837891, 9.979671 ], [ 33.717041, 10.325728 ], [ 33.211670, 10.725381 ], [ 33.090820, 11.436955 ], [ 33.211670, 12.178965 ], [ 32.739258, 12.243392 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.354980, 9.806504 ], [ 30.838623, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.619141, 10.087854 ], [ 29.520264, 9.795678 ], [ 29.003906, 9.600750 ], [ 28.970947, 9.394871 ], [ 27.971191, 9.394871 ], [ 27.828369, 9.600750 ], [ 27.114258, 9.633246 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.131117 ], [ 25.795898, 10.412183 ], [ 25.070801, 10.271681 ], [ 24.796143, 9.806504 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.807373, 8.667918 ], [ 23.455811, 8.950193 ], [ 23.389893, 9.264779 ], [ 23.554688, 9.676569 ], [ 23.554688, 10.087854 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.684514 ], [ 22.500000, 12.264864 ], [ 22.291260, 12.651058 ], [ 21.939697, 12.586732 ], [ 22.038574, 12.951029 ], [ 22.291260, 13.368243 ], [ 22.181396, 13.784737 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.027344, 15.675932 ], [ 23.884277, 15.612456 ], [ 23.840332, 19.580493 ], [ 23.851318, 20.004322 ], [ 25.004883, 20.004322 ], [ 25.004883, 22.004175 ], [ 36.870117, 22.004175 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.352295, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.385498, 35.630512 ], [ 41.000977, 34.415973 ], [ 38.792725, 33.376412 ], [ 36.837158, 32.314991 ], [ 35.705566, 32.713355 ], [ 35.837402, 32.870360 ], [ 35.826416, 33.275435 ], [ 36.068115, 33.824794 ], [ 36.606445, 34.198173 ], [ 36.452637, 34.597042 ], [ 36.002197, 34.642247 ], [ 35.903320, 35.406961 ], [ 36.145020, 35.817813 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.067871, 36.624345 ], [ 38.166504, 36.897194 ], [ 38.704834, 36.712467 ], [ 39.517822, 36.712467 ], [ 40.671387, 37.090240 ], [ 41.209717, 37.072710 ], [ 42.352295, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.955399 ], [ 38.518066, 14.509144 ], [ 39.100342, 14.743011 ], [ 39.342041, 14.530415 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.115267 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.543840 ], [ 42.000732, 12.103781 ], [ 41.660156, 11.630716 ], [ 41.737061, 11.350797 ], [ 41.759033, 11.049038 ], [ 42.319336, 11.038255 ], [ 42.550049, 11.102947 ], [ 42.780762, 10.930405 ], [ 42.561035, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.297119, 9.535749 ], [ 43.681641, 9.188870 ], [ 45.000000, 8.700499 ], [ 45.878906, 8.385431 ], [ 45.878906, 5.976680 ], [ 45.000000, 5.036227 ], [ 44.967041, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.247812 ], [ 42.132568, 4.236856 ], [ 41.857910, 3.919060 ], [ 41.176758, 3.919060 ], [ 40.770264, 4.258768 ], [ 39.858398, 3.842332 ], [ 39.561768, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.671875, 3.612107 ], [ 38.441162, 3.590178 ], [ 38.122559, 3.601142 ], [ 36.859131, 4.444997 ], [ 36.156006, 4.444997 ], [ 35.815430, 4.773521 ], [ 35.815430, 5.342583 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.255371, 6.828261 ], [ 34.079590, 7.220800 ], [ 33.563232, 7.710992 ], [ 32.958984, 7.787194 ], [ 33.299561, 8.352823 ], [ 33.826904, 8.374562 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.579084 ], [ 34.255371, 10.628216 ], [ 34.727783, 10.908830 ], [ 34.826660, 11.318481 ], [ 35.255127, 12.082296 ], [ 35.859375, 12.576010 ], [ 36.265869, 13.560562 ], [ 36.430664, 14.424040 ], [ 37.595215, 14.211139 ], [ 37.902832, 14.955399 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.189209, 32.528289 ], [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.397949, 31.484893 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.189209, 32.528289 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.319092, 12.393659 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.458491 ], [ 42.780762, 10.930405 ], [ 42.550049, 11.102947 ], [ 42.319336, 11.038255 ], [ 41.759033, 11.049038 ], [ 41.737061, 11.350797 ], [ 41.660156, 11.630716 ], [ 42.000732, 12.103781 ], [ 42.352295, 12.543840 ], [ 42.780762, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.412847 ], [ 19.852295, 21.493964 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.027344, 15.675932 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.784737 ], [ 22.291260, 13.368243 ], [ 22.038574, 12.951029 ], [ 21.939697, 12.586732 ], [ 22.291260, 12.651058 ], [ 22.500000, 12.264864 ], [ 22.510986, 11.684514 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.146066 ], [ 22.236328, 10.973550 ], [ 21.719971, 10.563422 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.069551 ], [ 18.808594, 8.982749 ], [ 18.907471, 8.635334 ], [ 18.391113, 8.276727 ], [ 17.962646, 7.896030 ], [ 16.710205, 7.504089 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.281982, 7.416942 ], [ 15.435791, 7.689217 ], [ 15.117188, 8.385431 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.961045 ], [ 13.952637, 9.546583 ], [ 14.172363, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.919434, 10.887254 ], [ 14.963379, 11.555380 ], [ 14.897461, 12.221918 ], [ 14.490967, 12.854649 ], [ 14.600830, 13.325485 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.303955, 17.926476 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.725291 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.867318 ], [ 15.864258, 23.412847 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.736084, 39.470125 ], [ 45.736084, 39.317300 ], [ 45.878906, 39.113014 ], [ 45.878906, 38.788345 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.878906, 40.204050 ], [ 45.878906, 39.724089 ], [ 45.615234, 39.901309 ], [ 45.878906, 40.204050 ] ] ], [ [ [ 45.878906, 40.229218 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 40.229218 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 34.903953 ], [ 45.878906, 33.330528 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.903953 ] ] ], [ [ [ 45.878906, 35.764343 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.230957, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.791260, 39.715638 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 45.878906, 38.788345 ], [ 45.878906, 35.764343 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.157012 ], [ 40.396729, 31.886887 ], [ 41.890869, 31.194008 ], [ 44.714355, 29.180941 ], [ 45.000000, 29.161756 ], [ 45.878906, 29.132970 ], [ 45.878906, 17.287709 ], [ 45.395508, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.424029 ], [ 44.066162, 17.413546 ], [ 43.791504, 17.319176 ], [ 43.385010, 17.581194 ], [ 43.110352, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.351768 ], [ 42.648926, 16.772987 ], [ 42.352295, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.759033, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.803467, 20.334326 ], [ 39.144287, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.583583 ], [ 38.496094, 23.684774 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.568877 ], [ 35.134277, 28.062286 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.603814 ], [ 34.837646, 28.960089 ], [ 34.958496, 29.353452 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.507324, 30.002517 ], [ 37.672119, 30.334954 ], [ 38.001709, 30.505484 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.008076 ], [ 39.199219, 32.157012 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.755371, 2.328460 ], [ 12.359619, 2.196727 ], [ 12.952881, 2.317483 ], [ 13.073730, 2.262595 ], [ 13.007812, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.029541, 1.395126 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.359131, -0.878872 ], [ 8.822021, -0.878872 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.294434, 0.263671 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.054628 ], [ 11.271973, 2.262595 ], [ 11.755371, 2.328460 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.458491 ], [ 43.472900, 11.275387 ], [ 43.670654, 10.865676 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.541821 ], [ 45.560303, 10.692996 ], [ 45.878906, 10.736175 ], [ 45.878906, 8.385431 ], [ 45.000000, 8.700499 ], [ 43.681641, 9.188870 ], [ 43.297119, 9.535749 ], [ 42.923584, 10.022948 ], [ 42.561035, 10.574222 ], [ 42.780762, 10.930405 ], [ 43.143311, 11.458491 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.247812 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.911267 ], [ 34.672852, 1.175455 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.878872 ], [ 29.586182, -0.878872 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.208740 ], [ 29.838867, 0.000000 ], [ 29.871826, 0.593251 ], [ 30.091553, 1.065612 ], [ 30.465088, 1.581830 ], [ 30.849609, 1.845384 ], [ 31.179199, 2.207705 ], [ 30.772705, 2.339438 ], [ 30.838623, 3.513421 ], [ 31.245117, 3.776559 ], [ 31.882324, 3.557283 ], [ 32.684326, 3.787522 ], [ 33.387451, 3.787522 ], [ 34.002686, 4.247812 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.773521 ], [ 36.156006, 4.444997 ], [ 36.859131, 4.444997 ], [ 38.122559, 3.601142 ], [ 38.441162, 3.590178 ], [ 38.671875, 3.612107 ], [ 38.891602, 3.502455 ], [ 39.561768, 3.425692 ], [ 39.858398, 3.842332 ], [ 40.770264, 4.258768 ], [ 41.176758, 3.919060 ], [ 41.857910, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.011963, -0.878872 ], [ 33.903809, -0.878872 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.672852, 1.175455 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.052754 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.247812 ], [ 35.299072, 5.506640 ] ] ] } } ] } ] } , @@ -910,43 +864,37 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 54.572062 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 1.680908, 52.736292 ], [ 1.560059, 52.099757 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.778155 ], [ -0.878906, 50.757310 ], [ -0.878906, 54.572062 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.146729, 66.861082 ], [ 29.498291, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.946813 ], [ 30.443115, 64.206377 ], [ 30.036621, 63.553446 ], [ 31.519775, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.212402, 61.778319 ], [ 28.070068, 60.505935 ], [ 26.257324, 60.424699 ], [ 24.499512, 60.059358 ], [ 22.873535, 59.844815 ], [ 22.291260, 60.392148 ], [ 21.324463, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.060791, 62.608508 ], [ 21.533203, 63.189064 ], [ 22.445068, 63.816440 ], [ 24.730225, 64.900250 ], [ 25.400391, 65.109148 ], [ 25.290527, 65.535721 ], [ 23.906250, 66.009086 ], [ 23.565674, 66.394761 ], [ 23.565674, 66.513260 ], [ 23.554688, 66.861082 ], [ 29.146729, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.710449, 66.861082 ], [ 15.391846, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.557129, 64.788168 ], [ 13.919678, 64.444372 ], [ 13.568115, 64.048171 ], [ 12.579346, 64.067396 ], [ 11.931152, 63.129538 ], [ 11.997070, 61.799093 ], [ 12.634277, 61.291349 ], [ 12.304688, 60.119619 ], [ 11.469727, 59.433903 ], [ 11.030273, 58.853542 ], [ 10.360107, 59.467408 ], [ 8.382568, 58.315260 ], [ 7.053223, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.306396, 59.662192 ], [ 4.987793, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.558350, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.359619, 65.879215 ], [ 13.128662, 66.513260 ], [ 13.557129, 66.861082 ], [ 15.710449, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.507651 ], [ 6.910400, 53.481508 ], [ 7.097168, 53.146770 ], [ 6.844482, 52.227799 ], [ 6.591797, 51.849353 ], [ 5.987549, 51.849353 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.034486 ], [ 4.976807, 51.474540 ], [ 4.042969, 51.268789 ], [ 3.317871, 51.344339 ], [ 3.834229, 51.618017 ], [ 4.702148, 53.094024 ], [ 6.075439, 53.507651 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.861082 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.394761 ], [ 23.906250, 66.009086 ], [ 22.181396, 65.721594 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.852783, 62.749696 ], [ 17.116699, 61.338809 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.863770, 58.955674 ], [ 16.831055, 58.722599 ], [ 16.446533, 57.040730 ], [ 15.875244, 56.102683 ], [ 14.666748, 56.200593 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.360381 ], [ 12.623291, 56.304349 ], [ 11.788330, 57.439037 ], [ 11.030273, 58.853542 ], [ 11.469727, 59.433903 ], [ 12.304688, 60.119619 ], [ 12.634277, 61.291349 ], [ 11.997070, 61.799093 ], [ 11.931152, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.048171 ], [ 13.919678, 64.444372 ], [ 13.557129, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.391846, 66.513260 ], [ 15.710449, 66.861082 ], [ 23.554688, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.976807, 51.474540 ], [ 5.603027, 51.034486 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.127622 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.801025, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.592529, 50.380502 ], [ 3.120117, 50.778155 ], [ 2.658691, 50.798991 ], [ 2.515869, 51.151786 ], [ 3.317871, 51.344339 ], [ 4.042969, 51.268789 ], [ 4.976807, 51.474540 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.240234, 49.901711 ], [ 6.185303, 49.460984 ], [ 5.899658, 49.439557 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.127622 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.393311, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.376809 ], [ 8.778076, 41.582580 ], [ 8.547363, 42.252918 ], [ 8.745117, 42.625876 ], [ 9.393311, 43.012681 ] ] ], [ [ [ 2.515869, 51.151786 ], [ 2.658691, 50.798991 ], [ 3.120117, 50.778155 ], [ 3.592529, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.899658, 49.439557 ], [ 6.185303, 49.460984 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.470703, 47.620975 ], [ 7.196045, 47.450380 ], [ 6.734619, 47.539455 ], [ 6.767578, 47.286682 ], [ 6.042480, 46.724800 ], [ 6.020508, 46.271037 ], [ 6.503906, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.706179 ], [ 7.097168, 45.336702 ], [ 6.745605, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.691708 ], [ 6.525879, 43.125043 ], [ 4.559326, 43.397065 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.823730, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.382373 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.944584 ], [ 2.515869, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.108810 ], [ 12.689209, 55.609384 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 10.579834, 57.727619 ], [ 10.546875, 57.213660 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.607885 ], [ 10.909424, 56.456420 ], [ 10.667725, 56.084298 ], [ 10.371094, 56.188368 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.516192 ], [ 8.085938, 56.541315 ], [ 8.261719, 56.812908 ], [ 8.547363, 57.112385 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.450861 ], [ 10.579834, 57.727619 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.037868 ], [ 16.029053, 48.734455 ], [ 16.501465, 48.785152 ], [ 16.962891, 48.596592 ], [ 16.875000, 48.472921 ], [ 16.984863, 48.122101 ], [ 16.907959, 47.717154 ], [ 16.336670, 47.709762 ], [ 16.534424, 47.494937 ], [ 16.204834, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.139160, 46.656977 ], [ 14.633789, 46.430285 ], [ 13.809814, 46.505954 ], [ 12.381592, 46.769968 ], [ 12.150879, 47.115000 ], [ 11.162109, 46.942762 ], [ 11.052246, 46.754917 ], [ 10.447998, 46.890232 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.100045 ], [ 9.635010, 47.346267 ], [ 9.591064, 47.524620 ], [ 9.898682, 47.576526 ], [ 10.404053, 47.301585 ], [ 10.546875, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.702368 ], [ 12.623291, 47.672786 ], [ 12.930908, 47.465236 ], [ 13.029785, 47.635784 ], [ 12.886963, 48.290503 ], [ 13.238525, 48.414619 ], [ 13.601074, 48.879167 ], [ 14.337158, 48.552978 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.037868 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 50.999929 ], [ 15.018311, 51.103522 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.694718 ], [ 16.171875, 50.422519 ], [ 16.721191, 50.219095 ], [ 16.864014, 50.471491 ], [ 17.556152, 50.359480 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.986552 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.317961 ], [ 18.171387, 49.274973 ], [ 18.105469, 49.045070 ], [ 17.918701, 48.994636 ], [ 17.885742, 48.900838 ], [ 17.545166, 48.799627 ], [ 17.105713, 48.814099 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.037868 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.552978 ], [ 13.601074, 48.879167 ], [ 13.029785, 49.303636 ], [ 12.524414, 49.546598 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.923813 ], [ 14.304199, 51.117317 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.204834, 46.852678 ], [ 16.369629, 46.837650 ], [ 16.567383, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.325928, 45.729191 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.414062, 45.467836 ], [ 13.710938, 45.498647 ], [ 13.941650, 45.590978 ], [ 13.699951, 46.019853 ], [ 13.809814, 46.505954 ], [ 14.633789, 46.430285 ], [ 15.139160, 46.656977 ], [ 16.007080, 46.687131 ], [ 16.204834, 46.852678 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.324951, 49.575102 ], [ 19.830322, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.610107, 49.468124 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.421910 ], [ 21.873779, 48.319734 ], [ 20.797119, 48.625647 ], [ 20.478516, 48.560250 ], [ 20.236816, 48.327039 ], [ 19.764404, 48.202710 ], [ 19.665527, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.698730, 47.879513 ], [ 17.852783, 47.761484 ], [ 17.490234, 47.864774 ], [ 16.984863, 48.122101 ], [ 16.875000, 48.472921 ], [ 17.105713, 48.814099 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.900838 ], [ 17.918701, 48.994636 ], [ 18.105469, 49.045070 ], [ 18.171387, 49.274973 ], [ 18.402100, 49.317961 ], [ 18.555908, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.432413 ], [ 19.324951, 49.575102 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.006836, 45.236218 ], [ 17.863770, 45.065762 ], [ 18.555908, 45.081279 ], [ 19.006348, 44.863656 ], [ 19.368896, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.456787, 43.564472 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.428988 ], [ 18.709717, 43.197167 ], [ 18.555908, 42.650122 ], [ 17.677002, 43.028745 ], [ 17.292480, 43.444943 ], [ 16.918945, 43.667872 ], [ 16.457520, 44.040219 ], [ 16.237793, 44.347422 ], [ 15.754395, 44.816916 ], [ 15.963135, 45.236218 ], [ 16.314697, 45.003651 ], [ 16.534424, 45.213004 ], [ 17.006836, 45.236218 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.505954 ], [ 16.885986, 46.377254 ], [ 17.633057, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.905300 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.863656 ], [ 18.555908, 45.081279 ], [ 17.863770, 45.065762 ], [ 17.006836, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.003651 ], [ 15.963135, 45.236218 ], [ 15.754395, 44.816916 ], [ 16.237793, 44.347422 ], [ 16.457520, 44.040219 ], [ 16.918945, 43.667872 ], [ 17.292480, 43.444943 ], [ 17.677002, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.512207, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.018066, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.380859, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.073521 ], [ 14.260254, 45.236218 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.677979, 45.483244 ], [ 13.710938, 45.498647 ], [ 14.414062, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.325928, 45.729191 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.567383, 46.505954 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.819092, 43.269206 ], [ 20.961914, 43.133061 ], [ 21.148682, 43.068888 ], [ 21.269531, 42.908160 ], [ 21.434326, 42.859860 ], [ 21.632080, 42.674359 ], [ 21.774902, 42.682435 ], [ 21.665039, 42.439674 ], [ 21.544189, 42.317939 ], [ 21.577148, 42.244785 ], [ 21.357422, 42.204107 ], [ 20.764160, 42.049293 ], [ 20.720215, 41.845013 ], [ 20.588379, 41.853196 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.317939 ], [ 20.072021, 42.585444 ], [ 20.258789, 42.811522 ], [ 20.500488, 42.884015 ], [ 20.632324, 43.213183 ], [ 20.819092, 43.269206 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.742432, 42.690511 ], [ 19.797363, 42.496403 ], [ 20.072021, 42.585444 ], [ 20.280762, 42.317939 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.853196 ], [ 20.467529, 41.516804 ], [ 20.610352, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.838749 ], [ 20.994873, 40.580585 ], [ 20.676270, 40.438586 ], [ 20.654297, 40.313043 ], [ 19.390869, 40.313043 ], [ 19.313965, 40.730608 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.544678, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.742432, 42.690511 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 46.172223 ], [ 20.214844, 46.126556 ], [ 20.764160, 45.736860 ], [ 20.874023, 45.413876 ], [ 21.478271, 45.182037 ], [ 21.566162, 44.770137 ], [ 22.148438, 44.480830 ], [ 22.456055, 44.699898 ], [ 22.708740, 44.574817 ], [ 22.478027, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.609863, 42.900113 ], [ 22.434082, 42.577355 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.317939 ], [ 21.917725, 42.301690 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.317939 ], [ 21.665039, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.674359 ], [ 21.434326, 42.859860 ], [ 21.269531, 42.908160 ], [ 21.148682, 43.068888 ], [ 20.961914, 43.133061 ], [ 20.819092, 43.269206 ], [ 20.632324, 43.213183 ], [ 20.500488, 42.884015 ], [ 20.258789, 42.811522 ], [ 20.335693, 42.900113 ], [ 19.962158, 43.109004 ], [ 19.632568, 43.213183 ], [ 19.478760, 43.349150 ], [ 19.215088, 43.524655 ], [ 19.456787, 43.564472 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.863656 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.905300 ], [ 19.599609, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.472989 ], [ 28.135986, 59.299552 ], [ 27.421875, 58.722599 ], [ 27.718506, 57.792089 ], [ 27.290039, 57.474497 ], [ 26.466064, 57.474497 ], [ 25.598145, 57.844751 ], [ 25.169678, 57.967331 ], [ 24.312744, 57.792089 ], [ 24.433594, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.187185 ], [ 24.609375, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.179932, 56.170023 ], [ 29.234619, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.788929 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.761719, 54.813348 ], [ 31.387939, 54.156001 ], [ 31.794434, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.409668, 53.618579 ], [ 32.695312, 53.350551 ], [ 32.299805, 53.133590 ], [ 31.497803, 53.166534 ], [ 31.300049, 53.074228 ], [ 31.541748, 52.742943 ], [ 31.783447, 52.099757 ], [ 30.926514, 52.038977 ], [ 30.618896, 51.822198 ], [ 30.552979, 51.316881 ], [ 30.157471, 51.412912 ], [ 29.256592, 51.364921 ], [ 28.992920, 51.604372 ], [ 28.619385, 51.426614 ], [ 28.245850, 51.570241 ], [ 27.454834, 51.590723 ], [ 26.334229, 51.828988 ], [ 25.323486, 51.910391 ], [ 24.554443, 51.890054 ], [ 24.005127, 51.618017 ], [ 23.521729, 51.577070 ], [ 23.510742, 52.025459 ], [ 23.203125, 52.489470 ], [ 23.796387, 52.689702 ], [ 23.807373, 53.087426 ], [ 23.532715, 53.468431 ], [ 23.488770, 53.910810 ], [ 24.455566, 53.904338 ], [ 25.532227, 54.284469 ], [ 25.762939, 54.844990 ], [ 26.586914, 55.166319 ], [ 26.499023, 55.615589 ], [ 27.103271, 55.782751 ], [ 28.179932, 56.170023 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.797119, 48.625647 ], [ 21.873779, 48.319734 ], [ 22.082520, 48.421910 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.879513 ], [ 22.104492, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.126556 ], [ 19.599609, 46.172223 ], [ 18.830566, 45.905300 ], [ 18.457031, 45.759859 ], [ 17.633057, 45.951150 ], [ 16.885986, 46.377254 ], [ 16.567383, 46.505954 ], [ 16.369629, 46.837650 ], [ 16.204834, 46.852678 ], [ 16.534424, 47.494937 ], [ 16.336670, 47.709762 ], [ 16.907959, 47.717154 ], [ 16.984863, 48.122101 ], [ 17.490234, 47.864774 ], [ 17.852783, 47.761484 ], [ 18.698730, 47.879513 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.665527, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.327039 ], [ 20.478516, 48.560250 ], [ 20.797119, 48.625647 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.767840 ], [ 34.145508, 51.563412 ], [ 34.222412, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.771208 ], [ 35.354004, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.397461, 50.380502 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.922935 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.231991 ], [ 39.737549, 47.901614 ], [ 38.770752, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.100045 ], [ 37.430420, 47.025206 ], [ 36.760254, 46.702202 ], [ 35.826416, 46.649436 ], [ 34.958496, 46.271037 ], [ 35.024414, 45.652448 ], [ 35.507812, 45.406164 ], [ 36.529541, 45.467836 ], [ 36.331787, 45.112300 ], [ 35.244141, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.552246, 45.034715 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.739502, 46.331758 ], [ 31.673584, 46.709736 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.035109 ], [ 29.608154, 45.290347 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.234863, 45.490946 ], [ 28.487549, 45.598666 ], [ 28.663330, 45.943511 ], [ 28.937988, 46.255847 ], [ 28.861084, 46.437857 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.377254 ], [ 29.761963, 46.346928 ], [ 30.025635, 46.422713 ], [ 29.838867, 46.528635 ], [ 29.904785, 46.672056 ], [ 29.564209, 46.927759 ], [ 29.410400, 47.346267 ], [ 29.047852, 47.509780 ], [ 29.124756, 47.850031 ], [ 28.674316, 48.114767 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.465637 ], [ 26.861572, 48.370848 ], [ 26.619873, 48.217353 ], [ 26.202393, 48.217353 ], [ 25.949707, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.763428, 47.982568 ], [ 23.137207, 48.092757 ], [ 22.708740, 47.879513 ], [ 22.642822, 48.151428 ], [ 22.082520, 48.421910 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.521973, 49.475263 ], [ 23.422852, 50.310392 ], [ 23.928223, 50.422519 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.577070 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.890054 ], [ 25.323486, 51.910391 ], [ 26.334229, 51.828988 ], [ 27.454834, 51.590723 ], [ 28.245850, 51.570241 ], [ 28.619385, 51.426614 ], [ 28.992920, 51.604372 ], [ 29.256592, 51.364921 ], [ 30.157471, 51.412912 ], [ 30.552979, 51.316881 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.038977 ], [ 31.783447, 52.099757 ], [ 32.156982, 52.059246 ], [ 32.409668, 52.288323 ], [ 32.717285, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.608887, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.180908, 40.313043 ], [ 22.983398, 40.313043 ], [ 22.818604, 40.472024 ], [ 22.675781, 40.313043 ], [ 20.654297, 40.313043 ], [ 20.676270, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.763916, 40.979898 ], [ 22.060547, 41.153842 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.828642 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.465637 ], [ 28.256836, 48.158757 ], [ 28.674316, 48.114767 ], [ 29.124756, 47.850031 ], [ 29.047852, 47.509780 ], [ 29.410400, 47.346267 ], [ 29.564209, 46.927759 ], [ 29.904785, 46.672056 ], [ 29.838867, 46.528635 ], [ 30.025635, 46.422713 ], [ 29.761963, 46.346928 ], [ 29.168701, 46.377254 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.437857 ], [ 28.937988, 46.255847 ], [ 28.663330, 45.943511 ], [ 28.487549, 45.598666 ], [ 28.234863, 45.490946 ], [ 28.059082, 45.943511 ], [ 28.157959, 46.369674 ], [ 28.125000, 46.807580 ], [ 27.553711, 47.405785 ], [ 27.235107, 47.827908 ], [ 26.927490, 48.122101 ], [ 26.619873, 48.217353 ], [ 26.861572, 48.370848 ], [ 27.520752, 48.465637 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.334961, 43.897892 ], [ 24.104004, 43.739352 ], [ 25.565186, 43.691708 ], [ 26.070557, 43.945372 ], [ 27.246094, 44.174325 ], [ 27.971191, 43.810747 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.674561, 42.577355 ], [ 27.993164, 42.008489 ], [ 27.136230, 42.138968 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.236511 ], [ 24.488525, 41.582580 ], [ 23.697510, 41.310824 ], [ 22.950439, 41.335576 ], [ 22.884521, 42.000325 ], [ 22.379150, 42.317939 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.577355 ], [ 22.609863, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.653809, 44.237328 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.556510 ], [ 40.924072, 43.381098 ], [ 42.396240, 43.221190 ], [ 43.758545, 42.738944 ], [ 43.934326, 42.553080 ], [ 44.538574, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.472412, 42.504503 ], [ 45.780029, 42.090070 ], [ 45.878906, 42.057450 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.244772 ], [ 43.582764, 41.095912 ], [ 42.615967, 41.582580 ], [ 41.550293, 41.533254 ], [ 41.704102, 41.959490 ], [ 41.451416, 42.642041 ], [ 40.880127, 43.012681 ], [ 40.319824, 43.125043 ], [ 39.957275, 43.436966 ], [ 40.078125, 43.556510 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.217353 ], [ 26.927490, 48.122101 ], [ 27.235107, 47.827908 ], [ 27.553711, 47.405785 ], [ 28.125000, 46.807580 ], [ 28.157959, 46.369674 ], [ 28.059082, 45.943511 ], [ 28.234863, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.608154, 45.290347 ], [ 29.630127, 45.034715 ], [ 29.146729, 44.816916 ], [ 28.839111, 44.910359 ], [ 28.553467, 43.707594 ], [ 27.971191, 43.810747 ], [ 27.246094, 44.174325 ], [ 26.070557, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.104004, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.478027, 44.410240 ], [ 22.708740, 44.574817 ], [ 22.456055, 44.699898 ], [ 22.148438, 44.480830 ], [ 21.566162, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.413876 ], [ 20.764160, 45.736860 ], [ 20.214844, 46.126556 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.104492, 47.672786 ], [ 22.708740, 47.879513 ], [ 23.137207, 48.092757 ], [ 23.763428, 47.982568 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.949707, 47.989922 ], [ 26.202393, 48.217353 ], [ 26.619873, 48.217353 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.317939 ], [ 22.884521, 42.000325 ], [ 22.950439, 41.335576 ], [ 22.763672, 41.302571 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.153842 ], [ 21.763916, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.016846, 40.838749 ], [ 20.786133, 40.979898 ], [ 20.610352, 41.087632 ], [ 20.467529, 41.516804 ], [ 20.588379, 41.853196 ], [ 20.720215, 41.845013 ], [ 20.764160, 42.049293 ], [ 21.357422, 42.204107 ], [ 21.917725, 42.301690 ], [ 22.379150, 42.317939 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.556510 ], [ 40.924072, 43.381098 ], [ 42.396240, 43.221190 ], [ 43.758545, 42.738944 ], [ 43.934326, 42.553080 ], [ 44.538574, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.472412, 42.504503 ], [ 45.780029, 42.090070 ], [ 45.878906, 42.057450 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.244772 ], [ 43.582764, 41.095912 ], [ 42.615967, 41.582580 ], [ 41.550293, 41.533254 ], [ 41.704102, 41.959490 ], [ 41.451416, 42.642041 ], [ 40.880127, 43.012681 ], [ 40.319824, 43.125043 ], [ 39.957275, 43.436966 ], [ 40.078125, 43.556510 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.244772 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.747070, 40.313043 ], [ 43.670654, 40.313043 ], [ 43.747559, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.095912 ], [ 44.967041, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.788818, 40.313043 ], [ 8.393555, 40.313043 ], [ 8.393555, 40.380028 ], [ 8.162842, 40.946714 ], [ 8.712158, 40.896906 ], [ 8.843994, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 12.150879, 47.115000 ], [ 12.381592, 46.769968 ], [ 13.809814, 46.505954 ], [ 13.699951, 46.019853 ], [ 13.941650, 45.590978 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.598290 ], [ 12.590332, 44.087585 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.951320 ], [ 15.930176, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.880295 ], [ 18.380127, 40.354917 ], [ 18.402100, 40.313043 ], [ 17.556152, 40.313043 ], [ 16.875000, 40.438586 ], [ 16.787109, 40.313043 ], [ 14.897461, 40.313043 ], [ 14.699707, 40.605612 ], [ 14.062500, 40.788860 ], [ 13.853760, 40.979898 ], [ 13.623047, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.705729 ], [ 11.195068, 42.358544 ], [ 10.513916, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.363133 ], [ 8.426514, 44.229457 ], [ 7.855225, 43.771094 ], [ 7.437744, 43.691708 ], [ 7.547607, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.745605, 45.026950 ], [ 7.097168, 45.336702 ], [ 6.800537, 45.706179 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.821143 ], [ 8.316650, 46.164614 ], [ 8.492432, 46.004593 ], [ 8.964844, 46.035109 ], [ 9.184570, 46.437857 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.483265 ], [ 10.447998, 46.890232 ], [ 11.052246, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.115000 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 40.313043 ], [ 45.747070, 40.313043 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.244772 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ] ] ] } } ] } @@ -1002,39 +950,31 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.219482, 41.640078 ], [ 46.636963, 41.178654 ], [ 46.505127, 41.062786 ], [ 45.966797, 41.120746 ], [ 45.219727, 41.409776 ], [ 44.967041, 41.244772 ], [ 44.121094, 41.153842 ], [ 44.121094, 41.640078 ], [ 46.219482, 41.640078 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.121094, 39.436193 ], [ 44.121094, 40.094882 ], [ 44.395752, 40.002372 ], [ 44.791260, 39.715638 ], [ 44.121094, 39.436193 ] ] ], [ [ [ 44.121094, 39.385264 ], [ 44.417725, 38.281313 ], [ 44.230957, 37.970185 ], [ 44.769287, 37.169072 ], [ 44.296875, 37.002553 ], [ 44.121094, 37.125286 ], [ 44.121094, 39.385264 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.244772 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.615234, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.461644 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.736946 ], [ 45.736084, 39.317300 ], [ 45.736084, 39.470125 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.002372 ], [ 44.121094, 40.094882 ], [ 44.121094, 41.153842 ], [ 44.967041, 41.244772 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 9.026153 ], [ 45.000000, 8.700499 ], [ 46.944580, 7.993957 ], [ 47.790527, 8.004837 ], [ 45.000000, 5.036227 ], [ 44.967041, 5.003394 ], [ 44.121094, 4.970560 ], [ 44.121094, 9.026153 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.769287, 37.169072 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 46.076660, 35.675147 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.750640 ], [ 45.417480, 33.970698 ], [ 46.109619, 33.017876 ], [ 47.340088, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.448674 ], [ 48.570557, 29.926374 ], [ 47.977295, 29.973970 ], [ 47.307129, 30.059586 ], [ 46.571045, 29.094577 ], [ 45.000000, 29.161756 ], [ 44.714355, 29.180941 ], [ 44.121094, 29.602118 ], [ 44.121094, 37.125286 ], [ 44.296875, 37.002553 ], [ 44.769287, 37.169072 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 18.999803 ], [ 53.107910, 16.646718 ], [ 52.382812, 16.383391 ], [ 52.196045, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.174316, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.680420, 13.998037 ], [ 48.240967, 13.944730 ], [ 47.944336, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.293411 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.704651 ], [ 44.494629, 12.726084 ], [ 44.176025, 12.586732 ], [ 44.121094, 12.586732 ], [ 44.121094, 17.413546 ], [ 45.000000, 17.424029 ], [ 45.219727, 17.434511 ], [ 45.395508, 17.329664 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.471924, 17.119793 ], [ 48.186035, 18.166730 ], [ 49.119873, 18.615013 ], [ 51.998291, 18.999803 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.706055, 41.640078 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.062786 ], [ 76.849365, 40.979898 ], [ 76.530762, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.363288 ], [ 73.817139, 39.892880 ], [ 73.959961, 39.656456 ], [ 73.674316, 39.427707 ], [ 71.784668, 39.283294 ], [ 70.554199, 39.605688 ], [ 69.466553, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.653076, 39.935013 ], [ 71.015625, 40.245992 ], [ 71.773682, 40.145289 ], [ 73.059082, 40.863680 ], [ 72.795410, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.516804 ], [ 70.576172, 41.640078 ], [ 78.706055, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.554443, 41.640078 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.599121, 41.640078 ], [ 69.554443, 41.640078 ] ] ], [ [ [ 55.964355, 41.640078 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 55.118408, 41.640078 ], [ 55.964355, 41.640078 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.757324, 41.640078 ], [ 49.108887, 41.286062 ], [ 49.328613, 40.979898 ], [ 49.614258, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.394287, 40.254377 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.814031 ], [ 48.878174, 38.324420 ], [ 48.636475, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.065186, 39.580290 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.461644 ], [ 46.032715, 39.631077 ], [ 45.615234, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.120746 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.219482, 41.640078 ], [ 46.900635, 41.640078 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.988281, 41.409776 ], [ 48.328857, 41.640078 ], [ 48.757324, 41.640078 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.736084, 39.470125 ], [ 45.736084, 39.317300 ], [ 46.142578, 38.736946 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.307129, 30.059586 ], [ 47.977295, 29.973970 ], [ 48.186035, 29.535230 ], [ 48.098145, 29.305561 ], [ 48.416748, 28.555576 ], [ 47.713623, 28.526622 ], [ 47.460938, 28.998532 ], [ 46.571045, 29.094577 ], [ 47.307129, 30.059586 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.602783, 25.214881 ], [ 51.394043, 24.627045 ], [ 51.108398, 24.557116 ], [ 50.811768, 24.756808 ], [ 50.745850, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 29.602118 ], [ 44.714355, 29.180941 ], [ 45.000000, 29.161756 ], [ 46.571045, 29.094577 ], [ 47.460938, 28.998532 ], [ 47.713623, 28.526622 ], [ 48.416748, 28.555576 ], [ 48.812256, 27.693256 ], [ 49.295654, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.686730 ], [ 50.207520, 26.273714 ], [ 50.108643, 25.948166 ], [ 50.240479, 25.611810 ], [ 50.526123, 25.324167 ], [ 50.657959, 24.996016 ], [ 50.811768, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.394043, 24.627045 ], [ 51.580811, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 22.998852 ], [ 55.008545, 22.492257 ], [ 55.206299, 22.705255 ], [ 55.667725, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 18.999803 ], [ 49.119873, 18.615013 ], [ 48.186035, 18.166730 ], [ 47.471924, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.424029 ], [ 44.121094, 17.413546 ], [ 44.121094, 29.602118 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.236947 ], [ 57.403564, 23.875792 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.447021, 22.664710 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.115249 ], [ 58.491211, 20.427013 ], [ 58.029785, 20.478482 ], [ 57.821045, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.238770, 18.947856 ], [ 56.612549, 18.573362 ], [ 56.513672, 18.083201 ], [ 56.282959, 17.874203 ], [ 55.656738, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.272217, 17.224758 ], [ 54.788818, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.646718 ], [ 51.998291, 18.999803 ], [ 54.997559, 20.004322 ], [ 55.667725, 22.004175 ], [ 55.206299, 22.705255 ], [ 55.239258, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.524902, 23.936055 ], [ 55.986328, 24.126702 ], [ 55.799561, 24.266997 ], [ 55.887451, 24.916331 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.391870 ], [ 56.480713, 26.313113 ], [ 56.392822, 25.898762 ], [ 56.260986, 25.710837 ], [ 56.074219, 26.056783 ], [ 56.359863, 26.391870 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 46.142578, 38.736946 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.065186, 39.580290 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.636475, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.579413 ], [ 50.152588, 37.378888 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.195331 ], [ 54.799805, 37.396346 ], [ 55.513916, 37.961523 ], [ 56.184082, 37.935533 ], [ 56.623535, 38.117272 ], [ 57.326660, 38.030786 ], [ 58.436279, 37.518440 ], [ 59.238281, 37.413800 ], [ 60.380859, 36.527295 ], [ 61.127930, 36.491973 ], [ 61.215820, 35.648369 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.981020 ], [ 60.864258, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.732393 ], [ 60.875244, 29.831114 ], [ 61.369629, 29.305561 ], [ 61.776123, 28.700225 ], [ 62.731934, 28.256006 ], [ 62.753906, 27.381523 ], [ 63.237305, 27.215556 ], [ 63.314209, 26.755421 ], [ 61.875000, 26.244156 ], [ 61.501465, 25.075648 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.975098, 26.961246 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.961246 ], [ 54.711914, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.576460 ], [ 51.525879, 27.868217 ], [ 50.855713, 28.815800 ], [ 50.119629, 30.145127 ], [ 49.581299, 29.983487 ], [ 48.944092, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.010254, 30.448674 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.340088, 32.472695 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.675147 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.230957, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.385264 ], [ 44.121094, 39.436193 ], [ 44.791260, 39.715638 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.051270, 41.640078 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.269550 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.052848 ], [ 63.522949, 39.359785 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.978845 ], [ 66.522217, 37.361426 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.657732 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.107765 ], [ 64.544678, 36.315125 ], [ 63.984375, 36.004673 ], [ 63.193359, 35.853440 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.215820, 35.648369 ], [ 61.127930, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.413800 ], [ 58.436279, 37.518440 ], [ 57.326660, 38.030786 ], [ 56.623535, 38.117272 ], [ 56.184082, 37.935533 ], [ 55.513916, 37.961523 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.195331 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.950865 ], [ 53.096924, 39.291797 ], [ 53.360596, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.964844, 41.640078 ], [ 55.118408, 41.640078 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.319076 ], [ 56.997070, 41.640078 ], [ 60.051270, 41.640078 ] ] ], [ [ [ 52.888184, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.569580, 41.640078 ], [ 52.888184, 41.640078 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.449062 ], [ 48.482666, 8.841651 ], [ 47.790527, 8.004837 ], [ 46.944580, 7.993957 ], [ 45.000000, 8.700499 ], [ 44.121094, 9.026153 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.541821 ], [ 45.560303, 10.692996 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.124507 ], [ 48.021240, 11.189180 ], [ 48.383789, 11.372339 ], [ 48.944092, 11.415418 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.042480, 10.639014 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.075684, 8.080985 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.214943 ], [ 46.560059, 2.855263 ], [ 45.560303, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.121094, 1.087581 ], [ 44.121094, 4.970560 ], [ 44.967041, 5.003394 ], [ 45.000000, 5.036227 ], [ 47.790527, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.449062 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.426187 ], [ 49.724121, 11.576907 ], [ 50.262451, 11.684514 ], [ 50.734863, 12.017830 ], [ 51.108398, 12.028576 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ], [ 90.725098, 28.062286 ], [ 90.010986, 28.294707 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.207609 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.844674 ], [ 83.902588, 29.324720 ], [ 83.342285, 29.468297 ], [ 82.331543, 30.116622 ], [ 81.529541, 30.420256 ], [ 81.112061, 30.183122 ], [ 79.716797, 30.883369 ], [ 78.739014, 31.512996 ], [ 78.453369, 32.620870 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.990236 ], [ 78.815918, 33.504759 ], [ 78.914795, 34.325292 ], [ 77.838135, 35.496456 ], [ 76.190186, 35.897950 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.422526 ], [ 74.827881, 37.987504 ], [ 74.860840, 38.376115 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.427707 ], [ 73.959961, 39.656456 ], [ 73.817139, 39.892880 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.062786 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.015625, 40.245992 ], [ 70.653076, 39.935013 ], [ 69.554443, 40.103286 ], [ 69.466553, 39.529467 ], [ 70.554199, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.427707 ], [ 73.927002, 38.505191 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.376115 ], [ 74.827881, 37.987504 ], [ 74.981689, 37.422526 ], [ 73.948975, 37.422526 ], [ 73.256836, 37.492294 ], [ 72.641602, 37.046409 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.063944 ], [ 71.542969, 37.909534 ], [ 71.235352, 37.952861 ], [ 71.345215, 38.255436 ], [ 70.806885, 38.487995 ], [ 70.378418, 38.134557 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.588119 ], [ 69.521484, 37.605528 ], [ 69.191895, 37.151561 ], [ 68.862305, 37.343959 ], [ 68.137207, 37.020098 ], [ 67.829590, 37.142803 ], [ 68.389893, 38.160476 ], [ 68.181152, 38.899583 ], [ 67.445068, 39.138582 ], [ 67.697754, 39.580290 ], [ 68.532715, 39.529467 ], [ 69.016113, 40.086477 ], [ 69.334717, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.529541, 30.420256 ], [ 82.331543, 30.116622 ], [ 83.342285, 29.468297 ], [ 83.902588, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.012207, 28.642389 ], [ 85.825195, 28.207609 ], [ 86.956787, 27.974998 ], [ 88.121338, 27.877928 ], [ 88.044434, 27.449790 ], [ 88.176270, 26.814266 ], [ 88.055420, 26.411551 ], [ 87.231445, 26.401711 ], [ 86.022949, 26.627818 ], [ 85.253906, 26.725987 ], [ 84.671631, 27.235095 ], [ 83.309326, 27.362011 ], [ 82.001953, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.090332, 28.796546 ], [ 80.474854, 29.726222 ], [ 81.112061, 30.183122 ], [ 81.529541, 30.420256 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.838135, 35.496456 ], [ 78.914795, 34.325292 ], [ 78.815918, 33.504759 ], [ 79.211426, 32.990236 ], [ 79.178467, 32.481963 ], [ 78.453369, 32.620870 ], [ 78.739014, 31.512996 ], [ 79.716797, 30.883369 ], [ 81.112061, 30.183122 ], [ 80.474854, 29.726222 ], [ 80.090332, 28.796546 ], [ 81.057129, 28.420391 ], [ 82.001953, 27.926474 ], [ 83.309326, 27.362011 ], [ 84.671631, 27.235095 ], [ 85.253906, 26.725987 ], [ 86.022949, 26.627818 ], [ 87.231445, 26.401711 ], [ 88.055420, 26.411551 ], [ 88.176270, 26.814266 ], [ 88.044434, 27.449790 ], [ 88.121338, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.098254 ], [ 89.747314, 26.716174 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.873081 ], [ 90.878906, 26.833875 ], [ 90.878906, 25.135339 ], [ 90.000000, 25.254633 ], [ 89.923096, 25.274504 ], [ 89.835205, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.934326, 25.234758 ], [ 88.308105, 24.866503 ], [ 88.088379, 24.497146 ], [ 88.703613, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.879395, 22.877440 ], [ 89.033203, 22.055096 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.698265 ], [ 86.978760, 21.493964 ], [ 87.033691, 20.745840 ], [ 86.495361, 20.148785 ], [ 85.056152, 19.476950 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.014768 ], [ 82.188721, 16.551962 ], [ 81.694336, 16.309596 ], [ 80.793457, 15.950766 ], [ 80.321045, 15.897942 ], [ 80.024414, 15.135764 ], [ 80.233154, 13.838080 ], [ 80.288086, 13.004558 ], [ 79.859619, 12.060809 ], [ 79.859619, 10.358151 ], [ 79.343262, 10.304110 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.928487 ], [ 77.937012, 8.254983 ], [ 77.541504, 7.961317 ], [ 76.596680, 8.895926 ], [ 76.135254, 10.304110 ], [ 75.750732, 11.307708 ], [ 75.399170, 11.781325 ], [ 74.860840, 12.736801 ], [ 74.619141, 13.987376 ], [ 74.443359, 14.615478 ], [ 73.531494, 15.993015 ], [ 73.125000, 17.926476 ], [ 72.817383, 19.207429 ], [ 72.828369, 20.416717 ], [ 72.630615, 21.361013 ], [ 71.180420, 20.756114 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.085640 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.181152, 23.694835 ], [ 68.840332, 24.357105 ], [ 71.048584, 24.357105 ], [ 70.839844, 25.214881 ], [ 70.279541, 25.720735 ], [ 70.169678, 26.490240 ], [ 69.510498, 26.941660 ], [ 70.620117, 27.984700 ], [ 71.773682, 27.916767 ], [ 72.828369, 28.960089 ], [ 73.454590, 29.973970 ], [ 74.421387, 30.977609 ], [ 74.410400, 31.690782 ], [ 75.256348, 32.268555 ], [ 74.454346, 32.768800 ], [ 74.102783, 33.440609 ], [ 73.751221, 34.316218 ], [ 74.245605, 34.750640 ], [ 75.761719, 34.506557 ], [ 76.871338, 34.651285 ], [ 77.838135, 35.496456 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.264779 ], [ 81.298828, 8.559294 ], [ 81.793213, 7.525873 ], [ 81.639404, 6.479067 ], [ 81.221924, 6.195168 ], [ 80.343018, 5.965754 ], [ 79.870605, 6.762806 ], [ 79.694824, 8.200616 ], [ 80.145264, 9.828154 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.294707 ], [ 90.725098, 28.062286 ], [ 90.878906, 28.062286 ], [ 90.878906, 26.833875 ], [ 90.373535, 26.873081 ], [ 90.000000, 26.784847 ], [ 89.747314, 26.716174 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.285033 ], [ 90.010986, 28.294707 ] ] ] } } , @@ -1114,7 +1054,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.214844, 20.097206 ], [ 110.786133, 20.076570 ], [ 111.005859, 19.694314 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.677471 ], [ 109.478760, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.362976 ], [ 109.116211, 19.818390 ], [ 110.214844, 20.097206 ] ] ], [ [ [ 126.694336, 41.640078 ], [ 126.177979, 41.104191 ], [ 125.925293, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.266357, 39.926588 ], [ 122.871094, 39.639538 ], [ 122.135010, 39.172659 ], [ 121.058350, 38.899583 ], [ 121.585693, 39.359785 ], [ 121.376953, 39.749434 ], [ 122.167969, 40.421860 ], [ 121.640625, 40.946714 ], [ 120.772705, 40.597271 ], [ 119.641113, 39.901309 ], [ 119.025879, 39.249271 ], [ 118.048096, 39.206719 ], [ 117.531738, 38.736946 ], [ 118.059082, 38.065392 ], [ 118.883057, 37.900865 ], [ 118.916016, 37.448697 ], [ 119.707031, 37.160317 ], [ 120.827637, 37.866181 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.650793 ], [ 120.640869, 36.111253 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.376412 ], [ 121.234131, 32.463426 ], [ 121.904297, 31.690782 ], [ 121.893311, 30.949347 ], [ 121.267090, 30.675715 ], [ 121.508789, 30.145127 ], [ 122.091064, 29.831114 ], [ 121.937256, 29.017748 ], [ 121.684570, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.399170, 27.049342 ], [ 119.586182, 25.740529 ], [ 118.652344, 24.547123 ], [ 117.279053, 23.624395 ], [ 115.894775, 22.786311 ], [ 114.763184, 22.664710 ], [ 114.147949, 22.228090 ], [ 113.807373, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.786133, 21.401934 ], [ 110.445557, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.632568, 21.012727 ], [ 109.863281, 21.391705 ], [ 108.522949, 21.718680 ], [ 108.050537, 21.555284 ], [ 107.039795, 21.810508 ], [ 106.567383, 22.217920 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.479980, 22.816694 ], [ 103.502197, 22.705255 ], [ 102.711182, 22.705255 ], [ 102.172852, 22.461802 ], [ 101.656494, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.271973, 21.197216 ], [ 101.184082, 21.432617 ], [ 101.151123, 21.851302 ], [ 100.415039, 21.555284 ], [ 99.986572, 21.739091 ], [ 99.239502, 22.116177 ], [ 99.536133, 22.948277 ], [ 98.898926, 23.140360 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.895883 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.918526 ], [ 98.712158, 26.745610 ], [ 98.679199, 27.508271 ], [ 98.250732, 27.751608 ], [ 97.910156, 28.333395 ], [ 97.327881, 28.265682 ], [ 96.251221, 28.410728 ], [ 96.591797, 28.835050 ], [ 96.119385, 29.449165 ], [ 95.405273, 29.027355 ], [ 94.570312, 29.276816 ], [ 93.416748, 28.642389 ], [ 92.504883, 27.897349 ], [ 91.691895, 27.771051 ], [ 91.263428, 28.042895 ], [ 90.725098, 28.062286 ], [ 90.010986, 28.294707 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.042895 ], [ 89.121094, 27.644606 ], [ 89.121094, 41.640078 ], [ 104.908447, 41.640078 ], [ 104.963379, 41.599013 ], [ 105.062256, 41.640078 ], [ 126.694336, 41.640078 ] ] ], [ [ [ 128.155518, 41.640078 ], [ 128.210449, 41.467428 ], [ 127.342529, 41.500350 ], [ 127.133789, 41.640078 ], [ 128.155518, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.062256, 41.640078 ], [ 104.963379, 41.599013 ], [ 104.908447, 41.640078 ], [ 105.062256, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.119385, 29.449165 ], [ 96.591797, 28.835050 ], [ 96.251221, 28.410728 ], [ 97.327881, 28.265682 ], [ 97.404785, 27.877928 ], [ 97.053223, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.264396 ], [ 95.119629, 26.568877 ], [ 95.152588, 25.997550 ], [ 94.603271, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.108887, 23.855698 ], [ 93.328857, 24.076559 ], [ 93.284912, 23.039298 ], [ 93.065186, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.624395 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.472168, 24.076559 ], [ 91.911621, 24.126702 ], [ 92.373047, 24.976099 ], [ 91.801758, 25.145285 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.254633 ], [ 89.923096, 25.274504 ], [ 89.835205, 25.967922 ], [ 89.351807, 26.017298 ], [ 89.121094, 26.145576 ], [ 89.121094, 26.980829 ], [ 89.747314, 26.716174 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.873081 ], [ 91.219482, 26.804461 ], [ 92.032471, 26.833875 ], [ 92.098389, 27.449790 ], [ 91.691895, 27.771051 ], [ 92.504883, 27.897349 ], [ 93.416748, 28.642389 ], [ 94.570312, 29.276816 ], [ 95.405273, 29.027355 ], [ 96.119385, 29.449165 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.294707 ], [ 90.725098, 28.062286 ], [ 91.263428, 28.042895 ], [ 91.691895, 27.771051 ], [ 92.098389, 27.449790 ], [ 92.032471, 26.833875 ], [ 91.219482, 26.804461 ], [ 90.373535, 26.873081 ], [ 90.000000, 26.784847 ], [ 89.747314, 26.716174 ], [ 89.121094, 26.980829 ], [ 89.121094, 27.644606 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.285033 ], [ 90.010986, 28.294707 ] ] ] } } , @@ -1124,22 +1064,16 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.461802 ], [ 102.755127, 21.677848 ], [ 103.205566, 20.766387 ], [ 104.436035, 20.756114 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.621892 ], [ 103.897705, 19.269665 ], [ 105.095215, 18.667063 ], [ 106.556396, 16.604610 ], [ 107.314453, 15.908508 ], [ 107.567139, 15.199386 ], [ 107.380371, 14.200488 ], [ 106.501465, 14.572951 ], [ 106.040039, 13.880746 ], [ 105.216064, 14.275030 ], [ 105.545654, 14.721761 ], [ 105.589600, 15.570128 ], [ 104.776611, 16.446622 ], [ 104.721680, 17.424029 ], [ 103.952637, 18.239786 ], [ 103.205566, 18.312811 ], [ 102.996826, 17.957832 ], [ 102.414551, 17.936929 ], [ 102.117920, 18.104087 ], [ 101.063232, 17.507867 ], [ 101.041260, 18.406655 ], [ 101.282959, 19.466592 ], [ 100.601807, 19.508020 ], [ 100.546875, 20.107523 ], [ 100.118408, 20.416717 ], [ 100.327148, 20.786931 ], [ 101.184082, 21.432617 ], [ 101.271973, 21.197216 ], [ 101.799316, 21.176729 ], [ 101.656494, 22.319589 ], [ 102.172852, 22.461802 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.118408, 20.416717 ], [ 100.546875, 20.107523 ], [ 100.601807, 19.508020 ], [ 101.282959, 19.466592 ], [ 101.041260, 18.406655 ], [ 101.063232, 17.507867 ], [ 102.117920, 18.104087 ], [ 102.414551, 17.936929 ], [ 102.996826, 17.957832 ], [ 103.205566, 18.312811 ], [ 103.952637, 18.239786 ], [ 104.721680, 17.424029 ], [ 104.776611, 16.446622 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.721761 ], [ 105.216064, 14.275030 ], [ 104.282227, 14.413400 ], [ 102.985840, 14.221789 ], [ 102.348633, 13.389620 ], [ 102.590332, 12.189704 ], [ 101.689453, 12.651058 ], [ 100.832520, 12.629618 ], [ 100.975342, 13.410994 ], [ 100.096436, 13.410994 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.958030 ], [ 99.217529, 9.243093 ], [ 99.876709, 9.210560 ], [ 100.283203, 8.298470 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.860985 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.217012 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.340675 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.151855, 8.352823 ], [ 98.261719, 8.971897 ], [ 98.558350, 9.936388 ], [ 99.041748, 10.962764 ], [ 99.591064, 11.888853 ], [ 99.195557, 12.801088 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.827412 ], [ 98.426514, 14.626109 ], [ 98.195801, 15.125159 ], [ 98.536377, 15.305380 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.836090 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.800293, 18.625425 ], [ 98.250732, 19.704658 ], [ 98.964844, 19.756364 ], [ 99.547119, 20.190035 ], [ 100.118408, 20.416717 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.501465, 14.572951 ], [ 107.380371, 14.200488 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.566144 ], [ 106.248779, 10.962764 ], [ 105.205078, 10.887254 ], [ 104.337158, 10.487812 ], [ 103.502197, 10.628216 ], [ 103.095703, 11.156845 ], [ 102.590332, 12.189704 ], [ 102.348633, 13.389620 ], [ 102.985840, 14.221789 ], [ 104.282227, 14.413400 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.880746 ], [ 106.501465, 14.572951 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.567383, 22.217920 ], [ 107.039795, 21.810508 ], [ 108.050537, 21.555284 ], [ 106.710205, 20.694462 ], [ 105.886230, 19.756364 ], [ 105.666504, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.270264, 16.077486 ], [ 108.874512, 15.273587 ], [ 109.335938, 13.421681 ], [ 109.204102, 11.662996 ], [ 108.369141, 11.005904 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.161133, 8.602747 ], [ 104.798584, 9.243093 ], [ 105.073242, 9.914744 ], [ 104.337158, 10.487812 ], [ 105.205078, 10.887254 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.566144 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.200488 ], [ 107.567139, 15.199386 ], [ 107.314453, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.269665 ], [ 104.183350, 19.621892 ], [ 104.820557, 19.890723 ], [ 104.436035, 20.756114 ], [ 103.205566, 20.766387 ], [ 102.755127, 21.677848 ], [ 102.172852, 22.461802 ], [ 102.711182, 22.705255 ], [ 103.502197, 22.705255 ], [ 104.479980, 22.816694 ], [ 105.325928, 23.352343 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.497803, 25.294371 ], [ 121.948242, 24.996016 ], [ 121.772461, 24.397133 ], [ 121.179199, 22.786311 ], [ 120.750732, 21.973614 ], [ 120.223389, 22.816694 ], [ 120.102539, 23.553917 ], [ 120.695801, 24.537129 ], [ 121.497803, 25.294371 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.704590, 41.640078 ], [ 129.671631, 41.599013 ], [ 129.704590, 40.979898 ], [ 129.704590, 40.880295 ], [ 129.188232, 40.663973 ], [ 129.012451, 40.488737 ], [ 128.627930, 40.187267 ], [ 127.968750, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.507324, 39.325799 ], [ 127.386475, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.353271, 38.608286 ], [ 128.210449, 38.367502 ], [ 127.781982, 38.307181 ], [ 127.067871, 38.255436 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.840157 ], [ 126.177979, 37.753344 ], [ 125.694580, 37.944198 ], [ 125.573730, 37.753344 ], [ 125.277100, 37.666429 ], [ 125.244141, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.716797, 38.108628 ], [ 124.991455, 38.548165 ], [ 125.222168, 38.668356 ], [ 125.134277, 38.848264 ], [ 125.386963, 39.385264 ], [ 125.321045, 39.554883 ], [ 124.738770, 39.656456 ], [ 124.266357, 39.926588 ], [ 125.079346, 40.572240 ], [ 125.925293, 40.979898 ], [ 126.177979, 41.104191 ], [ 126.694336, 41.640078 ], [ 127.133789, 41.640078 ], [ 127.342529, 41.500350 ], [ 128.210449, 41.467428 ], [ 128.155518, 41.640078 ], [ 129.704590, 41.640078 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.353271, 38.608286 ], [ 129.210205, 37.431251 ], [ 129.462891, 36.782892 ], [ 129.462891, 35.630512 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.885931 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.388779 ], [ 126.375732, 34.930979 ], [ 126.562500, 35.684072 ], [ 126.112061, 36.721274 ], [ 126.859131, 36.897194 ], [ 126.177979, 37.753344 ], [ 126.232910, 37.840157 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.255436 ], [ 127.781982, 38.307181 ], [ 128.210449, 38.367502 ], [ 128.353271, 38.608286 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.455322, 5.451959 ], [ 115.345459, 4.313546 ], [ 114.873047, 4.346411 ], [ 114.664307, 4.006740 ], [ 114.202881, 4.521666 ], [ 114.598389, 4.904887 ], [ 115.455322, 5.451959 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.125244, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.703448 ], [ 119.179688, 5.408211 ], [ 119.113770, 5.014339 ], [ 118.443604, 4.970560 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.302591 ], [ 115.861816, 4.302591 ], [ 115.521240, 3.173425 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.219390 ], [ 112.862549, 1.493971 ], [ 112.379150, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.977736 ], [ 110.511475, 0.769020 ], [ 109.830322, 1.340210 ], [ 109.665527, 2.010086 ], [ 110.401611, 1.658704 ], [ 111.170654, 1.845384 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.521666 ], [ 114.664307, 4.006740 ], [ 114.873047, 4.346411 ], [ 115.345459, 4.313546 ], [ 115.455322, 5.451959 ], [ 116.224365, 6.140555 ], [ 116.729736, 6.926427 ], [ 117.125244, 6.926427 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.217012 ], [ 102.370605, 6.129631 ], [ 102.963867, 5.528511 ], [ 103.381348, 4.850154 ], [ 103.436279, 4.182073 ], [ 103.337402, 3.721745 ], [ 103.425293, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.625758 ], [ 104.227295, 1.296276 ], [ 103.524170, 1.230374 ], [ 102.568359, 1.966167 ], [ 101.392822, 2.756504 ], [ 101.271973, 3.272146 ], [ 100.700684, 3.940981 ], [ 100.557861, 4.762573 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.261230, 6.642783 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.474609, 7.754537 ], [ 126.540527, 7.188101 ], [ 126.199951, 6.271618 ], [ 125.826416, 7.297088 ], [ 125.364990, 6.784626 ], [ 125.683594, 6.053161 ], [ 125.397949, 5.583184 ], [ 124.222412, 6.162401 ], [ 123.936768, 6.882800 ], [ 124.244385, 7.362467 ], [ 123.607178, 7.830731 ], [ 123.299561, 7.416942 ], [ 122.827148, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.188101 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.689639 ], [ 123.837891, 8.244110 ], [ 124.606934, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.474854, 8.982749 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 121.322021, 18.500447 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.178955, 17.811456 ], [ 122.519531, 17.088291 ], [ 122.255859, 16.267414 ], [ 121.662598, 15.929638 ], [ 121.508789, 15.125159 ], [ 121.728516, 14.328260 ], [ 122.255859, 14.221789 ], [ 122.706299, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.859863, 13.239945 ], [ 124.178467, 12.993853 ], [ 124.079590, 12.533115 ], [ 123.299561, 13.025966 ], [ 122.926025, 13.549881 ], [ 122.673340, 13.186468 ], [ 122.036133, 13.784737 ], [ 121.124268, 13.635310 ], [ 120.629883, 13.859414 ], [ 120.684814, 14.275030 ], [ 120.992432, 14.530415 ], [ 120.695801, 14.753635 ], [ 120.563965, 14.392118 ], [ 120.069580, 14.966013 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.362310 ], [ 120.289307, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.717773, 18.500447 ], [ 121.322021, 18.500447 ] ] ], [ [ [ 124.266357, 12.554564 ], [ 125.222168, 12.533115 ], [ 125.507812, 12.157486 ], [ 125.782471, 11.049038 ], [ 125.013428, 11.307708 ], [ 125.035400, 10.973550 ], [ 125.277100, 10.358151 ], [ 124.804688, 10.131117 ], [ 124.760742, 10.833306 ], [ 124.464111, 10.887254 ], [ 124.299316, 11.490791 ], [ 124.892578, 11.415418 ], [ 124.881592, 11.792080 ], [ 124.266357, 12.554564 ] ] ], [ [ [ 124.079590, 11.232286 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.947209 ], [ 123.310547, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.709057 ], [ 122.585449, 9.979671 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.079590, 11.232286 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.552622 ], [ 119.025879, 10.001310 ], [ 118.509521, 9.318990 ], [ 117.169189, 8.363693 ], [ 117.663574, 9.069551 ], [ 118.388672, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.888853 ], [ 122.486572, 11.576907 ], [ 123.123779, 11.587669 ], [ 123.101807, 11.167624 ], [ 122.640381, 10.736175 ], [ 122.003174, 10.444598 ], [ 121.970215, 10.908830 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.888853 ] ] ], [ [ [ 120.322266, 13.464422 ], [ 121.179199, 13.432367 ], [ 121.530762, 13.068777 ], [ 121.267090, 12.200442 ], [ 120.838623, 12.704651 ], [ 120.322266, 13.464422 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.847168, -0.878872 ], [ 131.868896, -0.692122 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.417092 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.571280 ], [ 120.882568, 1.307260 ], [ 121.662598, 1.010690 ], [ 122.926025, 0.878872 ], [ 124.079590, 0.911827 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 127.935791, 2.174771 ], [ 128.001709, 1.625758 ], [ 128.594971, 1.537901 ], [ 128.682861, 1.131518 ], [ 128.638916, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.375244, -0.780005 ], [ 128.144531, -0.878872 ], [ 128.089600, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.812442 ], [ 127.935791, 2.174771 ] ] ], [ [ [ 117.015381, 4.302591 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.284551 ], [ 117.872314, 1.823423 ], [ 118.992920, 0.900842 ], [ 117.806396, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.487793, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.324951, -0.878872 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 2.010086 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.769020 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.900842 ], [ 112.379150, 1.406109 ], [ 112.862549, 1.493971 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.173425 ], [ 115.861816, 4.302591 ], [ 117.015381, 4.302591 ] ] ], [ [ [ 95.295410, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.689941, 3.173425 ], [ 100.645752, 2.097920 ], [ 101.656494, 2.086941 ], [ 102.502441, 1.395126 ], [ 103.073730, 0.560294 ], [ 103.842773, 0.109863 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.449205 ], [ 97.174072, 3.305050 ], [ 96.427002, 3.864255 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.484768 ] ] ], [ [ [ 121.893311, -0.878872 ], [ 123.343506, -0.615223 ], [ 123.288574, -0.878872 ], [ 121.893311, -0.878872 ] ] ] ] } } @@ -2080,41 +2014,35 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.007769 ], [ 11.958618, 54.197797 ], [ 12.518921, 54.470038 ], [ 13.645020, 54.075506 ], [ 14.117432, 53.758454 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.089633 ], [ 14.606323, 51.744038 ], [ 15.018311, 51.106971 ], [ 14.573364, 51.003386 ], [ 14.309692, 51.117317 ], [ 14.057007, 50.927276 ], [ 13.337402, 50.732978 ], [ 12.969360, 50.485474 ], [ 12.238770, 50.264765 ], [ 12.414551, 49.968889 ], [ 12.518921, 49.546598 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.875554 ], [ 13.244019, 48.414619 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.635784 ], [ 12.930908, 47.468950 ], [ 12.623291, 47.672786 ], [ 12.139893, 47.702368 ], [ 11.425781, 47.524620 ], [ 10.546875, 47.565407 ], [ 10.404053, 47.301585 ], [ 9.898682, 47.580231 ], [ 9.596558, 47.524620 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.016257 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.802463 ], [ 5.987549, 51.852746 ], [ 6.591797, 51.852746 ], [ 6.844482, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.102661, 53.693454 ], [ 7.937622, 53.748711 ], [ 8.124390, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.574829, 54.396550 ], [ 8.525391, 54.961848 ], [ 9.283447, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971313, 51.474540 ], [ 5.608521, 51.037940 ], [ 6.157837, 50.802463 ], [ 6.042480, 50.127622 ], [ 5.784302, 50.088869 ], [ 5.674438, 49.528774 ], [ 4.801025, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.125610, 50.781629 ], [ 2.658691, 50.795519 ], [ 2.515869, 51.148340 ], [ 3.312378, 51.344339 ], [ 4.048462, 51.268789 ], [ 4.971313, 51.474540 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.240234, 49.901711 ], [ 6.185303, 49.464554 ], [ 5.899658, 49.443129 ], [ 5.674438, 49.528774 ], [ 5.784302, 50.088869 ], [ 6.042480, 50.127622 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.596558, 47.524620 ], [ 9.635010, 47.346267 ], [ 9.481201, 47.103784 ], [ 9.931641, 46.920255 ], [ 10.442505, 46.893985 ], [ 10.365601, 46.483265 ], [ 9.920654, 46.316584 ], [ 9.184570, 46.441642 ], [ 8.964844, 46.035109 ], [ 8.492432, 46.004593 ], [ 8.316650, 46.164614 ], [ 7.756348, 45.824971 ], [ 7.272949, 45.775186 ], [ 6.844482, 45.989329 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.724800 ], [ 6.767578, 47.286682 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.519897, 47.831596 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.008664 ], [ 9.558105, 42.151187 ], [ 9.228516, 41.380930 ], [ 8.778076, 41.582580 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.008664 ] ] ], [ [ [ 2.515869, 51.148340 ], [ 2.658691, 50.795519 ], [ 3.125610, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.674438, 49.528774 ], [ 5.899658, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.286682 ], [ 6.036987, 46.724800 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.710015 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.695680 ], [ 6.531372, 43.129052 ], [ 4.559326, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.829224, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.581400 ], [ 0.000000, 42.662241 ], [ -0.439453, 42.771211 ], [ -0.439453, 49.532339 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.515869, 51.148340 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.041260, 55.363503 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.980591, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.200806, 56.022948 ], [ 9.953613, 55.776573 ], [ 9.651489, 55.469513 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.961848 ], [ 8.118896, 55.516192 ], [ 8.113403, 55.776573 ], [ 8.107910, 56.022948 ], [ 10.200806, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.254517, 49.037868 ], [ 16.029053, 48.734455 ], [ 16.501465, 48.785152 ], [ 16.962891, 48.596592 ], [ 16.880493, 48.469279 ], [ 16.979370, 48.122101 ], [ 16.902466, 47.713458 ], [ 16.342163, 47.713458 ], [ 16.534424, 47.494937 ], [ 16.204834, 46.852678 ], [ 16.012573, 46.683363 ], [ 15.139160, 46.656977 ], [ 14.633789, 46.430285 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.766206 ], [ 12.150879, 47.115000 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.751153 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.103784 ], [ 9.635010, 47.346267 ], [ 9.596558, 47.524620 ], [ 9.898682, 47.580231 ], [ 10.404053, 47.301585 ], [ 10.546875, 47.565407 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.702368 ], [ 12.623291, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.635784 ], [ 12.881470, 48.290503 ], [ 13.244019, 48.414619 ], [ 13.595581, 48.875554 ], [ 14.337158, 48.556614 ], [ 14.902954, 48.965794 ], [ 15.254517, 49.037868 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.309692, 51.117317 ], [ 14.573364, 51.003386 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.721191, 50.215580 ], [ 16.869507, 50.474987 ], [ 17.556152, 50.362985 ], [ 17.649536, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.545166, 48.799627 ], [ 17.100220, 48.817716 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.254517, 49.037868 ], [ 14.902954, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.875554 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.264765 ], [ 12.969360, 50.485474 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.309692, 51.117317 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.204834, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.567383, 46.502173 ], [ 15.770874, 46.236853 ], [ 15.671997, 45.832627 ], [ 15.325928, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.633246 ], [ 14.414062, 45.467836 ], [ 13.716431, 45.498647 ], [ 13.936157, 45.590978 ], [ 13.699951, 46.016039 ], [ 13.804321, 46.509735 ], [ 14.633789, 46.430285 ], [ 15.139160, 46.656977 ], [ 16.012573, 46.683363 ], [ 16.204834, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.502173 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.555908, 45.081279 ], [ 17.863770, 45.069641 ], [ 17.001343, 45.232349 ], [ 16.534424, 45.213004 ], [ 16.320190, 45.003651 ], [ 15.957642, 45.232349 ], [ 15.748901, 44.816916 ], [ 16.237793, 44.351350 ], [ 16.457520, 44.040219 ], [ 16.913452, 43.667872 ], [ 17.297974, 43.444943 ], [ 17.677002, 43.028745 ], [ 18.561401, 42.650122 ], [ 18.451538, 42.480200 ], [ 17.512207, 42.851806 ], [ 16.929932, 43.209180 ], [ 16.018066, 43.508721 ], [ 15.172119, 44.241264 ], [ 15.375366, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.077400 ], [ 14.260254, 45.232349 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.677979, 45.483244 ], [ 13.716431, 45.498647 ], [ 14.414062, 45.467836 ], [ 14.595337, 45.633246 ], [ 14.935913, 45.471688 ], [ 15.325928, 45.452424 ], [ 15.325928, 45.733025 ], [ 15.671997, 45.832627 ], [ 15.770874, 46.236853 ], [ 16.567383, 46.502173 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.571540 ], [ 19.824829, 49.217597 ], [ 20.418091, 49.432413 ], [ 20.890503, 49.328702 ], [ 21.610107, 49.471694 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.088013, 48.421910 ], [ 21.873779, 48.319734 ], [ 20.802612, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.327039 ], [ 19.769897, 48.202710 ], [ 19.660034, 48.264913 ], [ 19.176636, 48.111099 ], [ 18.775635, 48.081749 ], [ 18.698730, 47.879513 ], [ 17.858276, 47.757791 ], [ 17.490234, 47.868459 ], [ 16.979370, 48.122101 ], [ 16.880493, 48.469279 ], [ 17.100220, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.105469, 49.045070 ], [ 18.171387, 49.271389 ], [ 18.402100, 49.314380 ], [ 18.555908, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.571540 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.232349 ], [ 17.863770, 45.069641 ], [ 18.555908, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.368896, 44.863656 ], [ 19.116211, 44.422011 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.220581, 43.524655 ], [ 19.033813, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.561401, 42.650122 ], [ 17.677002, 43.028745 ], [ 17.297974, 43.444943 ], [ 16.913452, 43.667872 ], [ 16.457520, 44.040219 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.816916 ], [ 15.957642, 45.232349 ], [ 16.320190, 45.003651 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.232349 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.273206 ], [ 20.956421, 43.129052 ], [ 21.143188, 43.068888 ], [ 21.275024, 42.908160 ], [ 21.439819, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.682435 ], [ 21.665039, 42.439674 ], [ 21.544189, 42.322001 ], [ 21.577148, 42.244785 ], [ 21.351929, 42.208176 ], [ 20.764160, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.216314 ], [ 20.286255, 42.322001 ], [ 20.072021, 42.589489 ], [ 20.258789, 42.811522 ], [ 20.494995, 42.884015 ], [ 20.637817, 43.217187 ], [ 20.813599, 43.273206 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.502173 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.555908, 45.081279 ], [ 17.863770, 45.069641 ], [ 17.001343, 45.232349 ], [ 16.534424, 45.213004 ], [ 16.320190, 45.003651 ], [ 15.957642, 45.232349 ], [ 15.748901, 44.816916 ], [ 16.237793, 44.351350 ], [ 16.457520, 44.040219 ], [ 16.913452, 43.667872 ], [ 17.297974, 43.444943 ], [ 17.677002, 43.028745 ], [ 18.561401, 42.650122 ], [ 18.451538, 42.480200 ], [ 17.512207, 42.851806 ], [ 16.929932, 43.209180 ], [ 16.018066, 43.508721 ], [ 15.172119, 44.241264 ], [ 15.375366, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.077400 ], [ 14.260254, 45.232349 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.677979, 45.483244 ], [ 13.716431, 45.498647 ], [ 14.414062, 45.467836 ], [ 14.595337, 45.633246 ], [ 14.935913, 45.471688 ], [ 15.325928, 45.452424 ], [ 15.325928, 45.733025 ], [ 15.671997, 45.832627 ], [ 15.770874, 46.236853 ], [ 16.567383, 46.502173 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.686473 ], [ 19.802856, 42.500453 ], [ 20.072021, 42.589489 ], [ 20.286255, 42.322001 ], [ 20.522461, 42.216314 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.022339, 40.842905 ], [ 21.005859, 40.647304 ], [ 19.335938, 40.647304 ], [ 19.319458, 40.726446 ], [ 19.352417, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.718030 ], [ 19.374390, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.686473 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.594116, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.764160, 45.733025 ], [ 20.874023, 45.417732 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.476911 ], [ 22.461548, 44.703802 ], [ 22.500000, 44.680372 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.173135 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.698586 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 21.917725, 42.301690 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.322001 ], [ 21.665039, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.678397 ], [ 21.439819, 42.863886 ], [ 21.275024, 42.908160 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.129052 ], [ 20.813599, 43.273206 ], [ 20.637817, 43.217187 ], [ 20.494995, 42.884015 ], [ 20.258789, 42.811522 ], [ 20.341187, 42.900113 ], [ 19.956665, 43.104994 ], [ 19.632568, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.220581, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.422011 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.284469 ], [ 22.730713, 54.326135 ], [ 22.648315, 54.581613 ], [ 22.758179, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 49.862776 ], [ 22.939453, 47.997274 ], [ 22.708740, 47.883197 ], [ 22.642822, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.088013, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.774658, 49.027063 ], [ 22.516479, 49.475263 ], [ 22.939453, 49.862776 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.802612, 48.625647 ], [ 21.873779, 48.319734 ], [ 22.088013, 48.421910 ], [ 22.500000, 48.221013 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 21.626587, 46.995241 ], [ 21.022339, 46.316584 ], [ 20.220337, 46.126556 ], [ 19.594116, 46.172223 ], [ 18.830566, 45.909122 ], [ 18.457031, 45.759859 ], [ 17.627563, 45.951150 ], [ 16.880493, 46.381044 ], [ 16.567383, 46.502173 ], [ 16.369629, 46.841407 ], [ 16.204834, 46.852678 ], [ 16.534424, 47.494937 ], [ 16.342163, 47.713458 ], [ 16.902466, 47.713458 ], [ 16.979370, 48.122101 ], [ 17.490234, 47.868459 ], [ 17.858276, 47.757791 ], [ 18.698730, 47.879513 ], [ 18.775635, 48.081749 ], [ 19.176636, 48.111099 ], [ 19.660034, 48.264913 ], [ 19.769897, 48.202710 ], [ 20.236816, 48.327039 ], [ 20.473022, 48.563885 ], [ 20.802612, 48.625647 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.335576 ], [ 22.939453, 40.647304 ], [ 21.005859, 40.647304 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.939453, 41.335576 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.173135 ], [ 22.939453, 41.459195 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.698586 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.173135 ] ] ], [ [ [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ], [ 22.939453, 43.830564 ], [ 22.939453, 43.253205 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 47.997274 ], [ 22.939453, 43.830564 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 21.560669, 44.770137 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.764160, 45.733025 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.708740, 47.883197 ], [ 22.939453, 47.997274 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.939453, 41.459195 ], [ 22.939453, 41.335576 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.764160, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.917725, 42.301690 ], [ 22.379150, 42.322001 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.684448, 40.647304 ], [ 8.283691, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.712158, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ], [ [ [ 12.150879, 47.115000 ], [ 12.376099, 46.766206 ], [ 13.804321, 46.509735 ], [ 13.699951, 46.016039 ], [ 13.936157, 45.590978 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.590332, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.759113 ], [ 15.144653, 41.955405 ], [ 15.924683, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.891724, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.876141 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.705729 ], [ 11.189575, 42.354485 ], [ 10.513916, 42.932296 ], [ 10.200806, 43.921637 ], [ 9.700928, 44.036270 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.229457 ], [ 7.849731, 43.767127 ], [ 7.437744, 43.695680 ], [ 7.547607, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.751099, 45.026950 ], [ 7.097168, 45.332840 ], [ 6.800537, 45.710015 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.824971 ], [ 8.316650, 46.164614 ], [ 8.492432, 46.004593 ], [ 8.964844, 46.035109 ], [ 9.184570, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.365601, 46.483265 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.751153 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.115000 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.269531, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.758179, 54.857640 ], [ 22.648315, 54.581613 ], [ 22.730713, 54.326135 ], [ 22.500000, 54.326135 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.425322 ], [ 19.890747, 54.867124 ], [ 21.269531, 55.191412 ] ] ] } } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json index 3cccc3d4e..a5ee4c89e 100644 --- a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json.check.mbtiles", -"strategies": "[{\"coalesced_as_needed\":528,\"detail_reduced\":2,\"tiny_polygons\":2,\"tile_size_desired\":39242},{\"coalesced_as_needed\":217,\"tile_size_desired\":25160},{\"coalesced_as_needed\":219,\"tile_size_desired\":21223},{\"coalesced_as_needed\":227,\"tile_size_desired\":10749},{\"coalesced_as_needed\":180,\"tile_size_desired\":6591},{\"tiny_polygons\":1}]", +"strategies": "[{\"coalesced_as_needed\":528,\"detail_reduced\":2,\"tiny_polygons\":2,\"tile_size_desired\":39242},{\"coalesced_as_needed\":216,\"tile_size_desired\":25160},{\"coalesced_as_needed\":213,\"tile_size_desired\":21223},{\"coalesced_as_needed\":204,\"tile_size_desired\":10749},{\"coalesced_as_needed\":126,\"tile_size_desired\":6591},{\"tiny_polygons\":1}]", "type": "overlay", "version": "2" }, "features": [ @@ -33,15 +33,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.087891, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.186523, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.947274 ], [ 138.603516, -66.895596 ], [ 139.921875, -66.878345 ], [ 140.800781, -66.826520 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.843807 ], [ 145.502930, -66.912834 ], [ 146.206055, -67.221053 ], [ 145.986328, -67.609221 ], [ 146.645508, -67.892086 ], [ 148.842773, -68.382996 ], [ 151.479492, -68.720441 ], [ 152.490234, -68.879358 ], [ 153.632812, -68.895187 ], [ 154.291992, -68.560384 ], [ 155.170898, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.229744 ], [ 161.586914, -70.583418 ], [ 162.685547, -70.743478 ], [ 163.828125, -70.714471 ], [ 164.926758, -70.772443 ], [ 166.113281, -70.757966 ], [ 167.299805, -70.830248 ], [ 168.442383, -70.974028 ], [ 169.453125, -71.201920 ], [ 170.507812, -71.399165 ], [ 171.210938, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.387695, -74.164085 ], [ 166.113281, -74.378513 ], [ 165.629883, -74.775843 ], [ 164.970703, -75.140778 ], [ 164.223633, -75.464105 ], [ 163.828125, -75.866646 ], [ 163.564453, -76.247817 ], [ 163.476562, -76.689906 ], [ 163.476562, -77.068954 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.832589 ], [ 164.750977, -78.179588 ], [ 166.596680, -78.322757 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.163075 ], [ 160.927734, -79.734281 ], [ 160.751953, -80.201176 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.281717 ], [ 161.630859, -81.691497 ], [ 162.509766, -82.063963 ], [ 163.696289, -82.396611 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.409180, -83.825220 ], [ 172.265625, -84.043447 ], [ 173.232422, -84.414502 ], [ 176.000977, -84.160849 ], [ 178.286133, -84.474065 ], [ 180.000000, -84.714152 ], [ 180.043945, -84.722243 ], [ 180.922852, -84.138452 ], [ 182.724609, -84.452865 ], [ 183.515625, -84.223108 ], [ 183.515625, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 4.130859, -70.859087 ], [ 5.141602, -70.612614 ], [ 6.284180, -70.466207 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.900118 ], [ 8.481445, -70.155288 ], [ 9.536133, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.641769 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.975493 ], [ 14.721680, -70.035597 ], [ 15.117188, -70.407348 ], [ 15.952148, -70.035597 ], [ 17.006836, -69.915214 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.900118 ], [ 20.390625, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.928711, -70.407348 ], [ 22.587891, -70.699951 ], [ 23.686523, -70.524897 ], [ 24.829102, -70.480896 ], [ 27.114258, -70.466207 ], [ 29.135742, -70.214875 ], [ 30.014648, -69.930300 ], [ 30.981445, -69.763757 ], [ 31.992188, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.310547, -68.831802 ], [ 33.881836, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.166992, -69.240579 ], [ 37.221680, -69.162558 ], [ 37.924805, -69.519147 ], [ 38.671875, -69.778952 ], [ 39.682617, -69.534518 ], [ 40.034180, -69.115611 ], [ 40.913086, -68.926811 ], [ 41.967773, -68.608521 ], [ 44.121094, -68.269387 ], [ 46.494141, -67.609221 ], [ 47.460938, -67.726108 ], [ 48.999023, -67.084550 ], [ 49.921875, -67.118748 ], [ 50.756836, -66.878345 ], [ 50.932617, -66.530768 ], [ 51.811523, -66.249163 ], [ 52.602539, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ], [ 56.337891, -65.982270 ], [ 57.172852, -66.249163 ], [ 57.260742, -66.687784 ], [ 58.139648, -67.016009 ], [ 58.754883, -67.289015 ], [ 59.941406, -67.407487 ], [ 60.600586, -67.676085 ], [ 61.435547, -67.958148 ], [ 62.402344, -68.007571 ], [ 63.193359, -67.809245 ], [ 64.072266, -67.407487 ], [ 64.995117, -67.625954 ], [ 66.928711, -67.858985 ], [ 67.895508, -67.941650 ], [ 68.906250, -67.941650 ], [ 69.697266, -68.974164 ], [ 69.653320, -69.224997 ], [ 69.565430, -69.672358 ], [ 68.598633, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.699951 ], [ 69.082031, -70.670881 ], [ 68.950195, -71.074056 ], [ 68.422852, -71.441171 ], [ 67.939453, -71.856229 ], [ 68.730469, -72.168351 ], [ 69.873047, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.586914, -71.691293 ], [ 71.894531, -71.328950 ], [ 72.465820, -71.016960 ], [ 73.081055, -70.714471 ], [ 73.344727, -70.363091 ], [ 73.872070, -69.869892 ], [ 74.487305, -69.778952 ], [ 75.629883, -69.733334 ], [ 76.640625, -69.626510 ], [ 77.651367, -69.457554 ], [ 78.134766, -69.068563 ], [ 78.442383, -68.704486 ], [ 79.101562, -68.334376 ], [ 80.947266, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.373698 ], [ 82.792969, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.152898 ], [ 87.495117, -66.878345 ], [ 87.978516, -66.213739 ], [ 88.374023, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.692383, -67.152898 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.118748 ], [ 92.592773, -67.187000 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.118748 ], [ 95.009766, -67.169955 ], [ 95.800781, -67.390599 ], [ 96.679688, -67.255058 ], [ 97.778320, -67.255058 ], [ 98.701172, -67.118748 ], [ 99.711914, -67.255058 ], [ 100.371094, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.601562, -66.302205 ], [ 102.832031, -65.567550 ], [ 103.491211, -65.694476 ], [ 104.238281, -65.982270 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.258789, -66.705169 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.916992, -66.390361 ], [ 115.620117, -66.705169 ], [ 116.718750, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.838867, -67.272043 ], [ 120.893555, -67.187000 ], [ 122.299805, -66.565747 ], [ 123.222656, -66.478208 ], [ 124.145508, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.123047, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.726562, -66.583217 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 134.780273, -66.213739 ], [ 135.043945, -65.712557 ], [ 135.087891, -65.311829 ] ] ], [ [ [ 68.950195, -48.632909 ], [ 69.565430, -48.951366 ], [ 70.532227, -49.066668 ], [ 70.576172, -49.267805 ], [ 70.268555, -49.724479 ], [ 68.730469, -49.781264 ], [ 68.730469, -49.239121 ], [ 68.950195, -48.632909 ] ] ], [ [ [ 172.792969, -40.480381 ], [ 173.232422, -41.343825 ], [ 173.979492, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.771312 ], [ 173.232422, -42.972502 ], [ 172.705078, -43.389082 ], [ 173.100586, -43.866218 ], [ 172.309570, -43.866218 ], [ 171.474609, -44.245199 ], [ 171.166992, -44.902578 ], [ 170.639648, -45.920587 ], [ 169.321289, -46.649436 ], [ 168.398438, -46.619261 ], [ 167.783203, -46.286224 ], [ 166.684570, -46.225453 ], [ 166.508789, -45.859412 ], [ 167.036133, -45.120053 ], [ 168.310547, -44.119142 ], [ 168.969727, -43.929550 ], [ 170.507812, -43.036776 ], [ 171.123047, -42.520700 ], [ 171.562500, -41.771312 ], [ 171.958008, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ] ] ], [ [ [ 144.755859, -40.713956 ], [ 145.415039, -40.780541 ], [ 146.381836, -41.145570 ], [ 147.700195, -40.813809 ], [ 148.271484, -40.880295 ], [ 148.359375, -42.065607 ], [ 148.007812, -42.423457 ], [ 147.919922, -43.197167 ], [ 147.568359, -42.940339 ], [ 146.865234, -43.644026 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.178654 ], [ 144.755859, -40.713956 ] ] ], [ [ [ 47.153320, 3.513421 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.064982 ], [ 44.077148, 1.054628 ], [ 43.154297, 0.307616 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.649414, -2.504085 ], [ 40.253906, -2.591889 ], [ 40.122070, -3.294082 ], [ 39.814453, -3.688855 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.696879 ], [ 38.759766, -5.922045 ], [ 38.803711, -6.489983 ], [ 39.462891, -6.839170 ], [ 39.462891, -7.100893 ], [ 39.199219, -7.710992 ], [ 39.243164, -8.015716 ], [ 39.199219, -8.494105 ], [ 39.550781, -9.102097 ], [ 39.946289, -10.098670 ], [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ], [ 40.429688, -11.781325 ], [ 40.561523, -12.640338 ], [ 40.605469, -14.221789 ], [ 40.781250, -14.689881 ], [ 40.078125, -16.088042 ], [ 39.462891, -16.720385 ], [ 37.397461, -17.602139 ], [ 36.298828, -18.646245 ], [ 35.903320, -18.854310 ], [ 35.200195, -19.559790 ], [ 34.804688, -19.766704 ], [ 34.716797, -20.509355 ], [ 35.156250, -21.248422 ], [ 35.375977, -21.861499 ], [ 35.375977, -22.146708 ], [ 35.551758, -22.105999 ], [ 35.551758, -23.079732 ], [ 35.375977, -23.523700 ], [ 35.595703, -23.725012 ], [ 35.463867, -24.126702 ], [ 35.024414, -24.487149 ], [ 33.002930, -25.363882 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.155438 ], [ 32.915039, -26.234302 ], [ 32.827148, -26.745610 ], [ 32.563477, -27.488781 ], [ 32.475586, -28.304381 ], [ 32.211914, -28.767659 ], [ 31.333008, -29.420460 ], [ 30.893555, -29.916852 ], [ 30.629883, -30.410782 ], [ 30.058594, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.465820, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.927734, -33.651208 ], [ 25.795898, -33.943360 ], [ 25.180664, -33.797409 ], [ 24.697266, -33.979809 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.906896 ], [ 22.587891, -33.870416 ], [ 21.533203, -34.270836 ], [ 20.698242, -34.415973 ], [ 20.083008, -34.813803 ], [ 19.599609, -34.813803 ], [ 19.204102, -34.452218 ], [ 18.852539, -34.452218 ], [ 18.413086, -34.016242 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.870416 ], [ 18.237305, -33.284620 ], [ 17.929688, -32.620870 ], [ 18.237305, -32.435613 ], [ 18.237305, -31.653381 ], [ 17.578125, -30.713504 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.839076 ], [ 15.205078, -27.098254 ], [ 14.414062, -23.845650 ], [ 14.370117, -22.674847 ], [ 14.238281, -22.105999 ], [ 13.886719, -21.698265 ], [ 13.359375, -20.879343 ], [ 12.612305, -19.062118 ], [ 11.777344, -18.062312 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.744141, -13.154376 ], [ 13.623047, -12.039321 ], [ 13.754883, -11.307708 ], [ 13.666992, -10.746969 ], [ 13.403320, -10.358151 ], [ 12.875977, -9.188870 ], [ 12.919922, -8.971897 ], [ 13.227539, -8.581021 ], [ 12.744141, -6.926427 ], [ 12.216797, -6.315299 ], [ 12.304688, -6.096860 ], [ 11.909180, -5.047171 ], [ 11.074219, -3.995781 ], [ 10.063477, -2.986927 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.098565 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.142502 ], [ 9.667969, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.536133, 3.513421 ], [ 47.153320, 3.513421 ] ] ], [ [ [ 173.012695, -34.452218 ], [ 173.540039, -34.994004 ], [ 174.331055, -35.281501 ], [ 174.594727, -36.173357 ], [ 175.341797, -37.195331 ], [ 175.341797, -36.527295 ], [ 175.825195, -36.809285 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.892196 ], [ 177.451172, -37.961523 ], [ 178.022461, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.286133, -38.582526 ], [ 177.978516, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.055664, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.253906, -41.705729 ], [ 175.078125, -41.442726 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.902344, -39.909736 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.164141 ], [ 174.594727, -38.788345 ], [ 174.726562, -38.030786 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.331055, -36.527295 ], [ 173.847656, -36.137875 ], [ 173.056641, -35.245619 ], [ 172.617188, -34.524661 ], [ 173.012695, -34.452218 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.178402 ], [ 142.866211, -11.781325 ], [ 143.129883, -11.910354 ], [ 143.173828, -12.340002 ], [ 143.525391, -12.854649 ], [ 143.613281, -13.410994 ], [ 143.569336, -13.752725 ], [ 143.920898, -14.562318 ], [ 144.580078, -14.179186 ], [ 144.887695, -14.604847 ], [ 145.371094, -14.987240 ], [ 145.283203, -15.411319 ], [ 145.502930, -16.299051 ], [ 145.634766, -16.804541 ], [ 145.898438, -16.888660 ], [ 146.162109, -17.769612 ], [ 146.074219, -18.271086 ], [ 146.381836, -18.979026 ], [ 147.480469, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.350076 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.732422, -22.390714 ], [ 150.908203, -23.483401 ], [ 152.094727, -24.447150 ], [ 152.841797, -25.284438 ], [ 153.149414, -26.076521 ], [ 153.149414, -26.627818 ], [ 153.105469, -27.254630 ], [ 153.588867, -28.110749 ], [ 153.500977, -28.998532 ], [ 153.061523, -30.334954 ], [ 153.105469, -30.939924 ], [ 152.885742, -31.653381 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.347656, -33.833920 ], [ 150.996094, -34.307144 ], [ 150.732422, -35.173808 ], [ 150.336914, -35.675147 ], [ 150.073242, -36.421282 ], [ 149.941406, -37.125286 ], [ 149.985352, -37.439974 ], [ 149.414062, -37.788081 ], [ 148.315430, -37.822802 ], [ 147.392578, -38.203655 ], [ 146.337891, -39.027719 ], [ 145.502930, -38.582526 ], [ 144.887695, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.492188, -38.099983 ], [ 143.613281, -38.822591 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -38.030786 ], [ 140.009766, -37.405074 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.086914, -35.746512 ], [ 138.120117, -35.603719 ], [ 138.471680, -35.137879 ], [ 138.208008, -34.379713 ], [ 137.724609, -35.065973 ], [ 136.845703, -35.245619 ], [ 137.373047, -34.705493 ], [ 137.504883, -34.125448 ], [ 137.900391, -33.651208 ], [ 137.812500, -32.916485 ], [ 136.977539, -33.760882 ], [ 136.362305, -34.089061 ], [ 136.010742, -34.885931 ], [ 135.219727, -34.488448 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.296875, -32.620870 ], [ 132.978516, -32.026706 ], [ 132.275391, -31.989442 ], [ 131.308594, -31.503629 ], [ 129.550781, -31.578535 ], [ 127.089844, -32.287133 ], [ 126.166992, -32.212801 ], [ 125.068359, -32.731841 ], [ 124.233398, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.662109, -33.906896 ], [ 122.827148, -33.906896 ], [ 122.167969, -34.016242 ], [ 121.289062, -33.833920 ], [ 119.882812, -33.979809 ], [ 119.311523, -34.524661 ], [ 119.003906, -34.452218 ], [ 118.037109, -35.065973 ], [ 116.630859, -35.029996 ], [ 115.576172, -34.379713 ], [ 115.048828, -34.198173 ], [ 115.048828, -33.614619 ], [ 115.532227, -33.504759 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.916485 ], [ 115.795898, -32.212801 ], [ 115.708008, -31.615966 ], [ 115.180664, -30.600094 ], [ 115.004883, -30.031055 ], [ 115.048828, -29.458731 ], [ 114.653320, -28.806174 ], [ 114.609375, -28.536275 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.549223 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.549223 ], [ 113.422852, -25.641526 ], [ 113.950195, -25.918526 ], [ 114.213867, -26.313113 ], [ 114.213867, -25.799891 ], [ 113.730469, -25.005973 ], [ 113.642578, -24.686952 ], [ 113.378906, -24.367114 ], [ 113.510742, -23.805450 ], [ 113.686523, -23.563987 ], [ 113.862305, -23.079732 ], [ 113.730469, -22.471955 ], [ 114.169922, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.653320, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.084500 ], [ 116.718750, -20.715015 ], [ 117.158203, -20.632784 ], [ 117.421875, -20.756114 ], [ 118.212891, -20.385825 ], [ 118.828125, -20.262197 ], [ 119.003906, -20.055931 ], [ 119.267578, -19.973349 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.683970 ], [ 121.420898, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.255859, -18.187607 ], [ 122.299805, -17.266728 ], [ 123.002930, -16.425548 ], [ 123.442383, -17.266728 ], [ 123.881836, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.837891, -16.130262 ], [ 124.277344, -16.341226 ], [ 124.365234, -15.580711 ], [ 124.936523, -15.072124 ], [ 125.156250, -14.689881 ], [ 125.683594, -14.519780 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.349548 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.838080 ], [ 127.792969, -14.264383 ], [ 128.364258, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.638672, -14.987240 ], [ 129.418945, -14.434680 ], [ 129.902344, -13.624633 ], [ 130.341797, -13.368243 ], [ 130.166016, -13.111580 ], [ 130.605469, -12.554564 ], [ 131.220703, -12.168226 ], [ 131.748047, -12.297068 ], [ 132.583008, -12.125264 ], [ 132.539062, -11.609193 ], [ 131.835938, -11.264612 ], [ 132.363281, -11.135287 ], [ 133.022461, -11.393879 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.692383, -11.953349 ], [ 135.307617, -12.254128 ], [ 135.878906, -11.953349 ], [ 136.274414, -12.039321 ], [ 136.494141, -11.867351 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.897489 ], [ 136.318359, -13.282719 ], [ 135.966797, -13.325485 ], [ 136.098633, -13.710035 ], [ 135.439453, -14.732386 ], [ 135.483398, -14.987240 ], [ 136.318359, -15.538376 ], [ 137.065430, -15.876809 ], [ 138.295898, -16.804541 ], [ 138.603516, -16.804541 ], [ 139.130859, -17.056785 ], [ 139.262695, -17.392579 ], [ 140.229492, -17.727759 ], [ 140.888672, -17.350638 ], [ 141.284180, -16.383391 ], [ 141.416016, -15.834536 ], [ 141.723633, -15.029686 ], [ 141.547852, -14.562318 ], [ 141.635742, -14.264383 ], [ 141.503906, -13.710035 ], [ 141.635742, -12.940322 ], [ 141.855469, -12.726084 ], [ 141.679688, -12.425848 ], [ 142.119141, -11.350797 ], [ 142.163086, -11.049038 ], [ 142.514648, -10.660608 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.989258, -0.790990 ], [ 134.165039, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.439453, -3.381824 ], [ 136.274414, -2.328460 ], [ 137.460938, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.921875, -2.416276 ], [ 141.020508, -2.591889 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.810547, -4.872048 ], [ 145.986328, -5.484768 ], [ 147.656250, -6.096860 ], [ 147.875977, -6.620957 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.406048 ], [ 148.095703, -8.059230 ], [ 148.754883, -9.102097 ], [ 149.326172, -9.058702 ], [ 149.282227, -9.535749 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.882275 ], [ 150.820312, -10.314919 ], [ 150.688477, -10.574222 ], [ 150.029297, -10.660608 ], [ 149.765625, -10.401378 ], [ 147.919922, -10.141932 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.755859, -7.623887 ], [ 143.876953, -7.928675 ], [ 143.305664, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.646484, -9.318990 ], [ 142.075195, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.320212 ], [ 139.130859, -8.102739 ], [ 138.867188, -8.363693 ], [ 137.636719, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.691406, -7.318882 ], [ 138.427734, -6.227934 ], [ 137.944336, -5.397273 ], [ 136.010742, -4.565474 ], [ 135.175781, -4.477856 ], [ 133.681641, -3.557283 ], [ 133.374023, -4.039618 ], [ 132.978516, -4.127285 ], [ 132.758789, -3.732708 ], [ 132.758789, -3.294082 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.625758 ], [ 130.957031, -1.450040 ], [ 130.517578, -0.922812 ], [ 131.879883, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 49.174805, -12.039321 ], [ 49.790039, -12.897489 ], [ 50.053711, -13.539201 ], [ 50.229492, -14.774883 ], [ 50.493164, -15.241790 ], [ 50.361328, -15.707663 ], [ 50.185547, -16.003576 ], [ 49.877930, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.877930, -16.467695 ], [ 49.790039, -16.888660 ], [ 49.482422, -17.098792 ], [ 49.438477, -17.936929 ], [ 47.944336, -22.390714 ], [ 47.548828, -23.765237 ], [ 47.109375, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.601902 ], [ 44.033203, -25.005973 ], [ 43.769531, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.796439 ], [ 43.242188, -22.065278 ], [ 43.417969, -21.330315 ], [ 43.901367, -21.166484 ], [ 43.901367, -20.838278 ], [ 44.384766, -20.055931 ], [ 44.472656, -19.435514 ], [ 44.252930, -18.979026 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.956055, -16.172473 ], [ 45.878906, -15.792254 ], [ 46.318359, -15.792254 ], [ 46.889648, -15.199386 ], [ 47.724609, -14.604847 ], [ 47.988281, -14.093957 ], [ 47.856445, -13.667338 ], [ 48.295898, -13.795406 ], [ 48.867188, -13.111580 ], [ 48.867188, -12.468760 ], [ 49.174805, -12.039321 ] ] ], [ [ [ 117.509766, 3.513421 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.922812 ], [ 117.817383, 0.790990 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.504085 ], [ 116.147461, -3.995781 ], [ 116.015625, -3.645000 ], [ 114.873047, -4.127285 ], [ 114.477539, -3.513421 ], [ 113.774414, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.030812 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.581830 ], [ 109.555664, -1.318243 ], [ 109.072266, -0.439449 ], [ 109.028320, 0.000000 ], [ 108.940430, 0.395505 ], [ 109.072266, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.357422, 2.679687 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.378906, 3.513421 ], [ 117.509766, 3.513421 ] ] ], [ [ [ 99.228516, 3.513421 ], [ 99.711914, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.064982 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.571280 ], [ 103.842773, 0.087891 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.801461 ], [ 104.897461, -2.328460 ], [ 105.644531, -2.416276 ], [ 106.127930, -3.074695 ], [ 105.864258, -4.302591 ], [ 105.820312, -5.834616 ], [ 104.721680, -5.878332 ], [ 103.886719, -5.047171 ], [ 102.568359, -4.214943 ], [ 102.172852, -3.601142 ], [ 101.381836, -2.811371 ], [ 100.898438, -2.064982 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.294082 ], [ 96.899414, 3.513421 ], [ 99.228516, 3.513421 ] ] ], [ [ [ 125.068359, 1.625758 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.706055, 0.219726 ], [ 122.739258, 0.439449 ], [ 121.069336, 0.395505 ], [ 120.190430, 0.219726 ], [ 120.146484, 0.000000 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.354492, -0.615223 ], [ 123.266602, -1.098565 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.537901 ], [ 121.508789, -1.889306 ], [ 122.475586, -3.206333 ], [ 122.255859, -3.513421 ], [ 123.178711, -4.696879 ], [ 123.178711, -5.353521 ], [ 122.651367, -5.615986 ], [ 122.255859, -5.266008 ], [ 122.739258, -4.477856 ], [ 121.728516, -4.872048 ], [ 121.508789, -4.565474 ], [ 121.640625, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.981445, -2.635789 ], [ 120.322266, -2.943041 ], [ 120.410156, -5.528511 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.397273 ], [ 119.663086, -4.477856 ], [ 119.487305, -3.513421 ], [ 119.091797, -3.469557 ], [ 118.784180, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.311523, -1.362176 ], [ 119.794922, 0.000000 ], [ 120.058594, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.684570, 1.010690 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.068359, 1.625758 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.270508, -5.965754 ], [ 108.061523, -6.358975 ], [ 108.500977, -6.402648 ], [ 108.632812, -6.795535 ], [ 110.522461, -6.882800 ], [ 110.742188, -6.446318 ], [ 112.631836, -6.926427 ], [ 112.983398, -7.580328 ], [ 114.477539, -7.798079 ], [ 115.708008, -8.363693 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.363693 ], [ 112.543945, -8.363693 ], [ 111.533203, -8.320212 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.754537 ], [ 108.676758, -7.623887 ], [ 108.281250, -7.754537 ], [ 106.435547, -7.362467 ], [ 106.303711, -6.926427 ], [ 105.380859, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 103.403320, 3.513421 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.504085 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.274309 ], [ 103.535156, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.293945, 3.250209 ], [ 101.074219, 3.513421 ], [ 103.403320, 3.513421 ] ] ], [ [ [ 152.138672, -4.171115 ], [ 152.358398, -4.302591 ], [ 152.314453, -4.872048 ], [ 151.962891, -5.484768 ], [ 151.479492, -5.572250 ], [ 151.303711, -5.834616 ], [ 150.249023, -6.315299 ], [ 149.721680, -6.315299 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.282227, -5.572250 ], [ 149.853516, -5.528511 ], [ 149.985352, -5.047171 ], [ 150.161133, -5.003394 ], [ 150.249023, -5.528511 ], [ 150.820312, -5.441022 ], [ 151.083984, -5.134715 ], [ 151.655273, -4.740675 ], [ 151.523438, -4.171115 ], [ 152.138672, -4.171115 ] ] ], [ [ [ 126.958008, -8.276727 ], [ 127.353516, -8.407168 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.405710 ], [ 124.453125, -10.141932 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.980469, -8.885072 ], [ 125.068359, -8.667918 ], [ 125.947266, -8.450639 ], [ 126.650391, -8.407168 ], [ 126.958008, -8.276727 ] ] ], [ [ [ 164.047852, -20.097206 ], [ 164.443359, -20.138470 ], [ 165.014648, -20.468189 ], [ 167.124023, -22.146708 ], [ 166.728516, -22.390714 ], [ 165.454102, -21.698265 ], [ 164.838867, -21.166484 ], [ 164.179688, -20.427013 ], [ 164.047852, -20.097206 ] ] ], [ [ [ 127.924805, 2.196727 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.351560 ], [ 128.012695, 0.000000 ], [ 127.968750, -0.263671 ], [ 128.364258, -0.790990 ], [ 128.100586, -0.922812 ], [ 127.705078, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.617188, 1.801461 ], [ 127.924805, 2.196727 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.074695 ], [ 130.825195, -3.864255 ], [ 129.990234, -3.469557 ], [ 129.155273, -3.381824 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 122.915039, -8.102739 ], [ 122.739258, -8.667918 ], [ 121.245117, -8.928487 ], [ 119.926758, -8.798225 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.233237 ], [ 121.333008, -8.537565 ], [ 121.992188, -8.450639 ], [ 122.915039, -8.102739 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.256836, -8.363693 ], [ 118.872070, -8.276727 ], [ 119.135742, -8.711359 ], [ 117.290039, -9.058702 ], [ 116.762695, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.641602, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 178.374023, -17.350638 ], [ 178.725586, -17.644022 ], [ 178.549805, -18.145852 ], [ 177.934570, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.727759 ], [ 177.670898, -17.392579 ], [ 178.110352, -17.518344 ], [ 178.374023, -17.350638 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 152.226562, -3.250209 ], [ 153.017578, -3.995781 ], [ 153.149414, -4.521666 ], [ 152.841797, -4.784469 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.391602, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.952148, -2.504085 ] ] ], [ [ [ 180.219727, -16.003576 ], [ 180.087891, -16.509833 ], [ 180.000000, -16.551962 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.428711, -16.383391 ], [ 180.000000, -16.088042 ], [ 180.219727, -16.003576 ] ] ], [ [ [ 167.211914, -15.876809 ], [ 167.827148, -16.467695 ], [ 167.519531, -16.594081 ], [ 167.167969, -16.172473 ], [ 167.211914, -15.876809 ] ] ], [ [ [ 154.643555, -5.047171 ], [ 154.775391, -5.353521 ], [ 155.083008, -5.572250 ], [ 155.566406, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.839170 ], [ 155.610352, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.922045 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.047171 ] ] ], [ [ [ 166.640625, -14.647368 ], [ 167.124023, -14.944785 ], [ 167.255859, -15.749963 ], [ 166.992188, -15.623037 ], [ 166.816406, -15.665354 ], [ 166.640625, -15.411319 ], [ 166.640625, -14.647368 ] ] ], [ [ [ 119.882812, -9.362353 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.717773, -10.228437 ], [ 120.278320, -10.271681 ], [ 118.959961, -9.579084 ], [ 119.882812, -9.362353 ] ] ], [ [ [ 161.323242, -10.185187 ], [ 162.114258, -10.487812 ], [ 162.421875, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.323242, -10.185187 ] ] ], [ [ [ 127.001953, -3.118576 ], [ 127.265625, -3.469557 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.991211, -3.162456 ], [ 127.001953, -3.118576 ] ] ], [ [ [ 134.516602, -5.441022 ], [ 134.736328, -5.747174 ], [ 134.736328, -6.227934 ], [ 134.208984, -6.882800 ], [ 134.121094, -6.140555 ], [ 134.516602, -5.441022 ] ] ], [ [ [ 158.378906, -7.318882 ], [ 159.653320, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 158.598633, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.378906, -7.318882 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.405710 ], [ 160.708008, -9.622414 ], [ 160.839844, -9.882275 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.795678 ], [ 159.653320, -9.622414 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.927734, -8.320212 ], [ 161.279297, -9.102097 ], [ 161.674805, -9.622414 ], [ 161.542969, -9.795678 ], [ 160.795898, -8.928487 ], [ 160.576172, -8.320212 ], [ 160.927734, -8.320212 ] ] ], [ [ [ 156.533203, -6.620957 ], [ 157.148438, -7.013668 ], [ 157.543945, -7.362467 ], [ 157.324219, -7.406048 ], [ 156.884766, -7.188101 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.620957 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.087891, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.186523, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.947274 ], [ 138.603516, -66.895596 ], [ 139.921875, -66.878345 ], [ 140.800781, -66.826520 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.843807 ], [ 145.502930, -66.912834 ], [ 146.206055, -67.221053 ], [ 145.986328, -67.609221 ], [ 146.645508, -67.892086 ], [ 148.842773, -68.382996 ], [ 151.479492, -68.720441 ], [ 152.490234, -68.879358 ], [ 153.632812, -68.895187 ], [ 154.291992, -68.560384 ], [ 155.170898, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.229744 ], [ 161.586914, -70.583418 ], [ 162.685547, -70.743478 ], [ 163.828125, -70.714471 ], [ 164.926758, -70.772443 ], [ 166.113281, -70.757966 ], [ 167.299805, -70.830248 ], [ 168.442383, -70.974028 ], [ 169.453125, -71.201920 ], [ 170.507812, -71.399165 ], [ 171.210938, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.387695, -74.164085 ], [ 166.113281, -74.378513 ], [ 165.629883, -74.775843 ], [ 164.970703, -75.140778 ], [ 164.223633, -75.464105 ], [ 163.828125, -75.866646 ], [ 163.564453, -76.247817 ], [ 163.476562, -76.689906 ], [ 163.476562, -77.068954 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.832589 ], [ 164.750977, -78.179588 ], [ 166.596680, -78.322757 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.163075 ], [ 160.927734, -79.734281 ], [ 160.751953, -80.201176 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.281717 ], [ 161.630859, -81.691497 ], [ 162.509766, -82.063963 ], [ 163.696289, -82.396611 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.409180, -83.825220 ], [ 172.265625, -84.043447 ], [ 173.232422, -84.414502 ], [ 176.000977, -84.160849 ], [ 178.286133, -84.474065 ], [ 180.000000, -84.714152 ], [ 180.043945, -84.722243 ], [ 180.922852, -84.138452 ], [ 182.724609, -84.452865 ], [ 183.515625, -84.223108 ], [ 183.515625, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 4.130859, -70.859087 ], [ 5.141602, -70.612614 ], [ 6.284180, -70.466207 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.900118 ], [ 8.481445, -70.155288 ], [ 9.536133, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.641769 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.975493 ], [ 14.721680, -70.035597 ], [ 15.117188, -70.407348 ], [ 15.952148, -70.035597 ], [ 17.006836, -69.915214 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.900118 ], [ 20.390625, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.928711, -70.407348 ], [ 22.587891, -70.699951 ], [ 23.686523, -70.524897 ], [ 24.829102, -70.480896 ], [ 27.114258, -70.466207 ], [ 29.135742, -70.214875 ], [ 30.014648, -69.930300 ], [ 30.981445, -69.763757 ], [ 31.992188, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.310547, -68.831802 ], [ 33.881836, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.166992, -69.240579 ], [ 37.221680, -69.162558 ], [ 37.924805, -69.519147 ], [ 38.671875, -69.778952 ], [ 39.682617, -69.534518 ], [ 40.034180, -69.115611 ], [ 40.913086, -68.926811 ], [ 41.967773, -68.608521 ], [ 44.121094, -68.269387 ], [ 46.494141, -67.609221 ], [ 47.460938, -67.726108 ], [ 48.999023, -67.084550 ], [ 49.921875, -67.118748 ], [ 50.756836, -66.878345 ], [ 50.932617, -66.530768 ], [ 51.811523, -66.249163 ], [ 52.602539, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ], [ 56.337891, -65.982270 ], [ 57.172852, -66.249163 ], [ 57.260742, -66.687784 ], [ 58.139648, -67.016009 ], [ 58.754883, -67.289015 ], [ 59.941406, -67.407487 ], [ 60.600586, -67.676085 ], [ 61.435547, -67.958148 ], [ 62.402344, -68.007571 ], [ 63.193359, -67.809245 ], [ 64.072266, -67.407487 ], [ 64.995117, -67.625954 ], [ 66.928711, -67.858985 ], [ 67.895508, -67.941650 ], [ 68.906250, -67.941650 ], [ 69.697266, -68.974164 ], [ 69.653320, -69.224997 ], [ 69.565430, -69.672358 ], [ 68.598633, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.699951 ], [ 69.082031, -70.670881 ], [ 68.950195, -71.074056 ], [ 68.422852, -71.441171 ], [ 67.939453, -71.856229 ], [ 68.730469, -72.168351 ], [ 69.873047, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.586914, -71.691293 ], [ 71.894531, -71.328950 ], [ 72.465820, -71.016960 ], [ 73.081055, -70.714471 ], [ 73.344727, -70.363091 ], [ 73.872070, -69.869892 ], [ 74.487305, -69.778952 ], [ 75.629883, -69.733334 ], [ 76.640625, -69.626510 ], [ 77.651367, -69.457554 ], [ 78.134766, -69.068563 ], [ 78.442383, -68.704486 ], [ 79.101562, -68.334376 ], [ 80.947266, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.373698 ], [ 82.792969, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.152898 ], [ 87.495117, -66.878345 ], [ 87.978516, -66.213739 ], [ 88.374023, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.692383, -67.152898 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.118748 ], [ 92.592773, -67.187000 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.118748 ], [ 95.009766, -67.169955 ], [ 95.800781, -67.390599 ], [ 96.679688, -67.255058 ], [ 97.778320, -67.255058 ], [ 98.701172, -67.118748 ], [ 99.711914, -67.255058 ], [ 100.371094, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.601562, -66.302205 ], [ 102.832031, -65.567550 ], [ 103.491211, -65.694476 ], [ 104.238281, -65.982270 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.258789, -66.705169 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.916992, -66.390361 ], [ 115.620117, -66.705169 ], [ 116.718750, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.838867, -67.272043 ], [ 120.893555, -67.187000 ], [ 122.299805, -66.565747 ], [ 123.222656, -66.478208 ], [ 124.145508, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.123047, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.726562, -66.583217 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 134.780273, -66.213739 ], [ 135.043945, -65.712557 ], [ 135.087891, -65.311829 ] ] ], [ [ [ 47.153320, 3.513421 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.064982 ], [ 44.077148, 1.054628 ], [ 43.154297, 0.307616 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.649414, -2.504085 ], [ 40.253906, -2.591889 ], [ 40.122070, -3.294082 ], [ 39.814453, -3.688855 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.696879 ], [ 38.759766, -5.922045 ], [ 38.803711, -6.489983 ], [ 39.462891, -6.839170 ], [ 39.462891, -7.100893 ], [ 39.199219, -7.710992 ], [ 39.243164, -8.015716 ], [ 39.199219, -8.494105 ], [ 39.550781, -9.102097 ], [ 39.946289, -10.098670 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.919618 ], [ 38.408203, -11.307708 ], [ 37.836914, -11.264612 ], [ 37.485352, -11.566144 ], [ 36.782227, -11.609193 ], [ 36.518555, -11.738302 ], [ 35.332031, -11.436955 ], [ 34.541016, -11.523088 ], [ 34.277344, -10.141932 ], [ 33.750000, -9.405710 ], [ 32.739258, -9.232249 ], [ 32.211914, -8.928487 ], [ 31.552734, -8.754795 ], [ 30.761719, -8.320212 ], [ 30.366211, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.537565 ], [ 28.432617, -9.145486 ], [ 28.696289, -9.622414 ], [ 28.388672, -11.781325 ], [ 29.355469, -12.382928 ], [ 29.619141, -12.168226 ], [ 29.707031, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.168945, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.609193 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.350797 ], [ 24.785156, -11.221510 ], [ 24.301758, -11.264612 ], [ 24.257812, -10.962764 ], [ 23.906250, -10.919618 ], [ 24.038086, -11.221510 ], [ 23.906250, -11.738302 ], [ 24.082031, -12.211180 ], [ 23.950195, -12.554564 ], [ 24.038086, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.088042 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 24.038086, -17.308688 ], [ 24.697266, -17.350638 ], [ 25.092773, -17.560247 ], [ 25.092773, -17.644022 ], [ 24.521484, -17.895114 ], [ 24.213867, -17.895114 ], [ 23.598633, -18.271086 ], [ 23.203125, -17.853290 ], [ 21.665039, -18.229351 ], [ 20.917969, -18.271086 ], [ 20.874023, -21.820708 ], [ 19.907227, -21.861499 ], [ 19.907227, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.402344, -28.767659 ], [ 17.226562, -28.343065 ], [ 16.831055, -28.071980 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.839076 ], [ 15.205078, -27.098254 ], [ 14.985352, -26.115986 ], [ 14.765625, -25.403585 ], [ 14.414062, -23.845650 ], [ 14.370117, -22.674847 ], [ 14.238281, -22.105999 ], [ 13.886719, -21.698265 ], [ 13.359375, -20.879343 ], [ 12.612305, -19.062118 ], [ 11.777344, -18.062312 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.744141, -13.154376 ], [ 13.623047, -12.039321 ], [ 13.754883, -11.307708 ], [ 13.666992, -10.746969 ], [ 13.403320, -10.358151 ], [ 12.875977, -9.188870 ], [ 12.919922, -8.971897 ], [ 13.227539, -8.581021 ], [ 12.744141, -6.926427 ], [ 12.216797, -6.315299 ], [ 12.304688, -6.096860 ], [ 11.909180, -5.047171 ], [ 11.074219, -3.995781 ], [ 10.063477, -2.986927 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.098565 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.142502 ], [ 9.667969, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.536133, 3.513421 ], [ 47.153320, 3.513421 ] ] ], [ [ [ 115.620117, 3.513421 ], [ 115.532227, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.609375, 1.450040 ], [ 113.818359, 1.230374 ], [ 112.851562, 1.493971 ], [ 112.368164, 1.406109 ], [ 111.796875, 0.922812 ], [ 111.181641, 0.966751 ], [ 110.522461, 0.790990 ], [ 109.819336, 1.318243 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.357422, 2.679687 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.378906, 3.513421 ], [ 115.620117, 3.513421 ] ] ], [ [ [ 103.403320, 3.513421 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.504085 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.274309 ], [ 103.535156, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.293945, 3.250209 ], [ 101.074219, 3.513421 ], [ 103.403320, 3.513421 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 68.950195, -48.632909 ], [ 69.565430, -48.951366 ], [ 70.532227, -49.066668 ], [ 70.576172, -49.267805 ], [ 70.268555, -49.724479 ], [ 68.730469, -49.781264 ], [ 68.730469, -49.239121 ], [ 68.950195, -48.632909 ] ] ], [ [ [ 172.792969, -40.480381 ], [ 173.232422, -41.343825 ], [ 173.979492, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.771312 ], [ 173.232422, -42.972502 ], [ 172.705078, -43.389082 ], [ 173.100586, -43.866218 ], [ 172.309570, -43.866218 ], [ 171.474609, -44.245199 ], [ 171.166992, -44.902578 ], [ 170.639648, -45.920587 ], [ 169.321289, -46.649436 ], [ 168.398438, -46.619261 ], [ 167.783203, -46.286224 ], [ 166.684570, -46.225453 ], [ 166.508789, -45.859412 ], [ 167.036133, -45.120053 ], [ 168.310547, -44.119142 ], [ 168.969727, -43.929550 ], [ 170.507812, -43.036776 ], [ 171.123047, -42.520700 ], [ 171.562500, -41.771312 ], [ 171.958008, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ] ] ], [ [ [ 144.755859, -40.713956 ], [ 145.415039, -40.780541 ], [ 146.381836, -41.145570 ], [ 147.700195, -40.813809 ], [ 148.271484, -40.880295 ], [ 148.359375, -42.065607 ], [ 148.007812, -42.423457 ], [ 147.919922, -43.197167 ], [ 147.568359, -42.940339 ], [ 146.865234, -43.644026 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.178654 ], [ 144.755859, -40.713956 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.178402 ], [ 142.866211, -11.781325 ], [ 143.129883, -11.910354 ], [ 143.173828, -12.340002 ], [ 143.525391, -12.854649 ], [ 143.613281, -13.410994 ], [ 143.569336, -13.752725 ], [ 143.920898, -14.562318 ], [ 144.580078, -14.179186 ], [ 144.887695, -14.604847 ], [ 145.371094, -14.987240 ], [ 145.283203, -15.411319 ], [ 145.502930, -16.299051 ], [ 145.634766, -16.804541 ], [ 145.898438, -16.888660 ], [ 146.162109, -17.769612 ], [ 146.074219, -18.271086 ], [ 146.381836, -18.979026 ], [ 147.480469, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.350076 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.732422, -22.390714 ], [ 150.908203, -23.483401 ], [ 152.094727, -24.447150 ], [ 152.841797, -25.284438 ], [ 153.149414, -26.076521 ], [ 153.149414, -26.627818 ], [ 153.105469, -27.254630 ], [ 153.588867, -28.110749 ], [ 153.500977, -28.998532 ], [ 153.061523, -30.334954 ], [ 153.105469, -30.939924 ], [ 152.885742, -31.653381 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.347656, -33.833920 ], [ 150.996094, -34.307144 ], [ 150.732422, -35.173808 ], [ 150.336914, -35.675147 ], [ 150.073242, -36.421282 ], [ 149.941406, -37.125286 ], [ 149.985352, -37.439974 ], [ 149.414062, -37.788081 ], [ 148.315430, -37.822802 ], [ 147.392578, -38.203655 ], [ 146.337891, -39.027719 ], [ 145.502930, -38.582526 ], [ 144.887695, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.492188, -38.099983 ], [ 143.613281, -38.822591 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -38.030786 ], [ 140.009766, -37.405074 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.086914, -35.746512 ], [ 138.120117, -35.603719 ], [ 138.471680, -35.137879 ], [ 138.208008, -34.379713 ], [ 137.724609, -35.065973 ], [ 136.845703, -35.245619 ], [ 137.373047, -34.705493 ], [ 137.504883, -34.125448 ], [ 137.900391, -33.651208 ], [ 137.812500, -32.916485 ], [ 136.977539, -33.760882 ], [ 136.362305, -34.089061 ], [ 136.010742, -34.885931 ], [ 135.219727, -34.488448 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.296875, -32.620870 ], [ 132.978516, -32.026706 ], [ 132.275391, -31.989442 ], [ 131.308594, -31.503629 ], [ 129.550781, -31.578535 ], [ 127.089844, -32.287133 ], [ 126.166992, -32.212801 ], [ 125.068359, -32.731841 ], [ 124.233398, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.662109, -33.906896 ], [ 122.827148, -33.906896 ], [ 122.167969, -34.016242 ], [ 121.289062, -33.833920 ], [ 119.882812, -33.979809 ], [ 119.311523, -34.524661 ], [ 119.003906, -34.452218 ], [ 118.037109, -35.065973 ], [ 116.630859, -35.029996 ], [ 115.576172, -34.379713 ], [ 115.048828, -34.198173 ], [ 115.048828, -33.614619 ], [ 115.532227, -33.504759 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.916485 ], [ 115.795898, -32.212801 ], [ 115.708008, -31.615966 ], [ 115.180664, -30.600094 ], [ 115.004883, -30.031055 ], [ 115.048828, -29.458731 ], [ 114.653320, -28.806174 ], [ 114.609375, -28.536275 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.549223 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.549223 ], [ 113.422852, -25.641526 ], [ 113.950195, -25.918526 ], [ 114.213867, -26.313113 ], [ 114.213867, -25.799891 ], [ 113.730469, -25.005973 ], [ 113.642578, -24.686952 ], [ 113.378906, -24.367114 ], [ 113.510742, -23.805450 ], [ 113.686523, -23.563987 ], [ 113.862305, -23.079732 ], [ 113.730469, -22.471955 ], [ 114.169922, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.653320, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.084500 ], [ 116.718750, -20.715015 ], [ 117.158203, -20.632784 ], [ 117.421875, -20.756114 ], [ 118.212891, -20.385825 ], [ 118.828125, -20.262197 ], [ 119.003906, -20.055931 ], [ 119.267578, -19.973349 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.683970 ], [ 121.420898, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.255859, -18.187607 ], [ 122.299805, -17.266728 ], [ 123.002930, -16.425548 ], [ 123.442383, -17.266728 ], [ 123.881836, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.837891, -16.130262 ], [ 124.277344, -16.341226 ], [ 124.365234, -15.580711 ], [ 124.936523, -15.072124 ], [ 125.156250, -14.689881 ], [ 125.683594, -14.519780 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.349548 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.838080 ], [ 127.792969, -14.264383 ], [ 128.364258, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.638672, -14.987240 ], [ 129.418945, -14.434680 ], [ 129.902344, -13.624633 ], [ 130.341797, -13.368243 ], [ 130.166016, -13.111580 ], [ 130.605469, -12.554564 ], [ 131.220703, -12.168226 ], [ 131.748047, -12.297068 ], [ 132.583008, -12.125264 ], [ 132.539062, -11.609193 ], [ 131.835938, -11.264612 ], [ 132.363281, -11.135287 ], [ 133.022461, -11.393879 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.692383, -11.953349 ], [ 135.307617, -12.254128 ], [ 135.878906, -11.953349 ], [ 136.274414, -12.039321 ], [ 136.494141, -11.867351 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.897489 ], [ 136.318359, -13.282719 ], [ 135.966797, -13.325485 ], [ 136.098633, -13.710035 ], [ 135.439453, -14.732386 ], [ 135.483398, -14.987240 ], [ 136.318359, -15.538376 ], [ 137.065430, -15.876809 ], [ 138.295898, -16.804541 ], [ 138.603516, -16.804541 ], [ 139.130859, -17.056785 ], [ 139.262695, -17.392579 ], [ 140.229492, -17.727759 ], [ 140.888672, -17.350638 ], [ 141.284180, -16.383391 ], [ 141.416016, -15.834536 ], [ 141.723633, -15.029686 ], [ 141.547852, -14.562318 ], [ 141.635742, -14.264383 ], [ 141.503906, -13.710035 ], [ 141.635742, -12.940322 ], [ 141.855469, -12.726084 ], [ 141.679688, -12.425848 ], [ 142.119141, -11.350797 ], [ 142.163086, -11.049038 ], [ 142.514648, -10.660608 ] ] ], [ [ [ 173.012695, -34.452218 ], [ 173.540039, -34.994004 ], [ 174.331055, -35.281501 ], [ 174.594727, -36.173357 ], [ 175.341797, -37.195331 ], [ 175.341797, -36.527295 ], [ 175.825195, -36.809285 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.892196 ], [ 177.451172, -37.961523 ], [ 178.022461, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.286133, -38.582526 ], [ 177.978516, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.055664, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.253906, -41.705729 ], [ 175.078125, -41.442726 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.902344, -39.909736 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.164141 ], [ 174.594727, -38.788345 ], [ 174.726562, -38.030786 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.331055, -36.527295 ], [ 173.847656, -36.137875 ], [ 173.056641, -35.245619 ], [ 172.617188, -34.524661 ], [ 173.012695, -34.452218 ] ] ], [ [ [ 30.366211, -8.233237 ], [ 30.761719, -8.320212 ], [ 31.552734, -8.754795 ], [ 32.211914, -8.928487 ], [ 32.739258, -9.232249 ], [ 33.750000, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.523088 ], [ 35.332031, -11.436955 ], [ 36.518555, -11.738302 ], [ 36.782227, -11.609193 ], [ 37.485352, -11.566144 ], [ 37.836914, -11.264612 ], [ 38.408203, -11.307708 ], [ 39.506836, -10.919618 ], [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ], [ 40.429688, -11.781325 ], [ 40.561523, -12.640338 ], [ 40.605469, -14.221789 ], [ 40.781250, -14.689881 ], [ 40.078125, -16.088042 ], [ 39.462891, -16.720385 ], [ 37.397461, -17.602139 ], [ 36.298828, -18.646245 ], [ 35.903320, -18.854310 ], [ 35.200195, -19.559790 ], [ 34.804688, -19.766704 ], [ 34.716797, -20.509355 ], [ 35.156250, -21.248422 ], [ 35.375977, -21.861499 ], [ 35.375977, -22.146708 ], [ 35.551758, -22.105999 ], [ 35.551758, -23.079732 ], [ 35.375977, -23.523700 ], [ 35.595703, -23.725012 ], [ 35.463867, -24.126702 ], [ 35.024414, -24.487149 ], [ 33.002930, -25.363882 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.155438 ], [ 32.915039, -26.234302 ], [ 32.827148, -26.745610 ], [ 32.563477, -27.488781 ], [ 32.475586, -28.304381 ], [ 32.211914, -28.767659 ], [ 31.333008, -29.420460 ], [ 30.893555, -29.916852 ], [ 30.629883, -30.410782 ], [ 30.058594, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.465820, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.927734, -33.651208 ], [ 25.795898, -33.943360 ], [ 25.180664, -33.797409 ], [ 24.697266, -33.979809 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.906896 ], [ 22.587891, -33.870416 ], [ 21.533203, -34.270836 ], [ 20.698242, -34.415973 ], [ 20.083008, -34.813803 ], [ 19.599609, -34.813803 ], [ 19.204102, -34.452218 ], [ 18.852539, -34.452218 ], [ 18.413086, -34.016242 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.870416 ], [ 18.237305, -33.284620 ], [ 17.929688, -32.620870 ], [ 18.237305, -32.435613 ], [ 18.237305, -31.653381 ], [ 17.578125, -30.713504 ], [ 16.347656, -28.574874 ], [ 16.831055, -28.071980 ], [ 17.226562, -28.343065 ], [ 17.402344, -28.767659 ], [ 18.457031, -29.036961 ], [ 18.984375, -28.960089 ], [ 19.907227, -28.459033 ], [ 19.907227, -21.861499 ], [ 20.874023, -21.820708 ], [ 20.917969, -18.271086 ], [ 21.665039, -18.229351 ], [ 23.203125, -17.853290 ], [ 23.598633, -18.271086 ], [ 24.213867, -17.895114 ], [ 24.521484, -17.895114 ], [ 25.092773, -17.644022 ], [ 25.092773, -17.560247 ], [ 24.697266, -17.350638 ], [ 24.038086, -17.308688 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.088042 ], [ 21.928711, -12.897489 ], [ 24.038086, -12.897489 ], [ 23.950195, -12.554564 ], [ 24.082031, -12.211180 ], [ 23.906250, -11.738302 ], [ 24.038086, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.257812, -10.962764 ], [ 24.301758, -11.264612 ], [ 24.785156, -11.221510 ], [ 25.400391, -11.350797 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.609193 ], [ 27.377930, -12.125264 ], [ 28.168945, -12.254128 ], [ 28.916016, -13.239945 ], [ 29.707031, -13.239945 ], [ 29.619141, -12.168226 ], [ 29.355469, -12.382928 ], [ 28.388672, -11.781325 ], [ 28.696289, -9.622414 ], [ 28.432617, -9.145486 ], [ 28.740234, -8.537565 ], [ 29.003906, -8.407168 ], [ 30.366211, -8.233237 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.989258, -0.790990 ], [ 134.165039, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.439453, -3.381824 ], [ 136.274414, -2.328460 ], [ 137.460938, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.921875, -2.416276 ], [ 141.020508, -2.591889 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.810547, -4.872048 ], [ 145.986328, -5.484768 ], [ 147.656250, -6.096860 ], [ 147.875977, -6.620957 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.406048 ], [ 148.095703, -8.059230 ], [ 148.754883, -9.102097 ], [ 149.326172, -9.058702 ], [ 149.282227, -9.535749 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.882275 ], [ 150.820312, -10.314919 ], [ 150.688477, -10.574222 ], [ 150.029297, -10.660608 ], [ 149.765625, -10.401378 ], [ 147.919922, -10.141932 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.755859, -7.623887 ], [ 143.876953, -7.928675 ], [ 143.305664, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.646484, -9.318990 ], [ 142.075195, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.320212 ], [ 139.130859, -8.102739 ], [ 138.867188, -8.363693 ], [ 137.636719, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.691406, -7.318882 ], [ 138.427734, -6.227934 ], [ 137.944336, -5.397273 ], [ 136.010742, -4.565474 ], [ 135.175781, -4.477856 ], [ 133.681641, -3.557283 ], [ 133.374023, -4.039618 ], [ 132.978516, -4.127285 ], [ 132.758789, -3.732708 ], [ 132.758789, -3.294082 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.625758 ], [ 130.957031, -1.450040 ], [ 130.517578, -0.922812 ], [ 131.879883, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 49.174805, -12.039321 ], [ 49.790039, -12.897489 ], [ 50.053711, -13.539201 ], [ 50.229492, -14.774883 ], [ 50.493164, -15.241790 ], [ 50.361328, -15.707663 ], [ 50.185547, -16.003576 ], [ 49.877930, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.877930, -16.467695 ], [ 49.790039, -16.888660 ], [ 49.482422, -17.098792 ], [ 49.438477, -17.936929 ], [ 47.944336, -22.390714 ], [ 47.548828, -23.765237 ], [ 47.109375, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.601902 ], [ 44.033203, -25.005973 ], [ 43.769531, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.796439 ], [ 43.242188, -22.065278 ], [ 43.417969, -21.330315 ], [ 43.901367, -21.166484 ], [ 43.901367, -20.838278 ], [ 44.384766, -20.055931 ], [ 44.472656, -19.435514 ], [ 44.252930, -18.979026 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.956055, -16.172473 ], [ 45.878906, -15.792254 ], [ 46.318359, -15.792254 ], [ 46.889648, -15.199386 ], [ 47.724609, -14.604847 ], [ 47.988281, -14.093957 ], [ 47.856445, -13.667338 ], [ 48.295898, -13.795406 ], [ 48.867188, -13.111580 ], [ 48.867188, -12.468760 ], [ 49.174805, -12.039321 ] ] ], [ [ [ 117.509766, 3.513421 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.922812 ], [ 117.817383, 0.790990 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.504085 ], [ 116.147461, -3.995781 ], [ 116.015625, -3.645000 ], [ 114.873047, -4.127285 ], [ 114.477539, -3.513421 ], [ 113.774414, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.030812 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.581830 ], [ 109.555664, -1.318243 ], [ 109.072266, -0.439449 ], [ 109.028320, 0.000000 ], [ 108.940430, 0.395505 ], [ 109.072266, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.318243 ], [ 110.522461, 0.790990 ], [ 111.181641, 0.966751 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.136719, 2.811371 ], [ 115.532227, 3.162456 ], [ 115.620117, 3.513421 ], [ 117.509766, 3.513421 ] ] ], [ [ [ 99.228516, 3.513421 ], [ 99.711914, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.064982 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.571280 ], [ 103.842773, 0.087891 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.801461 ], [ 104.897461, -2.328460 ], [ 105.644531, -2.416276 ], [ 106.127930, -3.074695 ], [ 105.864258, -4.302591 ], [ 105.820312, -5.834616 ], [ 104.721680, -5.878332 ], [ 103.886719, -5.047171 ], [ 102.568359, -4.214943 ], [ 102.172852, -3.601142 ], [ 101.381836, -2.811371 ], [ 100.898438, -2.064982 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.294082 ], [ 96.899414, 3.513421 ], [ 99.228516, 3.513421 ] ] ], [ [ [ 125.068359, 1.625758 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.706055, 0.219726 ], [ 122.739258, 0.439449 ], [ 121.069336, 0.395505 ], [ 120.190430, 0.219726 ], [ 120.146484, 0.000000 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.354492, -0.615223 ], [ 123.266602, -1.098565 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.537901 ], [ 121.508789, -1.889306 ], [ 122.475586, -3.206333 ], [ 122.255859, -3.513421 ], [ 123.178711, -4.696879 ], [ 123.178711, -5.353521 ], [ 122.651367, -5.615986 ], [ 122.255859, -5.266008 ], [ 122.739258, -4.477856 ], [ 121.728516, -4.872048 ], [ 121.508789, -4.565474 ], [ 121.640625, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.981445, -2.635789 ], [ 120.322266, -2.943041 ], [ 120.410156, -5.528511 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.397273 ], [ 119.663086, -4.477856 ], [ 119.487305, -3.513421 ], [ 119.091797, -3.469557 ], [ 118.784180, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.311523, -1.362176 ], [ 119.794922, 0.000000 ], [ 120.058594, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.684570, 1.010690 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.068359, 1.625758 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.270508, -5.965754 ], [ 108.061523, -6.358975 ], [ 108.500977, -6.402648 ], [ 108.632812, -6.795535 ], [ 110.522461, -6.882800 ], [ 110.742188, -6.446318 ], [ 112.631836, -6.926427 ], [ 112.983398, -7.580328 ], [ 114.477539, -7.798079 ], [ 115.708008, -8.363693 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.363693 ], [ 112.543945, -8.363693 ], [ 111.533203, -8.320212 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.754537 ], [ 108.676758, -7.623887 ], [ 108.281250, -7.754537 ], [ 106.435547, -7.362467 ], [ 106.303711, -6.926427 ], [ 105.380859, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 152.138672, -4.171115 ], [ 152.358398, -4.302591 ], [ 152.314453, -4.872048 ], [ 151.962891, -5.484768 ], [ 151.479492, -5.572250 ], [ 151.303711, -5.834616 ], [ 150.249023, -6.315299 ], [ 149.721680, -6.315299 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.282227, -5.572250 ], [ 149.853516, -5.528511 ], [ 149.985352, -5.047171 ], [ 150.161133, -5.003394 ], [ 150.249023, -5.528511 ], [ 150.820312, -5.441022 ], [ 151.083984, -5.134715 ], [ 151.655273, -4.740675 ], [ 151.523438, -4.171115 ], [ 152.138672, -4.171115 ] ] ], [ [ [ 126.958008, -8.276727 ], [ 127.353516, -8.407168 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.405710 ], [ 124.453125, -10.141932 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.980469, -8.885072 ], [ 125.068359, -8.667918 ], [ 125.947266, -8.450639 ], [ 126.650391, -8.407168 ], [ 126.958008, -8.276727 ] ] ], [ [ [ 164.047852, -20.097206 ], [ 164.443359, -20.138470 ], [ 165.014648, -20.468189 ], [ 167.124023, -22.146708 ], [ 166.728516, -22.390714 ], [ 165.454102, -21.698265 ], [ 164.838867, -21.166484 ], [ 164.179688, -20.427013 ], [ 164.047852, -20.097206 ] ] ], [ [ [ 127.924805, 2.196727 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.351560 ], [ 128.012695, 0.000000 ], [ 127.968750, -0.263671 ], [ 128.364258, -0.790990 ], [ 128.100586, -0.922812 ], [ 127.705078, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.617188, 1.801461 ], [ 127.924805, 2.196727 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.074695 ], [ 130.825195, -3.864255 ], [ 129.990234, -3.469557 ], [ 129.155273, -3.381824 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 122.915039, -8.102739 ], [ 122.739258, -8.667918 ], [ 121.245117, -8.928487 ], [ 119.926758, -8.798225 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.233237 ], [ 121.333008, -8.537565 ], [ 121.992188, -8.450639 ], [ 122.915039, -8.102739 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.256836, -8.363693 ], [ 118.872070, -8.276727 ], [ 119.135742, -8.711359 ], [ 117.290039, -9.058702 ], [ 116.762695, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.641602, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 178.374023, -17.350638 ], [ 178.725586, -17.644022 ], [ 178.549805, -18.145852 ], [ 177.934570, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.727759 ], [ 177.670898, -17.392579 ], [ 178.110352, -17.518344 ], [ 178.374023, -17.350638 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 152.226562, -3.250209 ], [ 153.017578, -3.995781 ], [ 153.149414, -4.521666 ], [ 152.841797, -4.784469 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.391602, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.952148, -2.504085 ] ] ], [ [ [ 154.643555, -5.047171 ], [ 154.775391, -5.353521 ], [ 155.083008, -5.572250 ], [ 155.566406, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.839170 ], [ 155.610352, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.922045 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.047171 ] ] ], [ [ [ 119.882812, -9.362353 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.717773, -10.228437 ], [ 120.278320, -10.271681 ], [ 118.959961, -9.579084 ], [ 119.882812, -9.362353 ] ] ], [ [ [ 180.219727, -16.003576 ], [ 180.087891, -16.509833 ], [ 180.000000, -16.551962 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.428711, -16.383391 ], [ 180.000000, -16.088042 ], [ 180.219727, -16.003576 ] ] ], [ [ [ 167.211914, -15.876809 ], [ 167.827148, -16.467695 ], [ 167.519531, -16.594081 ], [ 167.167969, -16.172473 ], [ 167.211914, -15.876809 ] ] ], [ [ [ 127.001953, -3.118576 ], [ 127.265625, -3.469557 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.991211, -3.162456 ], [ 127.001953, -3.118576 ] ] ], [ [ [ 166.640625, -14.647368 ], [ 167.124023, -14.944785 ], [ 167.255859, -15.749963 ], [ 166.992188, -15.623037 ], [ 166.816406, -15.665354 ], [ 166.640625, -15.411319 ], [ 166.640625, -14.647368 ] ] ], [ [ [ 134.516602, -5.441022 ], [ 134.736328, -5.747174 ], [ 134.736328, -6.227934 ], [ 134.208984, -6.882800 ], [ 134.121094, -6.140555 ], [ 134.516602, -5.441022 ] ] ], [ [ [ 161.323242, -10.185187 ], [ 162.114258, -10.487812 ], [ 162.421875, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.323242, -10.185187 ] ] ], [ [ [ 158.378906, -7.318882 ], [ 159.653320, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 158.598633, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.378906, -7.318882 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.405710 ], [ 160.708008, -9.622414 ], [ 160.839844, -9.882275 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.795678 ], [ 159.653320, -9.622414 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.927734, -8.320212 ], [ 161.279297, -9.102097 ], [ 161.674805, -9.622414 ], [ 161.542969, -9.795678 ], [ 160.795898, -8.928487 ], [ 160.576172, -8.320212 ], [ 160.927734, -8.320212 ] ] ], [ [ [ 156.533203, -6.620957 ], [ 157.148438, -7.013668 ], [ 157.543945, -7.362467 ], [ 157.324219, -7.406048 ], [ 156.884766, -7.188101 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.620957 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 34.584961, 35.675147 ], [ 33.881836, 35.245619 ], [ 34.013672, 34.994004 ], [ 33.002930, 34.560859 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.101934 ], [ 32.739258, 35.137879 ], [ 32.783203, 35.137879 ], [ 32.958984, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.584961, 35.675147 ] ] ], [ [ [ 104.370117, 77.702234 ], [ 106.083984, 77.370301 ], [ 104.721680, 77.127825 ], [ 106.962891, 76.970245 ], [ 107.226562, 76.475773 ], [ 108.149414, 76.720223 ], [ 111.093750, 76.710125 ], [ 113.334961, 76.226907 ], [ 114.125977, 75.845169 ], [ 113.906250, 75.331158 ], [ 112.763672, 75.027664 ], [ 110.170898, 74.472903 ], [ 109.379883, 74.176073 ], [ 110.654297, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.027344, 73.971078 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.590586 ], [ 115.576172, 73.751205 ], [ 118.784180, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.222656, 72.971189 ], [ 123.266602, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.035419 ], [ 129.067383, 72.395706 ], [ 128.452148, 71.978988 ], [ 129.726562, 71.187754 ], [ 131.308594, 70.786910 ], [ 132.275391, 71.842539 ], [ 133.857422, 71.385142 ], [ 135.571289, 71.649833 ], [ 137.504883, 71.343013 ], [ 138.251953, 71.622143 ], [ 139.877930, 71.483086 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.501953, 72.195246 ], [ 150.336914, 71.608283 ], [ 152.973633, 70.844673 ], [ 157.016602, 71.031249 ], [ 158.994141, 70.859087 ], [ 159.829102, 70.451508 ], [ 159.697266, 69.718107 ], [ 160.927734, 69.442128 ], [ 162.290039, 69.641804 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.580563 ], [ 169.584961, 68.688521 ], [ 170.815430, 69.005675 ], [ 170.024414, 69.657086 ], [ 170.463867, 70.095529 ], [ 173.627930, 69.824471 ], [ 175.737305, 69.869892 ], [ 178.593750, 69.395783 ], [ 180.000000, 68.958391 ], [ 182.460938, 68.204212 ], [ 183.515625, 67.809245 ], [ 183.515625, 65.403445 ], [ 182.768555, 65.512963 ], [ 181.625977, 65.385147 ], [ 181.098633, 65.748683 ], [ 181.318359, 66.107170 ], [ 180.131836, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.725586, 64.529548 ], [ 177.407227, 64.605038 ], [ 178.330078, 64.072200 ], [ 178.901367, 63.253412 ], [ 179.384766, 62.975198 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.512318 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.648162 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.326948 ], [ 170.332031, 59.888937 ], [ 168.881836, 60.565379 ], [ 166.289062, 59.778522 ], [ 165.849609, 60.152442 ], [ 164.882812, 59.734253 ], [ 163.520508, 59.866883 ], [ 163.212891, 59.220934 ], [ 162.026367, 58.240164 ], [ 162.070312, 57.844751 ], [ 163.212891, 57.610107 ], [ 163.081055, 56.170023 ], [ 162.114258, 56.121060 ], [ 161.718750, 55.279115 ], [ 162.114258, 54.851315 ], [ 160.356445, 54.342149 ], [ 160.004883, 53.199452 ], [ 158.510742, 52.961875 ], [ 158.247070, 51.944265 ], [ 156.796875, 51.013755 ], [ 156.401367, 51.699800 ], [ 156.005859, 53.146770 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.821355 ], [ 158.378906, 58.054632 ], [ 160.136719, 59.310768 ], [ 161.894531, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.487305, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.136719, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.756395 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.881942 ], [ 151.259766, 58.790978 ], [ 151.347656, 59.512029 ], [ 149.765625, 59.645540 ], [ 148.535156, 59.153403 ], [ 145.502930, 59.333189 ], [ 142.207031, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.131836, 54.724620 ], [ 136.713867, 54.597528 ], [ 137.197266, 53.981935 ], [ 138.164062, 53.748711 ], [ 138.823242, 54.265224 ], [ 139.921875, 54.188155 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.234407 ], [ 140.493164, 50.035974 ], [ 140.053711, 48.458352 ], [ 138.559570, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.389082 ], [ 133.549805, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.957031, 42.553080 ], [ 130.781250, 42.228517 ], [ 130.649414, 42.391009 ], [ 130.649414, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.308594, 44.119142 ], [ 131.044922, 44.964798 ], [ 131.879883, 45.305803 ], [ 133.110352, 45.151053 ], [ 133.769531, 46.103709 ], [ 134.121094, 47.219568 ], [ 134.516602, 47.576526 ], [ 135.043945, 48.487486 ], [ 133.374023, 48.195387 ], [ 132.495117, 47.783635 ], [ 131.000977, 47.783635 ], [ 130.605469, 48.719961 ], [ 129.418945, 49.439557 ], [ 127.661133, 49.752880 ], [ 127.309570, 50.736455 ], [ 126.958008, 51.344339 ], [ 126.562500, 51.781436 ], [ 125.947266, 52.802761 ], [ 125.068359, 53.173119 ], [ 123.574219, 53.461890 ], [ 122.255859, 53.435719 ], [ 121.025391, 53.252069 ], [ 120.190430, 52.749594 ], [ 120.717773, 52.509535 ], [ 120.717773, 51.971346 ], [ 120.190430, 51.645294 ], [ 119.267578, 50.569283 ], [ 119.311523, 50.148746 ], [ 117.861328, 49.496675 ], [ 116.674805, 49.894634 ], [ 115.488281, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.124219 ], [ 109.423828, 49.296472 ], [ 108.457031, 49.267805 ], [ 107.885742, 49.781264 ], [ 106.875000, 50.261254 ], [ 105.908203, 50.401515 ], [ 104.633789, 50.261254 ], [ 103.666992, 50.092393 ], [ 102.260742, 50.513427 ], [ 102.084961, 51.261915 ], [ 100.898438, 51.508742 ], [ 99.975586, 51.645294 ], [ 98.876953, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.724479 ], [ 95.800781, 49.979488 ], [ 94.833984, 50.007739 ], [ 94.130859, 50.485474 ], [ 93.120117, 50.485474 ], [ 92.241211, 50.792047 ], [ 90.703125, 50.317408 ], [ 88.813477, 49.468124 ], [ 87.363281, 49.210420 ], [ 86.616211, 48.545705 ], [ 85.781250, 48.458352 ], [ 85.737305, 47.457809 ], [ 85.166016, 47.010226 ], [ 83.188477, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.958008, 45.305803 ], [ 79.980469, 44.902578 ], [ 80.859375, 43.165123 ], [ 80.200195, 42.908160 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.574361 ], [ 78.178711, 41.178654 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.413496 ], [ 75.454102, 40.547200 ], [ 74.794922, 40.380028 ], [ 73.828125, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.696289, 39.436193 ], [ 71.806641, 39.266284 ], [ 70.532227, 39.605688 ], [ 69.477539, 39.537940 ], [ 69.565430, 40.111689 ], [ 70.664062, 39.943436 ], [ 71.015625, 40.245992 ], [ 70.620117, 40.212441 ], [ 70.444336, 40.480381 ], [ 70.664062, 40.946714 ], [ 69.345703, 40.713956 ], [ 68.994141, 40.078071 ], [ 68.554688, 39.537940 ], [ 67.719727, 39.571822 ], [ 67.456055, 39.130060 ], [ 68.159180, 38.891033 ], [ 68.378906, 38.169114 ], [ 67.851562, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.225586, 37.405074 ], [ 65.742188, 37.649034 ], [ 65.610352, 37.300275 ], [ 64.731445, 37.125286 ], [ 64.555664, 36.315125 ], [ 63.984375, 35.995785 ], [ 63.193359, 35.853440 ], [ 62.973633, 35.389050 ], [ 62.226562, 35.281501 ], [ 61.215820, 35.639441 ], [ 61.127930, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.405074 ], [ 58.447266, 37.509726 ], [ 57.348633, 38.030786 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.926868 ], [ 55.502930, 37.961523 ], [ 54.799805, 37.405074 ], [ 53.920898, 37.195331 ], [ 53.745117, 37.892196 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.876953, 40.613952 ], [ 54.755859, 40.946714 ], [ 54.008789, 41.541478 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.822266, 41.145570 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.514648, 42.779275 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.361328, 44.276671 ], [ 50.317383, 44.621754 ], [ 51.284180, 44.527843 ], [ 51.328125, 45.243953 ], [ 52.163086, 45.398450 ], [ 53.041992, 45.243953 ], [ 53.217773, 46.225453 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.800059 ], [ 51.196289, 47.040182 ], [ 50.053711, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.647461, 45.798170 ], [ 47.680664, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.592773, 43.644026 ], [ 47.504883, 42.972502 ], [ 49.130859, 41.277806 ], [ 49.614258, 40.580585 ], [ 50.097656, 40.513799 ], [ 50.405273, 40.245992 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.867188, 38.822591 ], [ 48.867188, 38.307181 ], [ 48.647461, 38.272689 ], [ 48.032227, 38.788345 ], [ 48.339844, 39.300299 ], [ 48.076172, 39.571822 ], [ 47.680664, 39.504041 ], [ 46.494141, 38.754083 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.856820 ], [ 44.956055, 39.334297 ], [ 44.780273, 39.707187 ], [ 44.121094, 39.436193 ], [ 44.428711, 38.272689 ], [ 44.208984, 37.961523 ], [ 44.780273, 37.160317 ], [ 45.439453, 35.960223 ], [ 46.098633, 35.675147 ], [ 46.142578, 35.101934 ], [ 45.659180, 34.741612 ], [ 45.439453, 33.979809 ], [ 46.098633, 33.027088 ], [ 47.329102, 32.472695 ], [ 47.856445, 31.690782 ], [ 47.680664, 30.977609 ], [ 47.988281, 30.977609 ], [ 48.032227, 30.448674 ], [ 48.559570, 29.916852 ], [ 47.988281, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.305561 ], [ 48.823242, 27.683528 ], [ 49.306641, 27.449790 ], [ 49.482422, 27.098254 ], [ 50.141602, 26.706360 ], [ 50.229492, 26.273714 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.601902 ], [ 50.537109, 25.324167 ], [ 50.800781, 24.766785 ], [ 50.756836, 25.482951 ], [ 51.020508, 25.997550 ], [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.591797, 25.204941 ], [ 51.372070, 24.607069 ], [ 51.591797, 24.246965 ], [ 51.767578, 24.287027 ], [ 51.811523, 24.006326 ], [ 52.558594, 24.166802 ], [ 54.008789, 24.126702 ], [ 55.458984, 25.443275 ], [ 56.381836, 26.391870 ], [ 56.469727, 26.313113 ], [ 56.381836, 25.878994 ], [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 56.865234, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.139648, 23.765237 ], [ 58.710938, 23.563987 ], [ 59.458008, 22.674847 ], [ 59.809570, 22.512557 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.412162 ], [ 58.842773, 21.125498 ], [ 58.491211, 20.427013 ], [ 58.051758, 20.468189 ], [ 57.832031, 20.262197 ], [ 57.656250, 19.725342 ], [ 57.788086, 19.062118 ], [ 57.700195, 18.937464 ], [ 57.216797, 18.937464 ], [ 56.601562, 18.562947 ], [ 56.513672, 18.104087 ], [ 56.293945, 17.895114 ], [ 55.678711, 17.895114 ], [ 55.283203, 17.644022 ], [ 55.283203, 17.224758 ], [ 54.799805, 16.930705 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.129883, 16.636192 ], [ 51.987305, 18.979026 ], [ 49.130859, 18.604601 ], [ 48.164062, 18.145852 ], [ 47.460938, 17.098792 ], [ 47.021484, 16.930705 ], [ 46.757812, 17.266728 ], [ 46.362305, 17.224758 ], [ 45.395508, 17.350638 ], [ 45.219727, 17.434511 ], [ 44.077148, 17.392579 ], [ 43.813477, 17.308688 ], [ 43.374023, 17.560247 ], [ 43.110352, 17.098792 ], [ 43.198242, 16.678293 ], [ 42.758789, 16.341226 ], [ 42.670898, 16.762468 ], [ 42.363281, 17.056785 ], [ 42.275391, 17.476432 ], [ 41.748047, 17.811456 ], [ 41.220703, 18.687879 ], [ 40.957031, 19.476950 ], [ 40.253906, 20.179724 ], [ 39.814453, 20.344627 ], [ 39.155273, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.593726 ], [ 38.496094, 23.684774 ], [ 38.012695, 24.086589 ], [ 37.485352, 24.287027 ], [ 37.177734, 24.846565 ], [ 37.221680, 25.085599 ], [ 36.914062, 25.601902 ], [ 36.650391, 25.839449 ], [ 36.254883, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.343875 ], [ 34.936523, 29.496988 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.343065 ], [ 34.145508, 27.839076 ], [ 33.925781, 27.644606 ], [ 33.134766, 28.420391 ], [ 32.431641, 29.840644 ], [ 32.343750, 29.764377 ], [ 32.739258, 28.690588 ], [ 33.354492, 27.683528 ], [ 34.101562, 26.155438 ], [ 34.804688, 25.045792 ], [ 35.683594, 23.926013 ], [ 35.507812, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.694336, 22.187405 ], [ 36.870117, 21.983801 ], [ 37.177734, 21.002471 ], [ 36.958008, 20.838278 ], [ 37.133789, 19.808054 ], [ 37.485352, 18.604601 ], [ 38.408203, 17.978733 ], [ 38.979492, 16.846605 ], [ 39.287109, 15.919074 ], [ 39.814453, 15.453680 ], [ 41.176758, 14.477234 ], [ 42.583008, 12.983148 ], [ 43.066406, 12.683215 ], [ 43.330078, 12.382928 ], [ 43.286133, 11.953349 ], [ 42.714844, 11.738302 ], [ 43.154297, 11.480025 ], [ 42.539062, 10.574222 ], [ 42.934570, 10.012130 ], [ 43.286133, 9.535749 ], [ 43.681641, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.812500, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.681641, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.143555, 4.214943 ], [ 41.835938, 3.908099 ], [ 41.000977, 2.767478 ], [ 41.000977, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.649414, -2.504085 ], [ 40.253906, -2.591889 ], [ 40.122070, -3.294082 ], [ 39.946289, -3.513421 ], [ 37.749023, -3.513421 ], [ 37.705078, -3.118576 ], [ 33.925781, -0.966751 ], [ 30.761719, -1.010690 ], [ 29.838867, -1.450040 ], [ 29.575195, -1.362176 ], [ 29.311523, -1.625758 ], [ 29.267578, -2.196727 ], [ 29.135742, -2.284551 ], [ 29.047852, -2.855263 ], [ 29.267578, -3.294082 ], [ 29.267578, -3.513421 ], [ 15.996094, -3.513421 ], [ 15.996094, -2.723583 ], [ 16.391602, -1.757537 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.709961, 0.000000 ], [ 17.841797, 0.307616 ], [ 17.753906, 0.834931 ], [ 17.885742, 1.757537 ], [ 18.105469, 2.372369 ], [ 18.413086, 2.899153 ], [ 18.457031, 3.513421 ], [ 17.797852, 3.557283 ], [ 17.138672, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.952148, 1.713612 ], [ 14.326172, 2.240640 ], [ 13.095703, 2.284551 ], [ 12.963867, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.293945, 2.240640 ], [ 11.293945, 1.054628 ], [ 9.843750, 1.054628 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.142502 ], [ 9.667969, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.964844, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.481445, 4.477856 ], [ 8.481445, 4.784469 ], [ 7.470703, 4.390229 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.258768 ], [ 5.361328, 4.872048 ], [ 5.053711, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.140555 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.527344, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.977539, 4.696879 ], [ -2.856445, 5.003394 ], [ -3.515625, 5.047171 ], [ -3.515625, 35.389050 ], [ -2.592773, 35.173808 ], [ -2.153320, 35.173808 ], [ -1.230469, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.960223 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.597889 ], [ 3.164062, 36.774092 ], [ 4.833984, 36.879621 ], [ 5.317383, 36.703660 ], [ 6.284180, 37.125286 ], [ 7.338867, 37.125286 ], [ 7.734375, 36.879621 ], [ 8.437500, 36.949892 ], [ 9.492188, 37.335224 ], [ 10.195312, 37.230328 ], [ 10.195312, 36.738884 ], [ 11.030273, 37.090240 ], [ 11.118164, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.942383, 35.710838 ], [ 10.810547, 34.849875 ], [ 10.151367, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.760882 ], [ 11.118164, 33.284620 ], [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ], [ 13.095703, 32.879587 ], [ 13.930664, 32.694866 ], [ 15.249023, 32.249974 ], [ 15.732422, 31.391158 ], [ 16.611328, 31.165810 ], [ 18.017578, 30.751278 ], [ 19.072266, 30.259067 ], [ 19.555664, 30.524413 ], [ 20.039062, 30.977609 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.874023, 32.694866 ], [ 21.533203, 32.842674 ], [ 22.895508, 32.620870 ], [ 23.247070, 32.175612 ], [ 23.598633, 32.175612 ], [ 23.950195, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.180664, 31.578535 ], [ 26.499023, 31.578535 ], [ 28.916016, 30.864510 ], [ 29.663086, 31.203405 ], [ 30.102539, 31.466154 ], [ 30.981445, 31.541090 ], [ 31.684570, 31.428663 ], [ 31.948242, 30.939924 ], [ 32.211914, 31.240985 ], [ 33.002930, 31.015279 ], [ 33.793945, 30.977609 ], [ 34.277344, 31.203405 ], [ 34.541016, 31.541090 ], [ 34.497070, 31.615966 ], [ 34.760742, 32.063956 ], [ 34.936523, 32.842674 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.633208 ], [ 35.903320, 35.424868 ], [ 36.166992, 35.817813 ], [ 35.771484, 36.279707 ], [ 36.166992, 36.633162 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.809285 ], [ 34.013672, 36.208823 ], [ 32.519531, 36.102376 ], [ 31.684570, 36.633162 ], [ 30.629883, 36.668419 ], [ 30.410156, 36.244273 ], [ 29.707031, 36.137875 ], [ 28.740234, 36.668419 ], [ 27.641602, 36.668419 ], [ 27.070312, 37.649034 ], [ 26.323242, 38.203655 ], [ 26.806641, 38.993572 ], [ 26.191406, 39.470125 ], [ 27.290039, 40.413496 ], [ 28.828125, 40.446947 ], [ 29.223633, 41.211722 ], [ 31.157227, 41.079351 ], [ 32.343750, 41.738528 ], [ 33.530273, 42.032974 ], [ 35.156250, 42.032974 ], [ 36.914062, 41.343825 ], [ 38.364258, 40.946714 ], [ 39.506836, 41.112469 ], [ 40.385742, 41.013066 ], [ 41.572266, 41.541478 ], [ 41.704102, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.004647 ], [ 40.341797, 43.133061 ], [ 39.946289, 43.421009 ], [ 38.671875, 44.276671 ], [ 37.529297, 44.653024 ], [ 36.694336, 45.243953 ], [ 37.397461, 45.398450 ], [ 38.232422, 46.225453 ], [ 37.661133, 46.649436 ], [ 39.155273, 47.040182 ], [ 39.111328, 47.249407 ], [ 38.232422, 47.100045 ], [ 37.441406, 47.010226 ], [ 36.782227, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.980469, 46.286224 ], [ 35.024414, 45.644768 ], [ 35.507812, 45.398450 ], [ 36.518555, 45.460131 ], [ 36.342773, 45.120053 ], [ 35.244141, 44.933696 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.559163 ], [ 33.530273, 45.026950 ], [ 32.475586, 45.336702 ], [ 32.651367, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.310547, 46.073231 ], [ 31.728516, 46.346928 ], [ 31.684570, 46.709736 ], [ 30.761719, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.619141, 45.305803 ], [ 29.619141, 45.026950 ], [ 29.135742, 44.809122 ], [ 28.828125, 44.902578 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.685547, 42.585444 ], [ 27.993164, 42.000325 ], [ 28.125000, 41.607228 ], [ 29.003906, 41.310824 ], [ 28.828125, 41.046217 ], [ 27.641602, 41.013066 ], [ 26.367188, 40.145289 ], [ 26.059570, 40.613952 ], [ 26.059570, 40.813809 ], [ 25.444336, 40.847060 ], [ 24.916992, 40.946714 ], [ 23.730469, 40.680638 ], [ 24.389648, 40.111689 ], [ 23.906250, 39.977120 ], [ 23.334961, 39.943436 ], [ 22.807617, 40.480381 ], [ 22.631836, 40.245992 ], [ 22.851562, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.983398, 38.959409 ], [ 23.510742, 38.513788 ], [ 24.038086, 38.203655 ], [ 24.038086, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.422852, 37.405074 ], [ 22.763672, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.500000, 36.421282 ], [ 21.665039, 36.844461 ], [ 21.313477, 37.649034 ], [ 21.137695, 38.307181 ], [ 20.214844, 39.334297 ], [ 20.170898, 39.639538 ], [ 19.995117, 39.707187 ], [ 19.951172, 39.909736 ], [ 19.423828, 40.245992 ], [ 19.335938, 40.713956 ], [ 19.423828, 41.409776 ], [ 19.555664, 41.705729 ], [ 19.379883, 41.869561 ], [ 19.160156, 41.967659 ], [ 18.896484, 42.293564 ], [ 17.490234, 42.843751 ], [ 16.918945, 43.197167 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.380859, 44.308127 ], [ 14.941406, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.974609, 44.809122 ], [ 13.666992, 45.151053 ], [ 13.666992, 45.490946 ], [ 13.930664, 45.583290 ], [ 13.139648, 45.736860 ], [ 12.348633, 45.367584 ], [ 12.392578, 44.871443 ], [ 12.260742, 44.590467 ], [ 12.612305, 44.087585 ], [ 13.535156, 43.580391 ], [ 14.018555, 42.747012 ], [ 15.161133, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.171875, 41.738528 ], [ 15.908203, 41.541478 ], [ 17.534180, 40.880295 ], [ 18.369141, 40.346544 ], [ 18.500977, 40.178873 ], [ 18.281250, 39.808536 ], [ 17.753906, 40.279526 ], [ 16.875000, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.182617, 39.436193 ], [ 17.050781, 38.891033 ], [ 16.655273, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.688477, 37.892196 ], [ 15.688477, 38.203655 ], [ 15.908203, 38.754083 ], [ 16.127930, 38.959409 ], [ 15.424805, 40.044438 ], [ 14.985352, 40.178873 ], [ 14.721680, 40.613952 ], [ 14.062500, 40.780541 ], [ 13.623047, 41.178654 ], [ 12.875977, 41.244772 ], [ 12.128906, 41.705729 ], [ 11.206055, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.711914, 44.024422 ], [ 8.876953, 44.370987 ], [ 8.437500, 44.245199 ], [ 7.866211, 43.771094 ], [ 7.426758, 43.707594 ], [ 6.547852, 43.133061 ], [ 4.570312, 43.389082 ], [ 3.120117, 43.068888 ], [ 2.988281, 42.455888 ], [ 3.032227, 41.902277 ], [ 2.109375, 41.211722 ], [ 0.791016, 41.013066 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.111689 ], [ -0.263672, 39.300299 ], [ 0.000000, 38.891033 ], [ 0.131836, 38.754083 ], [ 0.000000, 38.651198 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.439974 ], [ -2.153320, 36.668419 ], [ -3.515625, 36.668419 ], [ -3.515625, 43.452919 ], [ -1.889648, 43.421009 ], [ -1.406250, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.241211, 47.070122 ], [ -2.944336, 47.576526 ], [ -3.515625, 47.724545 ], [ -3.515625, 48.864715 ], [ -3.295898, 48.893615 ], [ -1.625977, 48.632909 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.667628 ], [ 1.318359, 50.120578 ], [ 1.625977, 50.958427 ], [ 3.295898, 51.344339 ], [ 3.823242, 51.618017 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.119141, 53.696706 ], [ 7.954102, 53.748711 ], [ 8.129883, 53.514185 ], [ 8.789062, 54.007769 ], [ 8.569336, 54.393352 ], [ 8.525391, 54.952386 ], [ 8.129883, 55.528631 ], [ 8.085938, 56.535258 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.160078 ], [ 9.755859, 57.444949 ], [ 10.590820, 57.727619 ], [ 10.546875, 57.207710 ], [ 10.239258, 56.897004 ], [ 10.371094, 56.607885 ], [ 10.898438, 56.462490 ], [ 10.678711, 56.072035 ], [ 10.371094, 56.194481 ], [ 9.667969, 55.478853 ], [ 9.931641, 54.977614 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.942383, 54.007769 ], [ 11.953125, 54.188155 ], [ 12.524414, 54.470038 ], [ 13.666992, 54.085173 ], [ 14.106445, 53.748711 ], [ 14.809570, 54.059388 ], [ 17.622070, 54.851315 ], [ 18.632812, 54.673831 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.418930 ], [ 19.907227, 54.876607 ], [ 21.269531, 55.178868 ], [ 21.049805, 56.022948 ], [ 21.093750, 56.776808 ], [ 21.577148, 57.421294 ], [ 22.543945, 57.751076 ], [ 23.334961, 57.016814 ], [ 24.125977, 57.016814 ], [ 24.433594, 58.378679 ], [ 24.082031, 58.263287 ], [ 23.422852, 58.608334 ], [ 23.334961, 59.175928 ], [ 24.609375, 59.467408 ], [ 25.883789, 59.601095 ], [ 26.938477, 59.445075 ], [ 27.993164, 59.467408 ], [ 29.135742, 60.020952 ], [ 28.081055, 60.500525 ], [ 26.235352, 60.413852 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.844815 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.716198 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.456055, 63.821288 ], [ 24.741211, 64.904910 ], [ 25.400391, 65.109148 ], [ 25.312500, 65.531171 ], [ 23.906250, 66.000150 ], [ 22.192383, 65.730626 ], [ 21.225586, 65.016506 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.841797, 62.754726 ], [ 17.138672, 61.333540 ], [ 17.841797, 60.630102 ], [ 18.808594, 60.086763 ], [ 17.885742, 58.950008 ], [ 16.831055, 58.722599 ], [ 16.435547, 57.040730 ], [ 15.864258, 56.096556 ], [ 14.677734, 56.194481 ], [ 14.106445, 55.404070 ], [ 12.963867, 55.354135 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.030273, 58.859224 ], [ 10.371094, 59.467408 ], [ 8.393555, 58.309489 ], [ 7.031250, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.317383, 59.667741 ], [ 5.009766, 61.980267 ], [ 5.932617, 62.613562 ], [ 8.569336, 63.450509 ], [ 10.546875, 64.491725 ], [ 12.348633, 65.874725 ], [ 14.765625, 67.809245 ], [ 16.435547, 68.560384 ], [ 19.204102, 69.824471 ], [ 21.401367, 70.259452 ], [ 23.027344, 70.199994 ], [ 24.565430, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.168945, 71.187754 ], [ 31.289062, 70.451508 ], [ 30.014648, 70.185103 ], [ 31.113281, 69.565226 ], [ 32.124023, 69.900118 ], [ 33.793945, 69.302794 ], [ 36.518555, 69.068563 ], [ 40.297852, 67.925140 ], [ 41.044922, 67.458082 ], [ 41.132812, 66.791909 ], [ 40.034180, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.925781, 66.757250 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.892680 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.840668 ], [ 37.133789, 64.339908 ], [ 36.562500, 64.755390 ], [ 37.177734, 65.146115 ], [ 39.594727, 64.529548 ], [ 40.429688, 64.755390 ], [ 39.770508, 65.494741 ], [ 42.099609, 66.478208 ], [ 43.022461, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.208984, 67.958148 ], [ 43.461914, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.571289, 67.558948 ], [ 45.571289, 67.016009 ], [ 46.362305, 66.670387 ], [ 47.900391, 66.878345 ], [ 48.120117, 67.525373 ], [ 50.229492, 67.991108 ], [ 53.701172, 68.863517 ], [ 54.492188, 68.800041 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.089709 ], [ 55.458984, 68.431513 ], [ 57.304688, 68.463800 ], [ 58.798828, 68.879358 ], [ 59.941406, 68.285651 ], [ 61.083984, 68.942607 ], [ 60.029297, 69.519147 ], [ 60.556641, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.907227, 69.240579 ], [ 68.510742, 68.089709 ], [ 69.169922, 68.608521 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.349339 ], [ 66.928711, 69.457554 ], [ 67.280273, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.708984, 71.031249 ], [ 68.554688, 71.938158 ], [ 69.213867, 72.842021 ], [ 69.960938, 73.035419 ], [ 72.597656, 72.777081 ], [ 72.817383, 72.222101 ], [ 71.850586, 71.413177 ], [ 72.465820, 71.088305 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.256836, 67.742759 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.058594, 67.759398 ], [ 74.487305, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.068563 ], [ 73.608398, 69.626510 ], [ 74.399414, 70.627197 ], [ 73.081055, 71.441171 ], [ 74.882812, 72.114445 ], [ 74.663086, 72.829052 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.328950 ], [ 76.376953, 71.159391 ], [ 75.893555, 71.869909 ], [ 77.563477, 72.262310 ], [ 79.672852, 72.315785 ], [ 81.518555, 71.746432 ], [ 80.595703, 72.580829 ], [ 80.507812, 73.652545 ], [ 82.265625, 73.849286 ], [ 84.638672, 73.800318 ], [ 86.835938, 73.934634 ], [ 86.000977, 74.461134 ], [ 87.187500, 75.118222 ], [ 88.330078, 75.140778 ], [ 90.263672, 75.639536 ], [ 92.900391, 75.769747 ], [ 93.251953, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.679688, 75.920199 ], [ 98.920898, 76.444907 ], [ 100.766602, 76.434604 ], [ 101.030273, 76.860810 ], [ 101.997070, 77.283532 ], [ 104.370117, 77.702234 ] ], [ [ 23.818359, 8.667918 ], [ 24.565430, 8.233237 ], [ 23.906250, 8.624472 ], [ 23.818359, 8.667918 ] ] ], [ [ [ 23.686523, 35.710838 ], [ 24.257812, 35.353216 ], [ 25.004883, 35.424868 ], [ 25.751953, 35.353216 ], [ 25.751953, 35.173808 ], [ 26.279297, 35.281501 ], [ 26.147461, 34.994004 ], [ 24.741211, 34.921971 ], [ 24.741211, 35.065973 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ] ] ], [ [ [ 12.392578, 56.121060 ], [ 12.700195, 55.603178 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.354135 ], [ 10.898438, 55.776573 ], [ 12.392578, 56.121060 ] ] ], [ [ [ 15.512695, 38.238180 ], [ 15.161133, 37.439974 ], [ 15.292969, 37.125286 ], [ 15.117188, 36.633162 ], [ 14.326172, 36.985003 ], [ 13.842773, 37.090240 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.754883, 38.030786 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 68.159180, 76.940488 ], [ 68.862305, 76.547523 ], [ 68.203125, 76.237366 ], [ 64.643555, 75.737303 ], [ 61.567383, 75.264239 ], [ 58.491211, 74.307353 ], [ 56.997070, 73.327858 ], [ 55.415039, 72.369105 ], [ 55.634766, 71.538830 ], [ 57.524414, 70.714471 ], [ 56.953125, 70.627197 ], [ 53.657227, 70.757966 ], [ 53.393555, 71.201920 ], [ 51.591797, 71.469124 ], [ 51.459961, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.448242, 73.627789 ], [ 53.525391, 73.751205 ], [ 55.898438, 74.625101 ], [ 55.634766, 75.084326 ], [ 57.875977, 75.606801 ], [ 61.171875, 76.247817 ], [ 64.511719, 76.434604 ], [ 66.225586, 76.810769 ], [ 68.159180, 76.940488 ] ] ], [ [ [ 17.006836, 80.050460 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.954560 ], [ 19.028320, 78.560488 ], [ 18.457031, 77.823323 ], [ 17.578125, 77.636542 ], [ 17.138672, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.379906 ], [ 14.677734, 77.739618 ], [ 13.183594, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.458984, 79.655668 ], [ 13.183594, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.161133, 79.671438 ], [ 15.512695, 80.012423 ], [ 17.006836, 80.050460 ] ] ], [ [ [ 95.932617, 81.248348 ], [ 97.866211, 80.746492 ], [ 100.195312, 79.781164 ], [ 99.931641, 78.878528 ], [ 97.778320, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.424308 ], [ 92.548828, 80.141163 ], [ 91.186523, 80.342262 ], [ 93.779297, 81.024916 ], [ 95.932617, 81.248348 ] ] ], [ [ [ 22.939453, 80.654174 ], [ 25.444336, 80.408388 ], [ 27.421875, 80.058050 ], [ 25.927734, 79.520657 ], [ 23.027344, 79.400085 ], [ 20.083008, 79.568506 ], [ 19.907227, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.358398, 80.320120 ], [ 20.478516, 80.596909 ], [ 21.928711, 80.356995 ], [ 22.939453, 80.654174 ] ] ], [ [ [ -1.977539, 57.680660 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.065430, 55.899956 ], [ -1.098633, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.483398, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.582031, 52.106505 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.571289, 50.764259 ], [ -0.791016, 50.764259 ], [ -2.504883, 50.485474 ], [ -2.944336, 50.708634 ], [ -3.515625, 50.289339 ], [ -3.515625, 51.399206 ], [ -3.427734, 51.426614 ], [ -3.515625, 51.426614 ], [ -3.515625, 53.435719 ], [ -3.076172, 53.409532 ], [ -2.944336, 53.981935 ], [ -3.515625, 54.521081 ], [ -3.515625, 57.633640 ], [ -3.076172, 57.680660 ], [ -1.977539, 57.680660 ] ] ], [ [ [ 138.823242, 76.132430 ], [ 141.459961, 76.090236 ], [ 145.107422, 75.563041 ], [ 144.316406, 74.821934 ], [ 140.625000, 74.844929 ], [ 138.955078, 74.613445 ], [ 136.977539, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.132430 ] ] ], [ [ [ 102.084961, 79.343349 ], [ 102.832031, 79.278140 ], [ 105.380859, 78.716316 ], [ 105.073242, 78.304955 ], [ 99.448242, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.343349 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.261719, 52.749594 ], [ 143.217773, 51.754240 ], [ 143.657227, 50.736455 ], [ 144.667969, 48.980217 ], [ 143.173828, 49.296472 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.830134 ], [ 143.525391, 46.134170 ], [ 142.734375, 46.739861 ], [ 142.075195, 45.951150 ], [ 141.899414, 46.800059 ], [ 142.031250, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.610710 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.748711 ], [ 142.207031, 54.213861 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 50.053711, 80.921494 ], [ 51.503906, 80.696895 ], [ 51.152344, 80.546518 ], [ 48.911133, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.592773, 80.012423 ], [ 46.494141, 80.245949 ], [ 47.065430, 80.560943 ], [ 44.868164, 80.589727 ], [ 46.801758, 80.774716 ], [ 48.339844, 80.781758 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.753556 ], [ 50.053711, 80.921494 ] ] ], [ [ [ 22.895508, 78.455425 ], [ 23.291016, 78.080156 ], [ 24.741211, 77.851100 ], [ 22.500000, 77.446940 ], [ 20.742188, 77.674122 ], [ 21.401367, 77.934055 ], [ 20.830078, 78.251387 ], [ 22.895508, 78.455425 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.227539, 75.342282 ], [ 150.732422, 75.084326 ], [ 149.589844, 74.683250 ], [ 147.963867, 74.775843 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 180.966797, 71.552741 ], [ 182.416992, 71.272595 ], [ 182.329102, 71.130988 ], [ 181.318359, 70.887885 ], [ 180.000000, 70.830248 ], [ 178.901367, 70.786910 ], [ 178.725586, 71.102543 ], [ 180.131836, 71.552741 ], [ 180.966797, 71.552741 ] ] ], [ [ [ 142.075195, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.613281, 73.214013 ], [ 142.075195, 73.201317 ], [ 140.053711, 73.315246 ], [ 139.877930, 73.365639 ], [ 140.800781, 73.763497 ], [ 142.075195, 73.861506 ] ] ], [ [ [ 9.228516, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.164141 ], [ 9.228516, 39.232253 ], [ 8.789062, 38.891033 ], [ 8.437500, 39.164141 ], [ 8.393555, 40.380028 ], [ 8.173828, 40.946714 ], [ 8.701172, 40.913513 ], [ 9.228516, 41.211722 ] ] ], [ [ [ 9.404297, 43.004647 ], [ 9.580078, 42.163403 ], [ 9.228516, 41.376809 ], [ 8.789062, 41.574361 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.617791 ], [ 9.404297, 43.004647 ] ] ], [ [ [ -2.988281, 58.631217 ], [ -3.515625, 58.124320 ], [ -3.515625, 58.608334 ], [ -2.988281, 58.631217 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 34.584961, 35.675147 ], [ 33.881836, 35.245619 ], [ 34.013672, 34.994004 ], [ 33.002930, 34.560859 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.101934 ], [ 32.739258, 35.137879 ], [ 32.783203, 35.137879 ], [ 32.958984, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.584961, 35.675147 ] ] ], [ [ [ 104.370117, 77.702234 ], [ 106.083984, 77.370301 ], [ 104.721680, 77.127825 ], [ 106.962891, 76.970245 ], [ 107.226562, 76.475773 ], [ 108.149414, 76.720223 ], [ 111.093750, 76.710125 ], [ 113.334961, 76.226907 ], [ 114.125977, 75.845169 ], [ 113.906250, 75.331158 ], [ 112.763672, 75.027664 ], [ 110.170898, 74.472903 ], [ 109.379883, 74.176073 ], [ 110.654297, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.027344, 73.971078 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.590586 ], [ 115.576172, 73.751205 ], [ 118.784180, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.222656, 72.971189 ], [ 123.266602, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.035419 ], [ 129.067383, 72.395706 ], [ 128.452148, 71.978988 ], [ 129.726562, 71.187754 ], [ 131.308594, 70.786910 ], [ 132.275391, 71.842539 ], [ 133.857422, 71.385142 ], [ 135.571289, 71.649833 ], [ 137.504883, 71.343013 ], [ 138.251953, 71.622143 ], [ 139.877930, 71.483086 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.501953, 72.195246 ], [ 150.336914, 71.608283 ], [ 152.973633, 70.844673 ], [ 157.016602, 71.031249 ], [ 158.994141, 70.859087 ], [ 159.829102, 70.451508 ], [ 159.697266, 69.718107 ], [ 160.927734, 69.442128 ], [ 162.290039, 69.641804 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.580563 ], [ 169.584961, 68.688521 ], [ 170.815430, 69.005675 ], [ 170.024414, 69.657086 ], [ 170.463867, 70.095529 ], [ 173.627930, 69.824471 ], [ 175.737305, 69.869892 ], [ 178.593750, 69.395783 ], [ 180.000000, 68.958391 ], [ 182.460938, 68.204212 ], [ 183.515625, 67.809245 ], [ 183.515625, 65.403445 ], [ 182.768555, 65.512963 ], [ 181.625977, 65.385147 ], [ 181.098633, 65.748683 ], [ 181.318359, 66.107170 ], [ 180.131836, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.725586, 64.529548 ], [ 177.407227, 64.605038 ], [ 178.330078, 64.072200 ], [ 178.901367, 63.253412 ], [ 179.384766, 62.975198 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.512318 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.648162 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.326948 ], [ 170.332031, 59.888937 ], [ 168.881836, 60.565379 ], [ 166.289062, 59.778522 ], [ 165.849609, 60.152442 ], [ 164.882812, 59.734253 ], [ 163.520508, 59.866883 ], [ 163.212891, 59.220934 ], [ 162.026367, 58.240164 ], [ 162.070312, 57.844751 ], [ 163.212891, 57.610107 ], [ 163.081055, 56.170023 ], [ 162.114258, 56.121060 ], [ 161.718750, 55.279115 ], [ 162.114258, 54.851315 ], [ 160.356445, 54.342149 ], [ 160.004883, 53.199452 ], [ 158.510742, 52.961875 ], [ 158.247070, 51.944265 ], [ 156.796875, 51.013755 ], [ 156.401367, 51.699800 ], [ 156.005859, 53.146770 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.821355 ], [ 158.378906, 58.054632 ], [ 160.136719, 59.310768 ], [ 161.894531, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.487305, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.136719, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.756395 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.881942 ], [ 151.259766, 58.790978 ], [ 151.347656, 59.512029 ], [ 149.765625, 59.645540 ], [ 148.535156, 59.153403 ], [ 145.502930, 59.333189 ], [ 142.207031, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.131836, 54.724620 ], [ 136.713867, 54.597528 ], [ 137.197266, 53.981935 ], [ 138.164062, 53.748711 ], [ 138.823242, 54.265224 ], [ 139.921875, 54.188155 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.234407 ], [ 140.493164, 50.035974 ], [ 140.053711, 48.458352 ], [ 138.559570, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.389082 ], [ 133.549805, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.957031, 42.553080 ], [ 130.781250, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.934977 ], [ 129.682617, 41.607228 ], [ 129.726562, 40.880295 ], [ 129.199219, 40.647304 ], [ 128.627930, 40.178873 ], [ 127.968750, 40.010787 ], [ 127.529297, 39.740986 ], [ 127.485352, 39.334297 ], [ 127.397461, 39.198205 ], [ 127.792969, 39.061849 ], [ 128.364258, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.462891, 36.774092 ], [ 129.462891, 35.639441 ], [ 129.111328, 35.065973 ], [ 128.188477, 34.885931 ], [ 127.397461, 34.488448 ], [ 126.474609, 34.379713 ], [ 126.386719, 34.921971 ], [ 126.562500, 35.675147 ], [ 126.123047, 36.738884 ], [ 126.870117, 36.879621 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.926868 ], [ 125.551758, 37.753344 ], [ 125.288086, 37.683820 ], [ 125.244141, 37.857507 ], [ 124.716797, 38.099983 ], [ 124.980469, 38.548165 ], [ 125.244141, 38.651198 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.332031, 39.537940 ], [ 124.760742, 39.673370 ], [ 124.277344, 39.943436 ], [ 122.871094, 39.639538 ], [ 122.124023, 39.164141 ], [ 121.069336, 38.891033 ], [ 121.596680, 39.368279 ], [ 121.376953, 39.740986 ], [ 122.167969, 40.413496 ], [ 121.640625, 40.946714 ], [ 120.761719, 40.580585 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.198205 ], [ 117.553711, 38.719805 ], [ 118.081055, 38.065392 ], [ 118.872070, 37.892196 ], [ 118.916016, 37.439974 ], [ 119.707031, 37.160317 ], [ 120.805664, 37.857507 ], [ 121.728516, 37.474858 ], [ 122.343750, 37.439974 ], [ 122.519531, 36.914764 ], [ 121.113281, 36.633162 ], [ 120.629883, 36.102376 ], [ 119.663086, 35.603719 ], [ 119.135742, 34.921971 ], [ 120.234375, 34.343436 ], [ 120.629883, 33.358062 ], [ 121.245117, 32.472695 ], [ 121.904297, 31.690782 ], [ 121.904297, 30.939924 ], [ 121.245117, 30.675715 ], [ 121.508789, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.948242, 28.998532 ], [ 121.684570, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.575195, 25.720735 ], [ 118.652344, 24.527135 ], [ 115.883789, 22.796439 ], [ 114.785156, 22.674847 ], [ 114.169922, 22.228090 ], [ 113.818359, 22.553147 ], [ 113.247070, 22.065278 ], [ 111.840820, 21.534847 ], [ 110.786133, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.907227, 20.262197 ], [ 109.643555, 21.002471 ], [ 109.863281, 21.412162 ], [ 108.544922, 21.698265 ], [ 108.061523, 21.534847 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.678293 ], [ 108.281250, 16.088042 ], [ 108.896484, 15.284185 ], [ 109.335938, 13.410994 ], [ 109.204102, 11.652236 ], [ 108.369141, 11.005904 ], [ 107.226562, 10.358151 ], [ 106.391602, 9.535749 ], [ 105.161133, 8.581021 ], [ 104.809570, 9.232249 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.617418 ], [ 103.095703, 11.135287 ], [ 102.568359, 12.168226 ], [ 101.689453, 12.640338 ], [ 100.854492, 12.640338 ], [ 100.986328, 13.410994 ], [ 100.107422, 13.410994 ], [ 100.019531, 12.297068 ], [ 99.140625, 9.968851 ], [ 99.228516, 9.232249 ], [ 99.887695, 9.188870 ], [ 100.283203, 8.276727 ], [ 100.458984, 7.449624 ], [ 101.030273, 6.839170 ], [ 101.645508, 6.751896 ], [ 102.128906, 6.227934 ], [ 102.392578, 6.140555 ], [ 102.963867, 5.528511 ], [ 103.403320, 4.872048 ], [ 103.447266, 4.171115 ], [ 103.315430, 3.732708 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.504085 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.274309 ], [ 103.535156, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.293945, 3.250209 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.309766 ], [ 100.327148, 6.053161 ], [ 100.107422, 6.446318 ], [ 99.711914, 6.839170 ], [ 99.536133, 7.362467 ], [ 98.525391, 8.363693 ], [ 98.349609, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.261719, 8.971897 ], [ 98.569336, 9.925566 ], [ 98.437500, 10.660608 ], [ 98.745117, 11.436955 ], [ 98.437500, 12.039321 ], [ 98.525391, 13.111580 ], [ 98.085938, 13.624633 ], [ 97.778320, 14.817371 ], [ 97.602539, 16.088042 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.361328, 15.707663 ], [ 94.790039, 15.792254 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.266728 ], [ 94.306641, 18.229351 ], [ 93.559570, 19.352611 ], [ 93.647461, 19.725342 ], [ 93.076172, 19.849394 ], [ 92.373047, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.698265 ], [ 91.845703, 22.187405 ], [ 91.406250, 22.755921 ], [ 90.483398, 22.796439 ], [ 90.571289, 22.390714 ], [ 90.263672, 21.820708 ], [ 89.868164, 22.024546 ], [ 89.692383, 21.861499 ], [ 89.033203, 22.065278 ], [ 88.901367, 21.698265 ], [ 88.198242, 21.698265 ], [ 86.967773, 21.493964 ], [ 87.055664, 20.756114 ], [ 86.484375, 20.138470 ], [ 85.078125, 19.476950 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.014768 ], [ 82.177734, 16.551962 ], [ 80.771484, 15.961329 ], [ 80.332031, 15.876809 ], [ 80.024414, 15.114553 ], [ 80.244141, 13.838080 ], [ 80.288086, 13.025966 ], [ 79.848633, 12.039321 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.535749 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.928487 ], [ 77.958984, 8.233237 ], [ 77.519531, 7.972198 ], [ 76.596680, 8.885072 ], [ 75.761719, 11.307708 ], [ 75.410156, 11.781325 ], [ 74.882812, 12.726084 ], [ 74.443359, 14.604847 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.186678 ], [ 72.817383, 20.427013 ], [ 72.641602, 21.371244 ], [ 71.191406, 20.756114 ], [ 70.488281, 20.879343 ], [ 69.169922, 22.105999 ], [ 69.653320, 22.431340 ], [ 69.345703, 22.836946 ], [ 68.159180, 23.684774 ], [ 67.456055, 23.926013 ], [ 67.148438, 24.647017 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.204941 ], [ 61.479492, 25.085599 ], [ 58.535156, 25.601902 ], [ 57.392578, 25.720735 ], [ 56.953125, 26.980829 ], [ 56.513672, 27.137368 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.470573 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.566721 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.806174 ], [ 50.097656, 30.145127 ], [ 49.570312, 29.993002 ], [ 48.955078, 30.297018 ], [ 48.559570, 29.916852 ], [ 47.988281, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.305561 ], [ 48.823242, 27.683528 ], [ 49.306641, 27.449790 ], [ 49.482422, 27.098254 ], [ 50.141602, 26.706360 ], [ 50.229492, 26.273714 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.601902 ], [ 50.537109, 25.324167 ], [ 50.800781, 24.766785 ], [ 50.756836, 25.482951 ], [ 51.020508, 25.997550 ], [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.591797, 25.204941 ], [ 51.372070, 24.607069 ], [ 51.591797, 24.246965 ], [ 51.767578, 24.287027 ], [ 51.811523, 24.006326 ], [ 52.558594, 24.166802 ], [ 54.008789, 24.126702 ], [ 55.458984, 25.443275 ], [ 56.381836, 26.391870 ], [ 56.469727, 26.313113 ], [ 56.381836, 25.878994 ], [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 56.865234, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.139648, 23.765237 ], [ 58.710938, 23.563987 ], [ 59.458008, 22.674847 ], [ 59.809570, 22.512557 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.412162 ], [ 58.842773, 21.125498 ], [ 58.491211, 20.427013 ], [ 58.051758, 20.468189 ], [ 57.832031, 20.262197 ], [ 57.656250, 19.725342 ], [ 57.788086, 19.062118 ], [ 57.700195, 18.937464 ], [ 57.216797, 18.937464 ], [ 56.601562, 18.562947 ], [ 56.513672, 18.104087 ], [ 56.293945, 17.895114 ], [ 55.678711, 17.895114 ], [ 55.283203, 17.644022 ], [ 55.283203, 17.224758 ], [ 54.799805, 16.930705 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.129883, 16.636192 ], [ 52.382812, 16.383391 ], [ 52.207031, 15.919074 ], [ 52.163086, 15.580711 ], [ 51.152344, 15.156974 ], [ 49.570312, 14.689881 ], [ 48.691406, 14.008696 ], [ 48.251953, 13.966054 ], [ 47.944336, 14.008696 ], [ 47.373047, 13.581921 ], [ 46.713867, 13.410994 ], [ 45.615234, 13.282719 ], [ 45.395508, 13.025966 ], [ 45.131836, 12.940322 ], [ 45.000000, 12.683215 ], [ 44.516602, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.505859, 12.640338 ], [ 43.242188, 13.239945 ], [ 43.242188, 13.752725 ], [ 43.110352, 14.051331 ], [ 42.890625, 14.817371 ], [ 42.626953, 15.199386 ], [ 42.802734, 15.241790 ], [ 42.714844, 15.707663 ], [ 42.846680, 15.919074 ], [ 42.670898, 16.762468 ], [ 42.363281, 17.056785 ], [ 42.275391, 17.476432 ], [ 41.748047, 17.811456 ], [ 41.220703, 18.687879 ], [ 40.957031, 19.476950 ], [ 40.253906, 20.179724 ], [ 39.814453, 20.344627 ], [ 39.155273, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.593726 ], [ 38.496094, 23.684774 ], [ 38.012695, 24.086589 ], [ 37.485352, 24.287027 ], [ 37.177734, 24.846565 ], [ 37.221680, 25.085599 ], [ 36.914062, 25.601902 ], [ 36.650391, 25.839449 ], [ 36.254883, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.343875 ], [ 34.936523, 29.496988 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.343065 ], [ 34.145508, 27.839076 ], [ 33.925781, 27.644606 ], [ 33.134766, 28.420391 ], [ 32.431641, 29.840644 ], [ 32.343750, 29.764377 ], [ 32.739258, 28.690588 ], [ 33.354492, 27.683528 ], [ 34.101562, 26.155438 ], [ 34.804688, 25.045792 ], [ 35.683594, 23.926013 ], [ 35.507812, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.694336, 22.187405 ], [ 36.870117, 21.983801 ], [ 37.177734, 21.002471 ], [ 36.958008, 20.838278 ], [ 37.133789, 19.808054 ], [ 37.485352, 18.604601 ], [ 38.408203, 17.978733 ], [ 38.979492, 16.846605 ], [ 39.287109, 15.919074 ], [ 39.814453, 15.453680 ], [ 41.176758, 14.477234 ], [ 42.583008, 12.983148 ], [ 43.066406, 12.683215 ], [ 43.330078, 12.382928 ], [ 43.286133, 11.953349 ], [ 42.714844, 11.738302 ], [ 43.461914, 11.264612 ], [ 43.681641, 10.876465 ], [ 44.121094, 10.444598 ], [ 44.604492, 10.444598 ], [ 45.571289, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.548828, 11.135287 ], [ 48.032227, 11.178402 ], [ 48.383789, 11.393879 ], [ 49.262695, 11.436955 ], [ 50.273438, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ], [ 51.064453, 10.660608 ], [ 50.844727, 10.271681 ], [ 50.537109, 9.188870 ], [ 49.438477, 6.795535 ], [ 48.603516, 5.353521 ], [ 47.724609, 4.214943 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.064982 ], [ 44.077148, 1.054628 ], [ 43.154297, 0.307616 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.649414, -2.504085 ], [ 40.253906, -2.591889 ], [ 40.122070, -3.294082 ], [ 39.946289, -3.513421 ], [ 37.749023, -3.513421 ], [ 37.705078, -3.118576 ], [ 33.925781, -0.966751 ], [ 30.761719, -1.010690 ], [ 29.838867, -1.450040 ], [ 29.575195, -1.362176 ], [ 29.311523, -1.625758 ], [ 29.267578, -2.196727 ], [ 29.135742, -2.284551 ], [ 29.047852, -2.855263 ], [ 29.267578, -3.294082 ], [ 29.267578, -3.513421 ], [ 15.996094, -3.513421 ], [ 15.996094, -2.723583 ], [ 16.391602, -1.757537 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.709961, 0.000000 ], [ 17.841797, 0.307616 ], [ 17.753906, 0.834931 ], [ 17.885742, 1.757537 ], [ 18.105469, 2.372369 ], [ 18.413086, 2.899153 ], [ 18.457031, 3.513421 ], [ 17.797852, 3.557283 ], [ 17.138672, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.952148, 1.713612 ], [ 14.326172, 2.240640 ], [ 13.095703, 2.284551 ], [ 12.963867, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.293945, 2.240640 ], [ 11.293945, 1.054628 ], [ 9.843750, 1.054628 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.142502 ], [ 9.667969, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.964844, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.481445, 4.477856 ], [ 8.481445, 4.784469 ], [ 7.470703, 4.390229 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.258768 ], [ 5.361328, 4.872048 ], [ 5.053711, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.140555 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.527344, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.977539, 4.696879 ], [ -2.856445, 5.003394 ], [ -3.515625, 5.047171 ], [ -3.515625, 35.389050 ], [ -2.592773, 35.173808 ], [ -2.153320, 35.173808 ], [ -1.230469, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.960223 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.597889 ], [ 3.164062, 36.774092 ], [ 4.833984, 36.879621 ], [ 5.317383, 36.703660 ], [ 6.284180, 37.125286 ], [ 7.338867, 37.125286 ], [ 7.734375, 36.879621 ], [ 8.437500, 36.949892 ], [ 9.492188, 37.335224 ], [ 10.195312, 37.230328 ], [ 10.195312, 36.738884 ], [ 11.030273, 37.090240 ], [ 11.118164, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.942383, 35.710838 ], [ 10.810547, 34.849875 ], [ 10.151367, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.760882 ], [ 11.118164, 33.284620 ], [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ], [ 13.095703, 32.879587 ], [ 13.930664, 32.694866 ], [ 15.249023, 32.249974 ], [ 15.732422, 31.391158 ], [ 16.611328, 31.165810 ], [ 18.017578, 30.751278 ], [ 19.072266, 30.259067 ], [ 19.555664, 30.524413 ], [ 20.039062, 30.977609 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.874023, 32.694866 ], [ 21.533203, 32.842674 ], [ 22.895508, 32.620870 ], [ 23.247070, 32.175612 ], [ 23.598633, 32.175612 ], [ 23.950195, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.180664, 31.578535 ], [ 26.499023, 31.578535 ], [ 28.916016, 30.864510 ], [ 29.663086, 31.203405 ], [ 30.102539, 31.466154 ], [ 30.981445, 31.541090 ], [ 31.684570, 31.428663 ], [ 31.948242, 30.939924 ], [ 32.211914, 31.240985 ], [ 33.002930, 31.015279 ], [ 33.793945, 30.977609 ], [ 34.277344, 31.203405 ], [ 34.541016, 31.541090 ], [ 34.497070, 31.615966 ], [ 34.760742, 32.063956 ], [ 34.936523, 32.842674 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.633208 ], [ 35.903320, 35.424868 ], [ 36.166992, 35.817813 ], [ 35.771484, 36.279707 ], [ 36.166992, 36.633162 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.809285 ], [ 34.013672, 36.208823 ], [ 32.519531, 36.102376 ], [ 31.684570, 36.633162 ], [ 30.629883, 36.668419 ], [ 30.410156, 36.244273 ], [ 29.707031, 36.137875 ], [ 28.740234, 36.668419 ], [ 27.641602, 36.668419 ], [ 27.070312, 37.649034 ], [ 26.323242, 38.203655 ], [ 26.806641, 38.993572 ], [ 26.191406, 39.470125 ], [ 27.290039, 40.413496 ], [ 28.828125, 40.446947 ], [ 29.223633, 41.211722 ], [ 31.157227, 41.079351 ], [ 32.343750, 41.738528 ], [ 33.530273, 42.032974 ], [ 35.156250, 42.032974 ], [ 36.914062, 41.343825 ], [ 38.364258, 40.946714 ], [ 39.506836, 41.112469 ], [ 40.385742, 41.013066 ], [ 41.572266, 41.541478 ], [ 41.704102, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.004647 ], [ 40.341797, 43.133061 ], [ 39.946289, 43.421009 ], [ 38.671875, 44.276671 ], [ 37.529297, 44.653024 ], [ 36.694336, 45.243953 ], [ 37.397461, 45.398450 ], [ 38.232422, 46.225453 ], [ 37.661133, 46.649436 ], [ 39.155273, 47.040182 ], [ 39.111328, 47.249407 ], [ 38.232422, 47.100045 ], [ 37.441406, 47.010226 ], [ 36.782227, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.980469, 46.286224 ], [ 35.024414, 45.644768 ], [ 35.507812, 45.398450 ], [ 36.518555, 45.460131 ], [ 36.342773, 45.120053 ], [ 35.244141, 44.933696 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.559163 ], [ 33.530273, 45.026950 ], [ 32.475586, 45.336702 ], [ 32.651367, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.310547, 46.073231 ], [ 31.728516, 46.346928 ], [ 31.684570, 46.709736 ], [ 30.761719, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.619141, 45.305803 ], [ 29.619141, 45.026950 ], [ 29.135742, 44.809122 ], [ 28.828125, 44.902578 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.685547, 42.585444 ], [ 27.993164, 42.000325 ], [ 28.125000, 41.607228 ], [ 29.003906, 41.310824 ], [ 28.828125, 41.046217 ], [ 27.641602, 41.013066 ], [ 26.367188, 40.145289 ], [ 26.059570, 40.613952 ], [ 26.059570, 40.813809 ], [ 25.444336, 40.847060 ], [ 24.916992, 40.946714 ], [ 23.730469, 40.680638 ], [ 24.389648, 40.111689 ], [ 23.906250, 39.977120 ], [ 23.334961, 39.943436 ], [ 22.807617, 40.480381 ], [ 22.631836, 40.245992 ], [ 22.851562, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.983398, 38.959409 ], [ 23.510742, 38.513788 ], [ 24.038086, 38.203655 ], [ 24.038086, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.422852, 37.405074 ], [ 22.763672, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.500000, 36.421282 ], [ 21.665039, 36.844461 ], [ 21.313477, 37.649034 ], [ 21.137695, 38.307181 ], [ 20.214844, 39.334297 ], [ 20.170898, 39.639538 ], [ 19.995117, 39.707187 ], [ 19.951172, 39.909736 ], [ 19.423828, 40.245992 ], [ 19.335938, 40.713956 ], [ 19.423828, 41.409776 ], [ 19.555664, 41.705729 ], [ 19.379883, 41.869561 ], [ 19.160156, 41.967659 ], [ 18.896484, 42.293564 ], [ 17.490234, 42.843751 ], [ 16.918945, 43.197167 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.380859, 44.308127 ], [ 14.941406, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.974609, 44.809122 ], [ 13.666992, 45.151053 ], [ 13.666992, 45.490946 ], [ 13.930664, 45.583290 ], [ 13.139648, 45.736860 ], [ 12.348633, 45.367584 ], [ 12.392578, 44.871443 ], [ 12.260742, 44.590467 ], [ 12.612305, 44.087585 ], [ 13.535156, 43.580391 ], [ 14.018555, 42.747012 ], [ 15.161133, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.171875, 41.738528 ], [ 15.908203, 41.541478 ], [ 17.534180, 40.880295 ], [ 18.369141, 40.346544 ], [ 18.500977, 40.178873 ], [ 18.281250, 39.808536 ], [ 17.753906, 40.279526 ], [ 16.875000, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.182617, 39.436193 ], [ 17.050781, 38.891033 ], [ 16.655273, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.688477, 37.892196 ], [ 15.688477, 38.203655 ], [ 15.908203, 38.754083 ], [ 16.127930, 38.959409 ], [ 15.424805, 40.044438 ], [ 14.985352, 40.178873 ], [ 14.721680, 40.613952 ], [ 14.062500, 40.780541 ], [ 13.623047, 41.178654 ], [ 12.875977, 41.244772 ], [ 12.128906, 41.705729 ], [ 11.206055, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.711914, 44.024422 ], [ 8.876953, 44.370987 ], [ 8.437500, 44.245199 ], [ 7.866211, 43.771094 ], [ 7.426758, 43.707594 ], [ 6.547852, 43.133061 ], [ 4.570312, 43.389082 ], [ 3.120117, 43.068888 ], [ 2.988281, 42.455888 ], [ 3.032227, 41.902277 ], [ 2.109375, 41.211722 ], [ 0.791016, 41.013066 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.111689 ], [ -0.263672, 39.300299 ], [ 0.000000, 38.891033 ], [ 0.131836, 38.754083 ], [ 0.000000, 38.651198 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.439974 ], [ -2.153320, 36.668419 ], [ -3.515625, 36.668419 ], [ -3.515625, 43.452919 ], [ -1.889648, 43.421009 ], [ -1.406250, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.241211, 47.070122 ], [ -2.944336, 47.576526 ], [ -3.515625, 47.724545 ], [ -3.515625, 48.864715 ], [ -3.295898, 48.893615 ], [ -1.625977, 48.632909 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.667628 ], [ 1.318359, 50.120578 ], [ 1.625977, 50.958427 ], [ 3.295898, 51.344339 ], [ 3.823242, 51.618017 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.119141, 53.696706 ], [ 7.954102, 53.748711 ], [ 8.129883, 53.514185 ], [ 8.789062, 54.007769 ], [ 8.569336, 54.393352 ], [ 8.525391, 54.952386 ], [ 8.129883, 55.528631 ], [ 8.085938, 56.535258 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.160078 ], [ 9.755859, 57.444949 ], [ 10.590820, 57.727619 ], [ 10.546875, 57.207710 ], [ 10.239258, 56.897004 ], [ 10.371094, 56.607885 ], [ 10.898438, 56.462490 ], [ 10.678711, 56.072035 ], [ 10.371094, 56.194481 ], [ 9.667969, 55.478853 ], [ 9.931641, 54.977614 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.942383, 54.007769 ], [ 11.953125, 54.188155 ], [ 12.524414, 54.470038 ], [ 13.666992, 54.085173 ], [ 14.106445, 53.748711 ], [ 14.809570, 54.059388 ], [ 17.622070, 54.851315 ], [ 18.632812, 54.673831 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.418930 ], [ 19.907227, 54.876607 ], [ 21.269531, 55.178868 ], [ 21.049805, 56.022948 ], [ 21.093750, 56.776808 ], [ 21.577148, 57.421294 ], [ 22.543945, 57.751076 ], [ 23.334961, 57.016814 ], [ 24.125977, 57.016814 ], [ 24.433594, 58.378679 ], [ 24.082031, 58.263287 ], [ 23.422852, 58.608334 ], [ 23.334961, 59.175928 ], [ 24.609375, 59.467408 ], [ 25.883789, 59.601095 ], [ 26.938477, 59.445075 ], [ 27.993164, 59.467408 ], [ 29.135742, 60.020952 ], [ 28.081055, 60.500525 ], [ 26.235352, 60.413852 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.844815 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.716198 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.456055, 63.821288 ], [ 24.741211, 64.904910 ], [ 25.400391, 65.109148 ], [ 25.312500, 65.531171 ], [ 23.906250, 66.000150 ], [ 22.192383, 65.730626 ], [ 21.225586, 65.016506 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.841797, 62.754726 ], [ 17.138672, 61.333540 ], [ 17.841797, 60.630102 ], [ 18.808594, 60.086763 ], [ 17.885742, 58.950008 ], [ 16.831055, 58.722599 ], [ 16.435547, 57.040730 ], [ 15.864258, 56.096556 ], [ 14.677734, 56.194481 ], [ 14.106445, 55.404070 ], [ 12.963867, 55.354135 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.030273, 58.859224 ], [ 10.371094, 59.467408 ], [ 8.393555, 58.309489 ], [ 7.031250, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.317383, 59.667741 ], [ 5.009766, 61.980267 ], [ 5.932617, 62.613562 ], [ 8.569336, 63.450509 ], [ 10.546875, 64.491725 ], [ 12.348633, 65.874725 ], [ 14.765625, 67.809245 ], [ 16.435547, 68.560384 ], [ 19.204102, 69.824471 ], [ 21.401367, 70.259452 ], [ 23.027344, 70.199994 ], [ 24.565430, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.168945, 71.187754 ], [ 31.289062, 70.451508 ], [ 30.014648, 70.185103 ], [ 31.113281, 69.565226 ], [ 32.124023, 69.900118 ], [ 33.793945, 69.302794 ], [ 36.518555, 69.068563 ], [ 40.297852, 67.925140 ], [ 41.044922, 67.458082 ], [ 41.132812, 66.791909 ], [ 40.034180, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.925781, 66.757250 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.892680 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.840668 ], [ 37.133789, 64.339908 ], [ 36.562500, 64.755390 ], [ 37.177734, 65.146115 ], [ 39.594727, 64.529548 ], [ 40.429688, 64.755390 ], [ 39.770508, 65.494741 ], [ 42.099609, 66.478208 ], [ 43.022461, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.208984, 67.958148 ], [ 43.461914, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.571289, 67.558948 ], [ 45.571289, 67.016009 ], [ 46.362305, 66.670387 ], [ 47.900391, 66.878345 ], [ 48.120117, 67.525373 ], [ 50.229492, 67.991108 ], [ 53.701172, 68.863517 ], [ 54.492188, 68.800041 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.089709 ], [ 55.458984, 68.431513 ], [ 57.304688, 68.463800 ], [ 58.798828, 68.879358 ], [ 59.941406, 68.285651 ], [ 61.083984, 68.942607 ], [ 60.029297, 69.519147 ], [ 60.556641, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.907227, 69.240579 ], [ 68.510742, 68.089709 ], [ 69.169922, 68.608521 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.349339 ], [ 66.928711, 69.457554 ], [ 67.280273, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.708984, 71.031249 ], [ 68.554688, 71.938158 ], [ 69.213867, 72.842021 ], [ 69.960938, 73.035419 ], [ 72.597656, 72.777081 ], [ 72.817383, 72.222101 ], [ 71.850586, 71.413177 ], [ 72.465820, 71.088305 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.256836, 67.742759 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.058594, 67.759398 ], [ 74.487305, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.068563 ], [ 73.608398, 69.626510 ], [ 74.399414, 70.627197 ], [ 73.081055, 71.441171 ], [ 74.882812, 72.114445 ], [ 74.663086, 72.829052 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.328950 ], [ 76.376953, 71.159391 ], [ 75.893555, 71.869909 ], [ 77.563477, 72.262310 ], [ 79.672852, 72.315785 ], [ 81.518555, 71.746432 ], [ 80.595703, 72.580829 ], [ 80.507812, 73.652545 ], [ 82.265625, 73.849286 ], [ 84.638672, 73.800318 ], [ 86.835938, 73.934634 ], [ 86.000977, 74.461134 ], [ 87.187500, 75.118222 ], [ 88.330078, 75.140778 ], [ 90.263672, 75.639536 ], [ 92.900391, 75.769747 ], [ 93.251953, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.679688, 75.920199 ], [ 98.920898, 76.444907 ], [ 100.766602, 76.434604 ], [ 101.030273, 76.860810 ], [ 101.997070, 77.283532 ], [ 104.370117, 77.702234 ] ], [ [ 23.818359, 8.667918 ], [ 24.565430, 8.233237 ], [ 23.906250, 8.624472 ], [ 23.818359, 8.667918 ] ], [ [ 51.196289, 47.040182 ], [ 50.053711, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.647461, 45.798170 ], [ 47.680664, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.592773, 43.644026 ], [ 47.504883, 42.972502 ], [ 49.130859, 41.277806 ], [ 49.614258, 40.580585 ], [ 50.097656, 40.513799 ], [ 50.405273, 40.245992 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.867188, 38.822591 ], [ 48.867188, 38.307181 ], [ 49.218750, 37.579413 ], [ 50.141602, 37.370157 ], [ 50.844727, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.833008, 36.949892 ], [ 53.920898, 37.195331 ], [ 53.745117, 37.892196 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.876953, 40.613952 ], [ 54.755859, 40.946714 ], [ 54.008789, 41.541478 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.822266, 41.145570 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.514648, 42.779275 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.361328, 44.276671 ], [ 50.317383, 44.621754 ], [ 51.284180, 44.527843 ], [ 51.328125, 45.243953 ], [ 52.163086, 45.398450 ], [ 53.041992, 45.243953 ], [ 53.217773, 46.225453 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.800059 ], [ 51.196289, 47.040182 ] ] ], [ [ [ 23.686523, 35.710838 ], [ 24.257812, 35.353216 ], [ 25.004883, 35.424868 ], [ 25.751953, 35.353216 ], [ 25.751953, 35.173808 ], [ 26.279297, 35.281501 ], [ 26.147461, 34.994004 ], [ 24.741211, 34.921971 ], [ 24.741211, 35.065973 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ] ] ], [ [ [ 117.114258, 6.926427 ], [ 117.641602, 6.402648 ], [ 117.685547, 5.965754 ], [ 119.179688, 5.397273 ], [ 119.091797, 5.003394 ], [ 118.432617, 4.959615 ], [ 118.608398, 4.477856 ], [ 117.905273, 4.127285 ], [ 117.026367, 4.302591 ], [ 115.883789, 4.302591 ], [ 115.532227, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.609375, 1.450040 ], [ 113.818359, 1.230374 ], [ 112.851562, 1.493971 ], [ 112.368164, 1.406109 ], [ 111.796875, 0.922812 ], [ 111.181641, 0.966751 ], [ 110.522461, 0.790990 ], [ 109.819336, 1.318243 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.357422, 2.679687 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 114.213867, 4.521666 ], [ 114.653320, 3.995781 ], [ 114.873047, 4.346411 ], [ 115.356445, 4.302591 ], [ 115.444336, 5.441022 ], [ 116.235352, 6.140555 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.926427 ] ] ], [ [ [ 12.392578, 56.121060 ], [ 12.700195, 55.603178 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.354135 ], [ 10.898438, 55.776573 ], [ 12.392578, 56.121060 ] ] ], [ [ [ 15.512695, 38.238180 ], [ 15.161133, 37.439974 ], [ 15.292969, 37.125286 ], [ 15.117188, 36.633162 ], [ 14.326172, 36.985003 ], [ 13.842773, 37.090240 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.754883, 38.030786 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 68.159180, 76.940488 ], [ 68.862305, 76.547523 ], [ 68.203125, 76.237366 ], [ 64.643555, 75.737303 ], [ 61.567383, 75.264239 ], [ 58.491211, 74.307353 ], [ 56.997070, 73.327858 ], [ 55.415039, 72.369105 ], [ 55.634766, 71.538830 ], [ 57.524414, 70.714471 ], [ 56.953125, 70.627197 ], [ 53.657227, 70.757966 ], [ 53.393555, 71.201920 ], [ 51.591797, 71.469124 ], [ 51.459961, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.448242, 73.627789 ], [ 53.525391, 73.751205 ], [ 55.898438, 74.625101 ], [ 55.634766, 75.084326 ], [ 57.875977, 75.606801 ], [ 61.171875, 76.247817 ], [ 64.511719, 76.434604 ], [ 66.225586, 76.810769 ], [ 68.159180, 76.940488 ] ] ], [ [ [ 17.006836, 80.050460 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.954560 ], [ 19.028320, 78.560488 ], [ 18.457031, 77.823323 ], [ 17.578125, 77.636542 ], [ 17.138672, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.379906 ], [ 14.677734, 77.739618 ], [ 13.183594, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.458984, 79.655668 ], [ 13.183594, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.161133, 79.671438 ], [ 15.512695, 80.012423 ], [ 17.006836, 80.050460 ] ] ], [ [ [ 95.932617, 81.248348 ], [ 97.866211, 80.746492 ], [ 100.195312, 79.781164 ], [ 99.931641, 78.878528 ], [ 97.778320, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.424308 ], [ 92.548828, 80.141163 ], [ 91.186523, 80.342262 ], [ 93.779297, 81.024916 ], [ 95.932617, 81.248348 ] ] ], [ [ [ 22.939453, 80.654174 ], [ 25.444336, 80.408388 ], [ 27.421875, 80.058050 ], [ 25.927734, 79.520657 ], [ 23.027344, 79.400085 ], [ 20.083008, 79.568506 ], [ 19.907227, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.358398, 80.320120 ], [ 20.478516, 80.596909 ], [ 21.928711, 80.356995 ], [ 22.939453, 80.654174 ] ] ], [ [ [ -1.977539, 57.680660 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.065430, 55.899956 ], [ -1.098633, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.483398, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.582031, 52.106505 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.571289, 50.764259 ], [ -0.791016, 50.764259 ], [ -2.504883, 50.485474 ], [ -2.944336, 50.708634 ], [ -3.515625, 50.289339 ], [ -3.515625, 51.399206 ], [ -3.427734, 51.426614 ], [ -3.515625, 51.426614 ], [ -3.515625, 53.435719 ], [ -3.076172, 53.409532 ], [ -2.944336, 53.981935 ], [ -3.515625, 54.521081 ], [ -3.515625, 57.633640 ], [ -3.076172, 57.680660 ], [ -1.977539, 57.680660 ] ] ], [ [ [ 138.823242, 76.132430 ], [ 141.459961, 76.090236 ], [ 145.107422, 75.563041 ], [ 144.316406, 74.821934 ], [ 140.625000, 74.844929 ], [ 138.955078, 74.613445 ], [ 136.977539, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.132430 ] ] ], [ [ [ 102.084961, 79.343349 ], [ 102.832031, 79.278140 ], [ 105.380859, 78.716316 ], [ 105.073242, 78.304955 ], [ 99.448242, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.343349 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.261719, 52.749594 ], [ 143.217773, 51.754240 ], [ 143.657227, 50.736455 ], [ 144.667969, 48.980217 ], [ 143.173828, 49.296472 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.830134 ], [ 143.525391, 46.134170 ], [ 142.734375, 46.739861 ], [ 142.075195, 45.951150 ], [ 141.899414, 46.800059 ], [ 142.031250, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.610710 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.748711 ], [ 142.207031, 54.213861 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 80.156250, 9.838979 ], [ 80.859375, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.650391, 6.489983 ], [ 81.210938, 6.184246 ], [ 80.332031, 5.965754 ], [ 79.892578, 6.751896 ], [ 79.716797, 8.189742 ], [ 80.156250, 9.838979 ] ] ], [ [ [ 50.053711, 80.921494 ], [ 51.503906, 80.696895 ], [ 51.152344, 80.546518 ], [ 48.911133, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.592773, 80.012423 ], [ 46.494141, 80.245949 ], [ 47.065430, 80.560943 ], [ 44.868164, 80.589727 ], [ 46.801758, 80.774716 ], [ 48.339844, 80.781758 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.753556 ], [ 50.053711, 80.921494 ] ] ], [ [ [ 22.895508, 78.455425 ], [ 23.291016, 78.080156 ], [ 24.741211, 77.851100 ], [ 22.500000, 77.446940 ], [ 20.742188, 77.674122 ], [ 21.401367, 77.934055 ], [ 20.830078, 78.251387 ], [ 22.895508, 78.455425 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.227539, 75.342282 ], [ 150.732422, 75.084326 ], [ 149.589844, 74.683250 ], [ 147.963867, 74.775843 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 180.966797, 71.552741 ], [ 182.416992, 71.272595 ], [ 182.329102, 71.130988 ], [ 181.318359, 70.887885 ], [ 180.000000, 70.830248 ], [ 178.901367, 70.786910 ], [ 178.725586, 71.102543 ], [ 180.131836, 71.552741 ], [ 180.966797, 71.552741 ] ] ], [ [ [ 142.075195, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.613281, 73.214013 ], [ 142.075195, 73.201317 ], [ 140.053711, 73.315246 ], [ 139.877930, 73.365639 ], [ 140.800781, 73.763497 ], [ 142.075195, 73.861506 ] ] ], [ [ [ 9.228516, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.164141 ], [ 9.228516, 39.232253 ], [ 8.789062, 38.891033 ], [ 8.437500, 39.164141 ], [ 8.393555, 40.380028 ], [ 8.173828, 40.946714 ], [ 8.701172, 40.913513 ], [ 9.228516, 41.211722 ] ] ], [ [ [ 121.508789, 25.284438 ], [ 121.948242, 25.005973 ], [ 121.157227, 22.796439 ], [ 120.761719, 21.983801 ], [ 120.234375, 22.796439 ], [ 120.102539, 23.563987 ], [ 120.717773, 24.527135 ], [ 121.508789, 25.284438 ] ] ], [ [ [ 110.214844, 20.097206 ], [ 110.786133, 20.055931 ], [ 111.005859, 19.683970 ], [ 110.566406, 19.269665 ], [ 110.346680, 18.687879 ], [ 109.467773, 18.187607 ], [ 108.676758, 18.521283 ], [ 108.632812, 19.352611 ], [ 109.116211, 19.808054 ], [ 110.214844, 20.097206 ] ] ], [ [ [ 9.404297, 43.004647 ], [ 9.580078, 42.163403 ], [ 9.228516, 41.376809 ], [ 8.789062, 41.574361 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.617791 ], [ 9.404297, 43.004647 ] ] ], [ [ [ -2.988281, 58.631217 ], [ -3.515625, 58.124320 ], [ -3.515625, 58.608334 ], [ -2.988281, 58.631217 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.138672, 3.732708 ], [ 17.797852, 3.557283 ], [ 18.457031, 3.513421 ], [ 18.413086, 2.899153 ], [ 18.105469, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.834931 ], [ 17.841797, 0.307616 ], [ 17.709961, 0.000000 ], [ 17.534180, -0.747049 ], [ 16.875000, -1.230374 ], [ 16.391602, -1.757537 ], [ 15.996094, -2.723583 ], [ 15.996094, -3.513421 ], [ 10.634766, -3.513421 ], [ 10.063477, -2.986927 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.098565 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.843750, 1.054628 ], [ 11.293945, 1.054628 ], [ 11.293945, 2.240640 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.963867, 2.328460 ], [ 13.095703, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.952148, 1.713612 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.138672, 3.732708 ] ] ], [ [ [ 33.925781, -0.966751 ], [ 37.705078, -3.118576 ], [ 37.749023, -3.513421 ], [ 29.267578, -3.513421 ], [ 29.267578, -3.294082 ], [ 29.047852, -2.855263 ], [ 29.135742, -2.284551 ], [ 29.267578, -2.196727 ], [ 29.311523, -1.625758 ], [ 29.575195, -1.362176 ], [ 29.838867, -1.450040 ], [ 30.410156, -1.142502 ], [ 30.761719, -1.010690 ], [ 33.925781, -0.966751 ] ] ], [ [ [ 117.114258, 6.926427 ], [ 117.641602, 6.402648 ], [ 117.685547, 5.965754 ], [ 119.179688, 5.397273 ], [ 119.091797, 5.003394 ], [ 118.432617, 4.959615 ], [ 118.608398, 4.477856 ], [ 117.905273, 4.127285 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.922812 ], [ 117.817383, 0.790990 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.504085 ], [ 116.279297, -3.513421 ], [ 114.477539, -3.513421 ], [ 113.774414, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.030812 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.581830 ], [ 109.555664, -1.318243 ], [ 109.072266, -0.439449 ], [ 109.028320, 0.000000 ], [ 108.940430, 0.395505 ], [ 109.072266, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.357422, 2.679687 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 114.213867, 4.521666 ], [ 114.609375, 4.915833 ], [ 115.444336, 5.441022 ], [ 116.235352, 6.140555 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.926427 ] ] ], [ [ [ 127.001953, -3.118576 ], [ 127.265625, -3.469557 ], [ 127.177734, -3.513421 ], [ 126.123047, -3.513421 ], [ 125.991211, -3.162456 ], [ 127.001953, -3.118576 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.074695 ], [ 130.649414, -3.513421 ], [ 130.122070, -3.513421 ], [ 129.990234, -3.469557 ], [ 129.155273, -3.381824 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.989258, -0.790990 ], [ 134.165039, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.439453, -3.381824 ], [ 136.274414, -2.328460 ], [ 137.460938, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.921875, -2.416276 ], [ 141.020508, -2.591889 ], [ 143.481445, -3.513421 ], [ 132.758789, -3.513421 ], [ 132.758789, -3.294082 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.625758 ], [ 130.957031, -1.450040 ], [ 130.517578, -0.922812 ], [ 131.879883, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 123.574219, 53.461890 ], [ 125.068359, 53.173119 ], [ 125.947266, 52.802761 ], [ 126.562500, 51.781436 ], [ 126.958008, 51.344339 ], [ 127.309570, 50.736455 ], [ 127.661133, 49.752880 ], [ 129.418945, 49.439557 ], [ 130.605469, 48.719961 ], [ 131.000977, 47.783635 ], [ 132.495117, 47.783635 ], [ 133.374023, 48.195387 ], [ 135.043945, 48.487486 ], [ 134.516602, 47.576526 ], [ 134.121094, 47.219568 ], [ 133.769531, 46.103709 ], [ 133.110352, 45.151053 ], [ 131.879883, 45.305803 ], [ 131.044922, 44.964798 ], [ 131.308594, 44.119142 ], [ 131.132812, 42.940339 ], [ 130.649414, 42.908160 ], [ 130.649414, 42.391009 ], [ 130.781250, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.934977 ], [ 129.682617, 41.607228 ], [ 129.726562, 40.880295 ], [ 129.199219, 40.647304 ], [ 128.627930, 40.178873 ], [ 127.968750, 40.010787 ], [ 127.529297, 39.740986 ], [ 127.485352, 39.334297 ], [ 127.397461, 39.198205 ], [ 127.792969, 39.061849 ], [ 128.364258, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.462891, 36.774092 ], [ 129.462891, 35.639441 ], [ 129.111328, 35.065973 ], [ 128.188477, 34.885931 ], [ 127.397461, 34.488448 ], [ 126.474609, 34.379713 ], [ 126.386719, 34.921971 ], [ 126.562500, 35.675147 ], [ 126.123047, 36.738884 ], [ 126.870117, 36.879621 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.926868 ], [ 125.551758, 37.753344 ], [ 125.288086, 37.683820 ], [ 125.244141, 37.857507 ], [ 124.716797, 38.099983 ], [ 124.980469, 38.548165 ], [ 125.244141, 38.651198 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.332031, 39.537940 ], [ 124.760742, 39.673370 ], [ 124.277344, 39.943436 ], [ 122.871094, 39.639538 ], [ 122.124023, 39.164141 ], [ 121.069336, 38.891033 ], [ 121.596680, 39.368279 ], [ 121.376953, 39.740986 ], [ 122.167969, 40.413496 ], [ 121.640625, 40.946714 ], [ 120.761719, 40.580585 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.198205 ], [ 117.553711, 38.719805 ], [ 118.081055, 38.065392 ], [ 118.872070, 37.892196 ], [ 118.916016, 37.439974 ], [ 119.707031, 37.160317 ], [ 120.805664, 37.857507 ], [ 121.728516, 37.474858 ], [ 122.343750, 37.439974 ], [ 122.519531, 36.914764 ], [ 121.113281, 36.633162 ], [ 120.629883, 36.102376 ], [ 119.663086, 35.603719 ], [ 119.135742, 34.921971 ], [ 120.234375, 34.343436 ], [ 120.629883, 33.358062 ], [ 121.245117, 32.472695 ], [ 121.904297, 31.690782 ], [ 121.904297, 30.939924 ], [ 121.245117, 30.675715 ], [ 121.508789, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.948242, 28.998532 ], [ 121.684570, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.575195, 25.720735 ], [ 118.652344, 24.527135 ], [ 115.883789, 22.796439 ], [ 114.785156, 22.674847 ], [ 114.169922, 22.228090 ], [ 113.818359, 22.553147 ], [ 113.247070, 22.065278 ], [ 111.840820, 21.534847 ], [ 110.786133, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.907227, 20.262197 ], [ 109.643555, 21.002471 ], [ 109.863281, 21.412162 ], [ 108.544922, 21.698265 ], [ 108.061523, 21.534847 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.678293 ], [ 108.281250, 16.088042 ], [ 108.896484, 15.284185 ], [ 109.335938, 13.410994 ], [ 109.204102, 11.652236 ], [ 108.369141, 11.005904 ], [ 107.226562, 10.358151 ], [ 106.391602, 9.535749 ], [ 105.161133, 8.581021 ], [ 104.809570, 9.232249 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.617418 ], [ 103.095703, 11.135287 ], [ 102.568359, 12.168226 ], [ 101.689453, 12.640338 ], [ 100.854492, 12.640338 ], [ 100.986328, 13.410994 ], [ 100.107422, 13.410994 ], [ 100.019531, 12.297068 ], [ 99.140625, 9.968851 ], [ 99.228516, 9.232249 ], [ 99.887695, 9.188870 ], [ 100.283203, 8.276727 ], [ 100.458984, 7.449624 ], [ 101.030273, 6.839170 ], [ 101.645508, 6.751896 ], [ 102.128906, 6.227934 ], [ 102.392578, 6.140555 ], [ 102.963867, 5.528511 ], [ 103.403320, 4.872048 ], [ 103.447266, 4.171115 ], [ 103.315430, 3.732708 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.504085 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.274309 ], [ 103.535156, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.293945, 3.250209 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.309766 ], [ 100.327148, 6.053161 ], [ 100.107422, 6.446318 ], [ 99.711914, 6.839170 ], [ 99.536133, 7.362467 ], [ 98.525391, 8.363693 ], [ 98.349609, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.261719, 8.971897 ], [ 98.569336, 9.925566 ], [ 98.437500, 10.660608 ], [ 98.745117, 11.436955 ], [ 98.437500, 12.039321 ], [ 98.525391, 13.111580 ], [ 98.085938, 13.624633 ], [ 97.778320, 14.817371 ], [ 97.602539, 16.088042 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.361328, 15.707663 ], [ 94.790039, 15.792254 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.266728 ], [ 94.306641, 18.229351 ], [ 93.559570, 19.352611 ], [ 93.647461, 19.725342 ], [ 93.076172, 19.849394 ], [ 92.373047, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.698265 ], [ 91.845703, 22.187405 ], [ 91.406250, 22.755921 ], [ 90.483398, 22.796439 ], [ 90.571289, 22.390714 ], [ 90.263672, 21.820708 ], [ 89.868164, 22.024546 ], [ 89.692383, 21.861499 ], [ 89.033203, 22.065278 ], [ 88.901367, 21.698265 ], [ 88.198242, 21.698265 ], [ 86.967773, 21.493964 ], [ 87.055664, 20.756114 ], [ 86.484375, 20.138470 ], [ 85.078125, 19.476950 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.014768 ], [ 82.177734, 16.551962 ], [ 80.771484, 15.961329 ], [ 80.332031, 15.876809 ], [ 80.024414, 15.114553 ], [ 80.244141, 13.838080 ], [ 80.288086, 13.025966 ], [ 79.848633, 12.039321 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.535749 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.928487 ], [ 77.958984, 8.233237 ], [ 77.519531, 7.972198 ], [ 76.596680, 8.885072 ], [ 75.761719, 11.307708 ], [ 75.410156, 11.781325 ], [ 74.882812, 12.726084 ], [ 74.443359, 14.604847 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.186678 ], [ 72.817383, 20.427013 ], [ 72.641602, 21.371244 ], [ 71.191406, 20.756114 ], [ 70.488281, 20.879343 ], [ 69.169922, 22.105999 ], [ 69.653320, 22.431340 ], [ 69.345703, 22.836946 ], [ 68.159180, 23.684774 ], [ 67.456055, 23.926013 ], [ 67.148438, 24.647017 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.204941 ], [ 61.479492, 25.085599 ], [ 58.535156, 25.601902 ], [ 57.392578, 25.720735 ], [ 56.953125, 26.980829 ], [ 56.513672, 27.137368 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.470573 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.566721 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.806174 ], [ 50.097656, 30.145127 ], [ 49.570312, 29.993002 ], [ 48.955078, 30.297018 ], [ 48.559570, 29.916852 ], [ 48.032227, 30.448674 ], [ 47.988281, 30.977609 ], [ 47.680664, 30.977609 ], [ 47.856445, 31.690782 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.027088 ], [ 45.439453, 33.979809 ], [ 45.659180, 34.741612 ], [ 46.142578, 35.101934 ], [ 46.098633, 35.675147 ], [ 45.439453, 35.960223 ], [ 44.780273, 37.160317 ], [ 44.208984, 37.961523 ], [ 44.428711, 38.272689 ], [ 44.121094, 39.436193 ], [ 44.780273, 39.707187 ], [ 44.956055, 39.334297 ], [ 45.439453, 38.856820 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.754083 ], [ 47.680664, 39.504041 ], [ 48.076172, 39.571822 ], [ 48.339844, 39.300299 ], [ 48.032227, 38.788345 ], [ 48.647461, 38.272689 ], [ 48.867188, 38.307181 ], [ 49.218750, 37.579413 ], [ 50.141602, 37.370157 ], [ 50.844727, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.833008, 36.949892 ], [ 53.920898, 37.195331 ], [ 54.799805, 37.405074 ], [ 55.502930, 37.961523 ], [ 56.162109, 37.926868 ], [ 56.601562, 38.134557 ], [ 57.348633, 38.030786 ], [ 58.447266, 37.509726 ], [ 59.238281, 37.405074 ], [ 60.380859, 36.527295 ], [ 61.127930, 36.491973 ], [ 61.215820, 35.639441 ], [ 62.226562, 35.281501 ], [ 62.973633, 35.389050 ], [ 63.193359, 35.853440 ], [ 63.984375, 35.995785 ], [ 64.555664, 36.315125 ], [ 64.731445, 37.125286 ], [ 65.610352, 37.300275 ], [ 65.742188, 37.649034 ], [ 66.225586, 37.405074 ], [ 67.060547, 37.370157 ], [ 67.851562, 37.160317 ], [ 68.378906, 38.169114 ], [ 68.159180, 38.891033 ], [ 67.456055, 39.130060 ], [ 67.719727, 39.571822 ], [ 68.554688, 39.537940 ], [ 68.994141, 40.078071 ], [ 69.345703, 40.713956 ], [ 70.664062, 40.946714 ], [ 70.444336, 40.480381 ], [ 70.620117, 40.212441 ], [ 71.015625, 40.245992 ], [ 70.664062, 39.943436 ], [ 69.565430, 40.111689 ], [ 69.477539, 39.537940 ], [ 70.532227, 39.605688 ], [ 71.806641, 39.266284 ], [ 73.696289, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.828125, 39.909736 ], [ 74.794922, 40.380028 ], [ 75.454102, 40.547200 ], [ 76.508789, 40.413496 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.178654 ], [ 78.530273, 41.574361 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.200195, 42.908160 ], [ 80.859375, 43.165123 ], [ 79.980469, 44.902578 ], [ 81.958008, 45.305803 ], [ 82.441406, 45.552525 ], [ 83.188477, 47.338823 ], [ 85.166016, 47.010226 ], [ 85.737305, 47.457809 ], [ 85.781250, 48.458352 ], [ 86.616211, 48.545705 ], [ 87.363281, 49.210420 ], [ 88.813477, 49.468124 ], [ 90.703125, 50.317408 ], [ 92.241211, 50.792047 ], [ 93.120117, 50.485474 ], [ 94.130859, 50.485474 ], [ 94.833984, 50.007739 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.724479 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.876953, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.898438, 51.508742 ], [ 102.084961, 51.261915 ], [ 102.260742, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.633789, 50.261254 ], [ 105.908203, 50.401515 ], [ 106.875000, 50.261254 ], [ 107.885742, 49.781264 ], [ 108.457031, 49.267805 ], [ 109.423828, 49.296472 ], [ 110.654297, 49.124219 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.488281, 49.809632 ], [ 116.674805, 49.894634 ], [ 117.861328, 49.496675 ], [ 119.311523, 50.148746 ], [ 119.267578, 50.569283 ], [ 120.190430, 51.645294 ], [ 120.717773, 51.971346 ], [ 120.717773, 52.509535 ], [ 120.190430, 52.749594 ], [ 121.025391, 53.252069 ], [ 122.255859, 53.435719 ], [ 123.574219, 53.461890 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.258768 ], [ 99.711914, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.064982 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.571280 ], [ 103.842773, 0.087891 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.801461 ], [ 104.897461, -2.328460 ], [ 105.644531, -2.416276 ], [ 106.127930, -3.074695 ], [ 105.996094, -3.513421 ], [ 102.041016, -3.513421 ], [ 101.381836, -2.811371 ], [ 100.898438, -2.064982 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.801461 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.294082 ], [ 96.416016, 3.864255 ], [ 95.361328, 4.959615 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 152.226562, -3.250209 ], [ 152.490234, -3.513421 ], [ 152.006836, -3.513421 ], [ 151.391602, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.952148, -2.504085 ] ] ], [ [ [ 125.068359, 1.625758 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.706055, 0.219726 ], [ 122.739258, 0.439449 ], [ 121.069336, 0.395505 ], [ 120.190430, 0.219726 ], [ 120.146484, 0.000000 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.354492, -0.615223 ], [ 123.266602, -1.098565 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.537901 ], [ 121.508789, -1.889306 ], [ 122.475586, -3.206333 ], [ 122.299805, -3.513421 ], [ 120.893555, -3.513421 ], [ 120.981445, -2.635789 ], [ 120.322266, -2.943041 ], [ 120.366211, -3.513421 ], [ 119.091797, -3.469557 ], [ 118.784180, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.311523, -1.362176 ], [ 119.794922, 0.000000 ], [ 120.058594, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.684570, 1.010690 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.068359, 1.625758 ] ] ], [ [ [ 51.108398, 12.039321 ], [ 51.064453, 10.660608 ], [ 50.844727, 10.271681 ], [ 50.537109, 9.188870 ], [ 49.438477, 6.795535 ], [ 48.603516, 5.353521 ], [ 47.724609, 4.214943 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.064982 ], [ 44.077148, 1.054628 ], [ 43.154297, 0.307616 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 41.000977, -0.878872 ], [ 41.000977, 2.767478 ], [ 41.835938, 3.908099 ], [ 42.143555, 4.214943 ], [ 42.758789, 4.258768 ], [ 43.681641, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.812500, 8.015716 ], [ 46.933594, 8.015716 ], [ 43.681641, 9.188870 ], [ 43.286133, 9.535749 ], [ 42.539062, 10.574222 ], [ 43.154297, 11.480025 ], [ 43.461914, 11.264612 ], [ 43.681641, 10.876465 ], [ 44.121094, 10.444598 ], [ 44.604492, 10.444598 ], [ 45.571289, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.548828, 11.135287 ], [ 48.032227, 11.178402 ], [ 48.383789, 11.393879 ], [ 48.955078, 11.393879 ], [ 49.262695, 11.436955 ], [ 50.273438, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ], [ [ [ 51.987305, 18.979026 ], [ 53.129883, 16.636192 ], [ 52.382812, 16.383391 ], [ 52.207031, 15.919074 ], [ 52.163086, 15.580711 ], [ 51.152344, 15.156974 ], [ 49.570312, 14.689881 ], [ 48.691406, 14.008696 ], [ 48.251953, 13.966054 ], [ 47.944336, 14.008696 ], [ 47.373047, 13.581921 ], [ 46.713867, 13.410994 ], [ 45.615234, 13.282719 ], [ 45.395508, 13.025966 ], [ 45.131836, 12.940322 ], [ 45.000000, 12.683215 ], [ 44.516602, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.505859, 12.640338 ], [ 43.242188, 13.239945 ], [ 43.242188, 13.752725 ], [ 43.110352, 14.051331 ], [ 42.890625, 14.817371 ], [ 42.626953, 15.199386 ], [ 42.802734, 15.241790 ], [ 42.714844, 15.707663 ], [ 42.846680, 15.919074 ], [ 42.758789, 16.341226 ], [ 43.198242, 16.678293 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.560247 ], [ 43.813477, 17.308688 ], [ 44.077148, 17.392579 ], [ 45.219727, 17.434511 ], [ 45.395508, 17.350638 ], [ 46.362305, 17.224758 ], [ 46.757812, 17.266728 ], [ 47.021484, 16.930705 ], [ 47.460938, 17.098792 ], [ 48.164062, 18.145852 ], [ 49.130859, 18.604601 ], [ 51.987305, 18.979026 ] ] ], [ [ [ 141.372070, 41.376809 ], [ 141.899414, 39.977120 ], [ 141.899414, 39.164141 ], [ 140.976562, 38.169114 ], [ 140.976562, 37.125286 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.273438, 35.137879 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.597042 ], [ 135.791016, 33.468108 ], [ 135.131836, 33.833920 ], [ 135.087891, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 131.000977, 33.870416 ], [ 132.011719, 33.137551 ], [ 131.352539, 31.466154 ], [ 130.693359, 31.015279 ], [ 130.209961, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.418945, 33.284620 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.741612 ], [ 132.626953, 35.424868 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.300275 ], [ 137.373047, 36.809285 ], [ 139.438477, 38.203655 ], [ 140.053711, 39.436193 ], [ 139.877930, 40.547200 ], [ 140.317383, 41.178654 ], [ 141.372070, 41.376809 ] ] ], [ [ [ 141.987305, 45.552525 ], [ 143.129883, 44.496505 ], [ 143.920898, 44.182204 ], [ 144.624023, 43.961191 ], [ 145.327148, 44.370987 ], [ 145.546875, 43.261206 ], [ 144.052734, 42.972502 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.574361 ], [ 139.965820, 41.574361 ], [ 139.833984, 42.553080 ], [ 140.317383, 43.325178 ], [ 141.372070, 43.389082 ], [ 141.679688, 44.777936 ], [ 141.987305, 45.552525 ] ] ], [ [ [ 121.333008, 18.521283 ], [ 121.948242, 18.229351 ], [ 122.255859, 18.479609 ], [ 122.343750, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.519531, 17.098792 ], [ 122.255859, 16.256867 ], [ 121.684570, 15.919074 ], [ 121.508789, 15.114553 ], [ 121.728516, 14.306969 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.969727, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.189453, 12.983148 ], [ 124.057617, 12.554564 ], [ 123.310547, 13.025966 ], [ 122.915039, 13.539201 ], [ 122.651367, 13.197165 ], [ 122.036133, 13.795406 ], [ 121.113281, 13.624633 ], [ 120.629883, 13.838080 ], [ 120.673828, 14.264383 ], [ 120.981445, 14.519780 ], [ 120.673828, 14.774883 ], [ 120.585938, 14.392118 ], [ 120.058594, 14.987240 ], [ 119.926758, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.410156, 17.602139 ], [ 120.717773, 18.521283 ], [ 121.333008, 18.521283 ] ] ], [ [ [ 127.924805, 2.152814 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.351560 ], [ 128.012695, 0.000000 ], [ 127.968750, -0.263671 ], [ 128.364258, -0.790990 ], [ 128.100586, -0.922812 ], [ 127.705078, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.617188, 1.801461 ], [ 127.924805, 2.152814 ] ] ], [ [ [ 125.419922, 9.752370 ], [ 126.210938, 9.275622 ], [ 126.518555, 7.188101 ], [ 126.210938, 6.271618 ], [ 125.815430, 7.275292 ], [ 125.375977, 6.795535 ], [ 125.683594, 6.053161 ], [ 125.375977, 5.572250 ], [ 124.233398, 6.140555 ], [ 123.925781, 6.882800 ], [ 124.233398, 7.362467 ], [ 123.618164, 7.841615 ], [ 123.310547, 7.406048 ], [ 122.827148, 7.449624 ], [ 122.080078, 6.882800 ], [ 121.904297, 7.188101 ], [ 122.299805, 8.015716 ], [ 122.958984, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.233237 ], [ 124.584961, 8.494105 ], [ 124.760742, 8.971897 ], [ 125.463867, 8.971897 ], [ 125.419922, 9.752370 ] ] ], [ [ [ 80.156250, 9.838979 ], [ 80.859375, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.650391, 6.489983 ], [ 81.210938, 6.184246 ], [ 80.332031, 5.965754 ], [ 79.892578, 6.751896 ], [ 79.716797, 8.189742 ], [ 80.156250, 9.838979 ] ] ], [ [ [ 121.508789, 25.284438 ], [ 121.948242, 25.005973 ], [ 121.157227, 22.796439 ], [ 120.761719, 21.983801 ], [ 120.234375, 22.796439 ], [ 120.102539, 23.563987 ], [ 120.717773, 24.527135 ], [ 121.508789, 25.284438 ] ] ], [ [ [ 110.214844, 20.097206 ], [ 110.786133, 20.055931 ], [ 111.005859, 19.683970 ], [ 110.566406, 19.269665 ], [ 110.346680, 18.687879 ], [ 109.467773, 18.187607 ], [ 108.676758, 18.521283 ], [ 108.632812, 19.352611 ], [ 109.116211, 19.808054 ], [ 110.214844, 20.097206 ] ] ], [ [ [ 133.901367, 34.379713 ], [ 134.648438, 34.161818 ], [ 134.780273, 33.797409 ], [ 134.208984, 33.211116 ], [ 133.813477, 33.504759 ], [ 133.286133, 33.284620 ], [ 133.022461, 32.694866 ], [ 132.363281, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.934570, 34.052659 ], [ 133.505859, 33.943360 ], [ 133.901367, 34.379713 ] ] ], [ [ [ 125.244141, 12.554564 ], [ 125.507812, 12.168226 ], [ 125.771484, 11.049038 ], [ 125.024414, 11.307708 ], [ 125.024414, 10.962764 ], [ 125.288086, 10.358151 ], [ 124.804688, 10.141932 ], [ 124.760742, 10.833306 ], [ 124.453125, 10.876465 ], [ 124.321289, 11.480025 ], [ 124.892578, 11.393879 ], [ 124.892578, 11.781325 ], [ 124.277344, 12.554564 ], [ 125.244141, 12.554564 ] ] ], [ [ [ 124.057617, 11.221510 ], [ 123.969727, 10.271681 ], [ 123.618164, 9.968851 ], [ 123.310547, 9.318990 ], [ 123.002930, 9.015302 ], [ 122.387695, 9.709057 ], [ 122.827148, 10.271681 ], [ 122.958984, 10.876465 ], [ 123.486328, 10.919618 ], [ 123.354492, 10.271681 ], [ 124.057617, 11.221510 ] ] ], [ [ [ 119.531250, 11.350797 ], [ 119.707031, 10.574222 ], [ 119.047852, 10.012130 ], [ 118.520508, 9.318990 ], [ 117.158203, 8.363693 ], [ 117.685547, 9.058702 ], [ 118.388672, 9.665738 ], [ 119.003906, 10.358151 ], [ 119.531250, 11.350797 ] ] ], [ [ [ 121.904297, 11.910354 ], [ 122.475586, 11.566144 ], [ 123.134766, 11.566144 ], [ 123.090820, 11.178402 ], [ 122.651367, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.393879 ], [ 121.904297, 11.910354 ] ] ], [ [ [ 120.322266, 13.453737 ], [ 121.201172, 13.410994 ], [ 121.508789, 13.068777 ], [ 121.245117, 12.211180 ], [ 120.849609, 12.683215 ], [ 120.322266, 13.453737 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.138672, 3.732708 ], [ 17.797852, 3.557283 ], [ 18.457031, 3.513421 ], [ 18.413086, 2.899153 ], [ 18.105469, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.834931 ], [ 17.841797, 0.307616 ], [ 17.709961, 0.000000 ], [ 17.534180, -0.747049 ], [ 16.875000, -1.230374 ], [ 16.391602, -1.757537 ], [ 15.996094, -2.723583 ], [ 15.996094, -3.513421 ], [ 10.634766, -3.513421 ], [ 10.063477, -2.986927 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.098565 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.843750, 1.054628 ], [ 11.293945, 1.054628 ], [ 11.293945, 2.240640 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.963867, 2.328460 ], [ 13.095703, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.952148, 1.713612 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.138672, 3.732708 ] ] ], [ [ [ 117.026367, 4.302591 ], [ 117.905273, 4.127285 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.922812 ], [ 117.817383, 0.790990 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.504085 ], [ 116.279297, -3.513421 ], [ 114.477539, -3.513421 ], [ 113.774414, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.030812 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.581830 ], [ 109.555664, -1.318243 ], [ 109.072266, -0.439449 ], [ 109.028320, 0.000000 ], [ 108.940430, 0.395505 ], [ 109.072266, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.318243 ], [ 110.522461, 0.790990 ], [ 111.181641, 0.966751 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.136719, 2.811371 ], [ 115.532227, 3.162456 ], [ 115.883789, 4.302591 ], [ 117.026367, 4.302591 ] ] ], [ [ [ 33.925781, -0.966751 ], [ 37.705078, -3.118576 ], [ 37.749023, -3.513421 ], [ 29.267578, -3.513421 ], [ 29.267578, -3.294082 ], [ 29.047852, -2.855263 ], [ 29.135742, -2.284551 ], [ 29.267578, -2.196727 ], [ 29.311523, -1.625758 ], [ 29.575195, -1.362176 ], [ 29.838867, -1.450040 ], [ 30.410156, -1.142502 ], [ 30.761719, -1.010690 ], [ 33.925781, -0.966751 ] ] ], [ [ [ 127.001953, -3.118576 ], [ 127.265625, -3.469557 ], [ 127.177734, -3.513421 ], [ 126.123047, -3.513421 ], [ 125.991211, -3.162456 ], [ 127.001953, -3.118576 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.074695 ], [ 130.649414, -3.513421 ], [ 130.122070, -3.513421 ], [ 129.990234, -3.469557 ], [ 129.155273, -3.381824 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.989258, -0.790990 ], [ 134.165039, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.439453, -3.381824 ], [ 136.274414, -2.328460 ], [ 137.460938, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.921875, -2.416276 ], [ 141.020508, -2.591889 ], [ 143.481445, -3.513421 ], [ 132.758789, -3.513421 ], [ 132.758789, -3.294082 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.625758 ], [ 130.957031, -1.450040 ], [ 130.517578, -0.922812 ], [ 131.879883, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.258768 ], [ 99.711914, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.064982 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.571280 ], [ 103.842773, 0.087891 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.801461 ], [ 104.897461, -2.328460 ], [ 105.644531, -2.416276 ], [ 106.127930, -3.074695 ], [ 105.996094, -3.513421 ], [ 102.041016, -3.513421 ], [ 101.381836, -2.811371 ], [ 100.898438, -2.064982 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.801461 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.294082 ], [ 96.416016, 3.864255 ], [ 95.361328, 4.959615 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 141.372070, 41.376809 ], [ 141.899414, 39.977120 ], [ 141.899414, 39.164141 ], [ 140.976562, 38.169114 ], [ 140.976562, 37.125286 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.273438, 35.137879 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.597042 ], [ 135.791016, 33.468108 ], [ 135.131836, 33.833920 ], [ 135.087891, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 131.000977, 33.870416 ], [ 132.011719, 33.137551 ], [ 131.352539, 31.466154 ], [ 130.693359, 31.015279 ], [ 130.209961, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.418945, 33.284620 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.741612 ], [ 132.626953, 35.424868 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.300275 ], [ 137.373047, 36.809285 ], [ 139.438477, 38.203655 ], [ 140.053711, 39.436193 ], [ 139.877930, 40.547200 ], [ 140.317383, 41.178654 ], [ 141.372070, 41.376809 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 152.226562, -3.250209 ], [ 152.490234, -3.513421 ], [ 152.006836, -3.513421 ], [ 151.391602, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.952148, -2.504085 ] ] ], [ [ [ 125.068359, 1.625758 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.706055, 0.219726 ], [ 122.739258, 0.439449 ], [ 121.069336, 0.395505 ], [ 120.190430, 0.219726 ], [ 120.146484, 0.000000 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.354492, -0.615223 ], [ 123.266602, -1.098565 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.537901 ], [ 121.508789, -1.889306 ], [ 122.475586, -3.206333 ], [ 122.299805, -3.513421 ], [ 120.893555, -3.513421 ], [ 120.981445, -2.635789 ], [ 120.322266, -2.943041 ], [ 120.366211, -3.513421 ], [ 119.091797, -3.469557 ], [ 118.784180, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.311523, -1.362176 ], [ 119.794922, 0.000000 ], [ 120.058594, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.684570, 1.010690 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.068359, 1.625758 ] ] ], [ [ [ 141.987305, 45.552525 ], [ 143.129883, 44.496505 ], [ 143.920898, 44.182204 ], [ 144.624023, 43.961191 ], [ 145.327148, 44.370987 ], [ 145.546875, 43.261206 ], [ 144.052734, 42.972502 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.574361 ], [ 139.965820, 41.574361 ], [ 139.833984, 42.553080 ], [ 140.317383, 43.325178 ], [ 141.372070, 43.389082 ], [ 141.679688, 44.777936 ], [ 141.987305, 45.552525 ] ] ], [ [ [ 121.333008, 18.521283 ], [ 121.948242, 18.229351 ], [ 122.255859, 18.479609 ], [ 122.343750, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.519531, 17.098792 ], [ 122.255859, 16.256867 ], [ 121.684570, 15.919074 ], [ 121.508789, 15.114553 ], [ 121.728516, 14.306969 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.969727, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.189453, 12.983148 ], [ 124.057617, 12.554564 ], [ 123.310547, 13.025966 ], [ 122.915039, 13.539201 ], [ 122.651367, 13.197165 ], [ 122.036133, 13.795406 ], [ 121.113281, 13.624633 ], [ 120.629883, 13.838080 ], [ 120.673828, 14.264383 ], [ 120.981445, 14.519780 ], [ 120.673828, 14.774883 ], [ 120.585938, 14.392118 ], [ 120.058594, 14.987240 ], [ 119.926758, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.410156, 17.602139 ], [ 120.717773, 18.521283 ], [ 121.333008, 18.521283 ] ] ], [ [ [ 125.419922, 9.752370 ], [ 126.210938, 9.275622 ], [ 126.518555, 7.188101 ], [ 126.210938, 6.271618 ], [ 125.815430, 7.275292 ], [ 125.375977, 6.795535 ], [ 125.683594, 6.053161 ], [ 125.375977, 5.572250 ], [ 124.233398, 6.140555 ], [ 123.925781, 6.882800 ], [ 124.233398, 7.362467 ], [ 123.618164, 7.841615 ], [ 123.310547, 7.406048 ], [ 122.827148, 7.449624 ], [ 122.080078, 6.882800 ], [ 121.904297, 7.188101 ], [ 122.299805, 8.015716 ], [ 122.958984, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.233237 ], [ 124.584961, 8.494105 ], [ 124.760742, 8.971897 ], [ 125.463867, 8.971897 ], [ 125.419922, 9.752370 ] ] ], [ [ [ 133.901367, 34.379713 ], [ 134.648438, 34.161818 ], [ 134.780273, 33.797409 ], [ 134.208984, 33.211116 ], [ 133.813477, 33.504759 ], [ 133.286133, 33.284620 ], [ 133.022461, 32.694866 ], [ 132.363281, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.934570, 34.052659 ], [ 133.505859, 33.943360 ], [ 133.901367, 34.379713 ] ] ], [ [ [ 127.924805, 2.152814 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.351560 ], [ 128.012695, 0.000000 ], [ 127.968750, -0.263671 ], [ 128.364258, -0.790990 ], [ 128.100586, -0.922812 ], [ 127.705078, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.617188, 1.801461 ], [ 127.924805, 2.152814 ] ] ], [ [ [ 125.244141, 12.554564 ], [ 125.507812, 12.168226 ], [ 125.771484, 11.049038 ], [ 125.024414, 11.307708 ], [ 125.024414, 10.962764 ], [ 125.288086, 10.358151 ], [ 124.804688, 10.141932 ], [ 124.760742, 10.833306 ], [ 124.453125, 10.876465 ], [ 124.321289, 11.480025 ], [ 124.892578, 11.393879 ], [ 124.892578, 11.781325 ], [ 124.277344, 12.554564 ], [ 125.244141, 12.554564 ] ] ], [ [ [ 124.057617, 11.221510 ], [ 123.969727, 10.271681 ], [ 123.618164, 9.968851 ], [ 123.310547, 9.318990 ], [ 123.002930, 9.015302 ], [ 122.387695, 9.709057 ], [ 122.827148, 10.271681 ], [ 122.958984, 10.876465 ], [ 123.486328, 10.919618 ], [ 123.354492, 10.271681 ], [ 124.057617, 11.221510 ] ] ], [ [ [ 115.444336, 5.441022 ], [ 115.356445, 4.302591 ], [ 114.873047, 4.346411 ], [ 114.653320, 3.995781 ], [ 114.213867, 4.521666 ], [ 114.609375, 4.915833 ], [ 115.444336, 5.441022 ] ] ], [ [ [ 119.531250, 11.350797 ], [ 119.707031, 10.574222 ], [ 119.047852, 10.012130 ], [ 118.520508, 9.318990 ], [ 117.158203, 8.363693 ], [ 117.685547, 9.058702 ], [ 118.388672, 9.665738 ], [ 119.003906, 10.358151 ], [ 119.531250, 11.350797 ] ] ], [ [ [ 121.904297, 11.910354 ], [ 122.475586, 11.566144 ], [ 123.134766, 11.566144 ], [ 123.090820, 11.178402 ], [ 122.651367, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.393879 ], [ 121.904297, 11.910354 ] ] ], [ [ [ 120.322266, 13.453737 ], [ 121.201172, 13.410994 ], [ 121.508789, 13.068777 ], [ 121.245117, 12.211180 ], [ 120.849609, 12.683215 ], [ 120.322266, 13.453737 ] ] ] ] } } ] } ] } , @@ -83,9 +85,13 @@ , { "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, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.006348, 47.040182 ], [ -63.654785, 46.543750 ], [ -62.929688, 46.407564 ], [ -62.006836, 46.437857 ], [ -62.512207, 46.027482 ], [ -62.863770, 45.966425 ], [ -64.138184, 46.392411 ], [ -64.401855, 46.724800 ], [ -64.006348, 47.040182 ] ] ], [ [ [ -87.055664, 21.534847 ], [ -86.813965, 21.330315 ], [ -86.835938, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.642588 ], [ -87.429199, 19.476950 ], [ -87.846680, 18.250220 ], [ -88.088379, 18.521283 ], [ -88.308105, 18.500447 ], [ -88.286133, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.256867 ], [ -88.725586, 16.235772 ], [ -88.923340, 15.876809 ], [ -88.593750, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.110352, 15.686510 ], [ -87.890625, 15.855674 ], [ -87.604980, 15.876809 ], [ -87.517090, 15.792254 ], [ -87.363281, 15.855674 ], [ -86.901855, 15.749963 ], [ -86.440430, 15.771109 ], [ -86.110840, 15.897942 ], [ -86.000977, 16.003576 ], [ -85.451660, 15.876809 ], [ -85.187988, 15.897942 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.834536 ], [ -84.067383, 15.644197 ], [ -83.781738, 15.432501 ], [ -83.408203, 15.262989 ], [ -83.144531, 14.987240 ], [ -83.232422, 14.902322 ], [ -83.276367, 14.668626 ], [ -83.188477, 14.306969 ], [ -83.408203, 13.966054 ], [ -83.518066, 13.560562 ], [ -83.540039, 13.132979 ], [ -83.496094, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.318536 ], [ -83.715820, 11.888853 ], [ -83.649902, 11.630716 ], [ -83.847656, 11.372339 ], [ -83.803711, 11.092166 ], [ -83.649902, 10.941192 ], [ -83.408203, 10.401378 ], [ -82.177734, 9.210560 ], [ -82.199707, 8.993600 ], [ -81.804199, 8.950193 ], [ -81.716309, 9.037003 ], [ -81.430664, 8.776511 ], [ -80.947266, 8.863362 ], [ -80.529785, 9.102097 ], [ -79.914551, 9.318990 ], [ -79.562988, 9.600750 ], [ -79.013672, 9.557417 ], [ -79.057617, 9.449062 ], [ -78.508301, 9.427387 ], [ -78.046875, 9.253936 ], [ -77.717285, 8.950193 ], [ -77.343750, 8.667918 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.673828, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.476074, 10.617418 ], [ -74.904785, 11.092166 ], [ -74.267578, 11.092166 ], [ -74.201660, 11.307708 ], [ -73.410645, 11.221510 ], [ -72.246094, 11.953349 ], [ -71.762695, 12.425848 ], [ -71.389160, 12.382928 ], [ -71.125488, 12.103781 ], [ -71.323242, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.938477, 11.415418 ], [ -71.608887, 10.962764 ], [ -71.630859, 10.444598 ], [ -72.070312, 9.860628 ], [ -71.696777, 9.080400 ], [ -71.257324, 9.145486 ], [ -71.037598, 9.860628 ], [ -71.345215, 10.206813 ], [ -71.389160, 10.962764 ], [ -70.158691, 11.372339 ], [ -70.290527, 11.845847 ], [ -69.938965, 12.168226 ], [ -69.587402, 11.458491 ], [ -68.884277, 11.436955 ], [ -68.225098, 10.876465 ], [ -68.203125, 10.552622 ], [ -67.302246, 10.552622 ], [ -66.225586, 10.639014 ], [ -65.654297, 10.206813 ], [ -64.885254, 10.077037 ], [ -64.335938, 10.379765 ], [ -64.313965, 10.639014 ], [ -63.083496, 10.703792 ], [ -61.875000, 10.703792 ], [ -62.731934, 10.422988 ], [ -62.380371, 9.947209 ], [ -61.589355, 9.882275 ], [ -60.820312, 9.384032 ], [ -60.666504, 8.581021 ], [ -60.139160, 8.602747 ], [ -59.106445, 7.993957 ], [ -58.491211, 7.340675 ], [ -58.447266, 6.839170 ], [ -58.073730, 6.817353 ], [ -57.150879, 5.965754 ], [ -55.942383, 5.769036 ], [ -55.832520, 5.943900 ], [ -55.041504, 6.031311 ], [ -53.964844, 5.747174 ], [ -54.470215, 4.893941 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.184394 ], [ -54.272461, 2.723583 ], [ -54.514160, 2.306506 ], [ -55.085449, 2.526037 ], [ -55.568848, 2.416276 ], [ -55.964355, 2.504085 ], [ -56.074219, 2.218684 ], [ -55.898438, 2.021065 ], [ -55.986328, 1.823423 ], [ -56.535645, 1.889306 ], [ -56.777344, 1.867345 ], [ -57.326660, 1.955187 ], [ -57.656250, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.425293, 1.472006 ], [ -58.535156, 1.274309 ], [ -59.018555, 1.318243 ], [ -59.633789, 1.779499 ], [ -59.721680, 2.240640 ], [ -59.963379, 2.745531 ], [ -59.809570, 3.601142 ], [ -59.545898, 3.951941 ], [ -59.765625, 4.412137 ], [ -60.117188, 4.565474 ], [ -59.985352, 5.003394 ], [ -60.205078, 5.244128 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.797852, 3.995781 ], [ -63.083496, 3.776559 ], [ -63.896484, 4.017699 ], [ -64.621582, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.357910, 3.798484 ], [ -64.401855, 3.118576 ], [ -64.270020, 2.504085 ], [ -63.413086, 2.416276 ], [ -63.369141, 2.196727 ], [ -64.072266, 1.911267 ], [ -64.204102, 1.493971 ], [ -65.346680, 1.098565 ], [ -65.544434, 0.790990 ], [ -66.313477, 0.725078 ], [ -66.884766, 1.252342 ], [ -67.060547, 1.120534 ], [ -67.258301, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.691649 ], [ -69.807129, 1.713612 ], [ -69.807129, 1.098565 ], [ -69.213867, 0.988720 ], [ -69.257812, 0.593251 ], [ -69.455566, 0.703107 ], [ -70.004883, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.565430, -0.549308 ], [ -69.411621, -1.120534 ], [ -69.477539, -1.757537 ], [ -73.388672, -1.757537 ], [ -73.652344, -1.252342 ], [ -74.113770, -1.010690 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.065918 ], [ -75.366211, -0.153808 ], [ -75.234375, -0.922812 ], [ -75.541992, -1.559866 ], [ -75.739746, -1.757537 ], [ -80.815430, -1.757537 ], [ -80.925293, -1.054628 ], [ -80.573730, -0.900842 ], [ -80.397949, -0.285643 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.988720 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.757537 ], [ -78.662109, 2.262595 ], [ -78.420410, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.124023, 3.842332 ], [ -77.497559, 4.083453 ], [ -77.299805, 4.674980 ], [ -77.541504, 5.572250 ], [ -77.321777, 5.834616 ], [ -77.475586, 6.686431 ], [ -77.871094, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.420410, 8.059230 ], [ -78.178711, 8.320212 ], [ -78.442383, 8.385431 ], [ -78.618164, 8.711359 ], [ -79.123535, 8.993600 ], [ -79.562988, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.156250, 8.341953 ], [ -80.375977, 8.298470 ], [ -80.485840, 8.080985 ], [ -80.002441, 7.536764 ], [ -80.266113, 7.427837 ], [ -80.419922, 7.275292 ], [ -80.881348, 7.209900 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.710992 ], [ -81.716309, 8.102739 ], [ -82.133789, 8.167993 ], [ -82.397461, 8.298470 ], [ -82.814941, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -83.496094, 8.450639 ], [ -83.715820, 8.646196 ], [ -83.583984, 8.819939 ], [ -83.627930, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.638672, 9.622414 ], [ -84.704590, 9.903921 ], [ -84.968262, 10.077037 ], [ -84.902344, 9.795678 ], [ -85.100098, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.649414, 9.925566 ], [ -85.803223, 10.141932 ], [ -85.781250, 10.444598 ], [ -85.649414, 10.746969 ], [ -85.935059, 10.898042 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.802834 ], [ -86.748047, 12.146746 ], [ -87.165527, 12.447305 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.385254, 12.918907 ], [ -87.319336, 12.983148 ], [ -87.495117, 13.304103 ], [ -87.780762, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.154376 ], [ -88.835449, 13.261333 ], [ -89.252930, 13.453737 ], [ -89.802246, 13.517838 ], [ -90.000000, 13.667338 ], [ -90.087891, 13.731381 ], [ -90.615234, 13.902076 ], [ -91.230469, 13.923404 ], [ -91.757812, 14.179186 ], [ -91.757812, 18.771115 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.290406 ], [ -90.527344, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.648926, 21.453069 ], [ -87.055664, 21.534847 ] ] ], [ [ [ -77.409668, 62.552857 ], [ -75.695801, 62.278146 ], [ -74.663086, 62.175760 ], [ -73.828125, 62.441242 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.522695 ], [ -71.367188, 61.132629 ], [ -69.587402, 61.058285 ], [ -69.609375, 60.217991 ], [ -69.279785, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.236816, 59.866883 ], [ -64.577637, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.490234, 58.170702 ], [ -61.391602, 56.968936 ], [ -61.787109, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.963867, 54.939766 ], [ -57.326660, 54.622978 ], [ -56.931152, 53.774689 ], [ -56.162109, 53.644638 ], [ -55.744629, 53.265213 ], [ -55.678711, 52.146973 ], [ -57.128906, 51.412912 ], [ -58.776855, 51.069017 ], [ -60.029297, 50.247205 ], [ -61.721191, 50.078295 ], [ -63.852539, 50.289339 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.960938, 47.739323 ], [ -71.103516, 46.815099 ], [ -70.246582, 46.980252 ], [ -68.642578, 48.297812 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.224773 ], [ -64.160156, 48.734455 ], [ -65.104980, 48.063397 ], [ -64.797363, 46.995241 ], [ -64.467773, 46.240652 ], [ -63.171387, 45.736860 ], [ -61.523438, 45.890008 ], [ -60.512695, 47.010226 ], [ -60.446777, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.259422 ], [ -63.259277, 44.668653 ], [ -64.248047, 44.260937 ], [ -65.368652, 43.548548 ], [ -66.115723, 43.612217 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.126465, 45.135555 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.675818 ], [ -70.642090, 43.084937 ], [ -70.817871, 42.859860 ], [ -70.817871, 42.326062 ], [ -70.488281, 41.804078 ], [ -70.070801, 41.771312 ], [ -70.180664, 42.147114 ], [ -69.873047, 41.918629 ], [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.492121 ], [ -71.850586, 41.310824 ], [ -72.883301, 41.211722 ], [ -73.718262, 40.930115 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.959961, 40.747257 ], [ -74.245605, 40.480381 ], [ -73.959961, 40.430224 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.942321 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.249271 ], [ -75.520020, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.366211, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.247821 ], [ -75.717773, 37.944198 ], [ -76.223145, 38.324420 ], [ -76.354980, 39.147103 ], [ -76.530762, 38.719805 ], [ -76.333008, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.311035, 37.909534 ], [ -76.267090, 36.967449 ], [ -75.959473, 36.897194 ], [ -75.871582, 36.544949 ], [ -75.717773, 35.550105 ], [ -76.354980, 34.813803 ], [ -77.387695, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.852170 ], [ -79.057617, 33.486435 ], [ -79.211426, 33.155948 ], [ -80.310059, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.031055 ], [ -80.969238, 29.171349 ], [ -80.529785, 28.478349 ], [ -80.529785, 28.033198 ], [ -80.046387, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.320801, 25.641526 ], [ -81.716309, 25.859224 ], [ -82.705078, 27.488781 ], [ -82.858887, 27.877928 ], [ -82.639160, 28.555576 ], [ -82.924805, 29.094577 ], [ -83.715820, 29.935895 ], [ -84.089355, 30.088108 ], [ -85.100098, 29.630771 ], [ -85.275879, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.391830 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.582520, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -91.757812, 29.649869 ], [ -91.757812, 57.160078 ], [ -90.900879, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.033203, 56.848972 ], [ -88.044434, 56.474628 ], [ -87.319336, 55.998381 ], [ -86.066895, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.241552 ], [ -82.265625, 55.153766 ], [ -82.441406, 54.278055 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.536086 ], [ -78.596191, 52.562995 ], [ -79.123535, 54.136696 ], [ -79.826660, 54.661124 ], [ -78.222656, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.530762, 56.535258 ], [ -76.618652, 57.207710 ], [ -77.299805, 58.054632 ], [ -78.508301, 58.802362 ], [ -77.343750, 59.855851 ], [ -77.761230, 60.759160 ], [ -78.112793, 62.319003 ], [ -77.409668, 62.552857 ] ] ], [ [ [ -5.932617, 35.764343 ], [ -5.185547, 35.746512 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.592773, 35.173808 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.524661 ], [ -1.735840, 33.925130 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.657876 ], [ -1.296387, 32.268555 ], [ -2.614746, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.647461, 31.634676 ], [ -3.691406, 30.902225 ], [ -4.855957, 30.505484 ], [ -5.251465, 29.993002 ], [ -6.064453, 29.726222 ], [ -7.053223, 29.573457 ], [ -8.679199, 28.844674 ], [ -8.657227, 27.664069 ], [ -8.679199, 27.391278 ], [ -4.921875, 24.966140 ], [ 0.000000, 21.800308 ], [ 1.757812, 20.653346 ], [ 1.757812, 15.347762 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.966013 ], [ 0.373535, 14.923554 ], [ 0.307617, 14.434680 ], [ 0.439453, 13.987376 ], [ 0.988770, 13.325485 ], [ 1.032715, 12.854649 ], [ 1.757812, 12.704651 ], [ 1.757812, 11.609193 ], [ 1.450195, 11.544616 ], [ 1.252441, 11.113727 ], [ 0.900879, 11.005904 ], [ 0.021973, 11.027472 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.639014 ], [ 0.373535, 10.185187 ], [ 0.373535, 9.470736 ], [ 0.461426, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.904614 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.331644 ], [ -1.054688, 5.003394 ], [ -1.955566, 4.718778 ], [ -2.856445, 5.003394 ], [ -3.317871, 4.981505 ], [ -3.999023, 5.178482 ], [ -4.658203, 5.156599 ], [ -5.822754, 4.981505 ], [ -7.514648, 4.346411 ], [ -7.976074, 4.346411 ], [ -9.008789, 4.828260 ], [ -9.909668, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.447754, 6.773716 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.253496 ], [ -12.941895, 7.798079 ], [ -13.117676, 8.167993 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.492408 ], [ -14.062500, 9.882275 ], [ -14.326172, 10.012130 ], [ -14.567871, 10.206813 ], [ -14.699707, 10.660608 ], [ -14.831543, 10.876465 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.303711, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.831055, 13.154376 ], [ -16.721191, 13.603278 ], [ -17.116699, 14.370834 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.923554 ], [ -16.699219, 15.623037 ], [ -16.457520, 16.130262 ], [ -16.545410, 16.678293 ], [ -16.259766, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.103648 ], [ -16.369629, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.962891, 21.881890 ], [ -16.589355, 22.167058 ], [ -16.259766, 22.674847 ], [ -16.325684, 23.019076 ], [ -15.974121, 23.725012 ], [ -15.424805, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.436035, 26.254010 ], [ -13.776855, 26.608174 ], [ -13.139648, 27.644606 ], [ -12.612305, 28.033198 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.825425 ], [ -10.393066, 29.094577 ], [ -9.558105, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.426270, 32.045333 ], [ -9.294434, 32.565333 ], [ -8.657227, 33.247876 ], [ -7.646484, 33.687782 ], [ -6.921387, 34.107256 ], [ -6.240234, 35.137879 ], [ -5.932617, 35.764343 ] ] ], [ [ [ -33.530273, 67.204032 ], [ -34.211426, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.937514 ], [ -38.364258, 65.694476 ], [ -39.814453, 65.458261 ], [ -40.671387, 64.839597 ], [ -40.671387, 64.139369 ], [ -41.176758, 63.479957 ], [ -42.824707, 62.684228 ], [ -42.407227, 61.897578 ], [ -43.374023, 60.097718 ], [ -44.780273, 60.031930 ], [ -46.252441, 60.855613 ], [ -48.251953, 60.855613 ], [ -49.240723, 61.407236 ], [ -49.899902, 62.380185 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.273223 ], [ -52.272949, 65.173806 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -53.964844, 67.204032 ], [ -33.530273, 67.204032 ] ] ], [ [ [ -63.852539, 67.204032 ], [ -63.413086, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.421730 ], [ -66.708984, 66.390361 ], [ -68.005371, 66.258011 ], [ -68.137207, 65.685430 ], [ -67.082520, 65.109148 ], [ -65.720215, 64.652112 ], [ -65.324707, 64.377941 ], [ -64.665527, 63.391522 ], [ -65.017090, 62.674143 ], [ -66.269531, 62.945231 ], [ -68.774414, 63.743631 ], [ -67.368164, 62.885205 ], [ -66.335449, 62.278146 ], [ -66.159668, 61.928612 ], [ -68.884277, 62.329208 ], [ -71.015625, 62.905227 ], [ -72.224121, 63.401361 ], [ -71.894531, 63.675506 ], [ -74.838867, 64.680318 ], [ -74.816895, 64.387441 ], [ -77.717285, 64.225493 ], [ -78.552246, 64.576754 ], [ -77.893066, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.289551, 65.811781 ], [ -73.937988, 66.311035 ], [ -73.674316, 66.513260 ], [ -72.751465, 67.204032 ], [ -63.852539, 67.204032 ] ] ], [ [ [ -3.010254, 58.631217 ], [ -4.064941, 57.551208 ], [ -3.054199, 57.692406 ], [ -1.955566, 57.680660 ], [ -2.219238, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.622978 ], [ -0.439453, 54.457267 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.317749 ], [ 0.461426, 52.935397 ], [ 1.691895, 52.736292 ], [ 1.560059, 52.093008 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.764259 ], [ -0.791016, 50.778155 ], [ -2.482910, 50.499452 ], [ -2.944336, 50.694718 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.306641, 51.206883 ], [ -3.405762, 51.426614 ], [ -4.987793, 51.590723 ], [ -5.273438, 51.984880 ], [ -4.218750, 52.295042 ], [ -4.768066, 52.842595 ], [ -4.570312, 53.488046 ], [ -3.098145, 53.409532 ], [ -2.944336, 53.981935 ], [ -3.625488, 54.610255 ], [ -4.833984, 54.788017 ], [ -5.075684, 55.065787 ], [ -4.724121, 55.503750 ], [ -5.053711, 55.788929 ], [ -5.581055, 55.304138 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.778809, 57.821355 ], [ -5.009766, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.631217 ] ] ], [ [ [ -81.364746, 67.204032 ], [ -81.386719, 67.110204 ], [ -83.056641, 66.513260 ], [ -83.342285, 66.407955 ], [ -84.726562, 66.258011 ], [ -85.605469, 66.513260 ], [ -85.759277, 66.557007 ], [ -85.803223, 66.513260 ], [ -86.066895, 66.053716 ], [ -87.033691, 65.210683 ], [ -87.319336, 64.774125 ], [ -88.483887, 64.101007 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.955223 ], [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ] ] ], [ [ [ -16.171875, 66.530768 ], [ -15.864258, 66.513260 ], [ -14.501953, 66.451887 ], [ -14.743652, 65.811781 ], [ -13.601074, 65.127638 ], [ -14.919434, 64.358931 ], [ -17.797852, 63.675506 ], [ -18.654785, 63.499573 ], [ -22.763672, 63.956673 ], [ -21.774902, 64.396938 ], [ -23.950195, 64.886265 ], [ -22.192383, 65.081389 ], [ -22.236328, 65.375994 ], [ -24.323730, 65.612952 ], [ -23.642578, 66.258011 ], [ -22.126465, 66.407955 ], [ -20.566406, 65.730626 ], [ -19.050293, 66.275698 ], [ -17.797852, 65.991212 ], [ -16.215820, 66.513260 ], [ -16.171875, 66.530768 ] ] ], [ [ [ -55.876465, 51.631657 ], [ -55.415039, 51.590723 ], [ -56.799316, 49.809632 ], [ -56.140137, 50.148746 ], [ -55.480957, 49.937080 ], [ -55.810547, 49.582226 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.553726 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.954102, 48.151428 ], [ -52.646484, 47.532038 ], [ -53.063965, 46.649436 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.800059 ], [ -53.964844, 47.620975 ], [ -54.228516, 47.754098 ], [ -55.393066, 46.890232 ], [ -55.986328, 46.920255 ], [ -55.283203, 47.383474 ], [ -56.250000, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.260254, 47.606163 ], [ -59.414062, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.516604 ], [ -58.381348, 49.124219 ], [ -57.348633, 50.722547 ], [ -56.733398, 51.289406 ], [ -55.876465, 51.631657 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.968262, 65.219894 ], [ -84.462891, 65.366837 ], [ -83.891602, 65.109148 ], [ -82.792969, 64.764759 ], [ -81.650391, 64.453849 ], [ -81.562500, 63.975961 ], [ -80.815430, 64.052978 ], [ -80.112305, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.551270, 63.646259 ], [ -83.100586, 64.101007 ], [ -84.089355, 63.568120 ], [ -85.517578, 63.054959 ], [ -85.869141, 63.636504 ], [ -87.231445, 63.538763 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.820907 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -6.723633, 55.166319 ], [ -5.668945, 54.559323 ], [ -6.196289, 53.865486 ], [ -6.042480, 53.146770 ], [ -6.789551, 52.254709 ], [ -8.569336, 51.672555 ], [ -9.975586, 51.822198 ], [ -9.162598, 52.869130 ], [ -9.689941, 53.878440 ], [ -8.327637, 54.661124 ], [ -7.580566, 55.128649 ], [ -6.723633, 55.166319 ] ] ], [ [ [ -8.261719, 42.277309 ], [ -8.020020, 41.787697 ], [ -7.426758, 41.787697 ], [ -7.250977, 41.918629 ], [ -6.657715, 41.885921 ], [ -6.394043, 41.376809 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.329796 ], [ -7.031250, 40.178873 ], [ -7.075195, 39.707187 ], [ -7.492676, 39.622615 ], [ -7.097168, 39.027719 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.163086, 37.805444 ], [ -7.536621, 37.422526 ], [ -7.448730, 37.090240 ], [ -7.844238, 36.844461 ], [ -8.371582, 36.985003 ], [ -8.898926, 36.862043 ], [ -8.745117, 37.649034 ], [ -8.833008, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.736946 ], [ -9.448242, 39.385264 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.767090, 40.763901 ], [ -8.789062, 41.178654 ], [ -8.986816, 41.541478 ], [ -9.030762, 41.885921 ], [ -8.679199, 42.130821 ], [ -8.261719, 42.277309 ] ] ], [ [ [ -82.265625, 23.180764 ], [ -81.408691, 23.120154 ], [ -80.617676, 23.099944 ], [ -79.672852, 22.755921 ], [ -79.277344, 22.390714 ], [ -78.354492, 22.512557 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.585938, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.926758, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.289551, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.629883, 19.870060 ], [ -76.333008, 19.952696 ], [ -77.761230, 19.849394 ], [ -77.080078, 20.406420 ], [ -77.497559, 20.673905 ], [ -78.134766, 20.735566 ], [ -78.486328, 21.022983 ], [ -78.728027, 21.596151 ], [ -79.277344, 21.555284 ], [ -80.222168, 21.820708 ], [ -80.507812, 22.044913 ], [ -81.826172, 22.187405 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.634293 ], [ -82.770996, 22.695120 ], [ -83.496094, 22.167058 ], [ -83.913574, 22.146708 ], [ -84.045410, 21.902278 ], [ -84.550781, 21.800308 ], [ -84.968262, 21.902278 ], [ -84.440918, 22.207749 ], [ -84.221191, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.978624 ], [ -82.507324, 23.079732 ], [ -82.265625, 23.180764 ] ] ], [ [ [ -73.190918, 19.911384 ], [ -72.575684, 19.870060 ], [ -71.718750, 19.704658 ], [ -71.586914, 19.890723 ], [ -70.795898, 19.870060 ], [ -70.202637, 19.621892 ], [ -69.938965, 19.642588 ], [ -69.763184, 19.290406 ], [ -69.213867, 19.311143 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.979026 ], [ -68.312988, 18.604601 ], [ -68.686523, 18.208480 ], [ -69.169922, 18.417079 ], [ -69.631348, 18.375379 ], [ -69.960938, 18.417079 ], [ -70.136719, 18.250220 ], [ -70.510254, 18.187607 ], [ -70.664062, 18.417079 ], [ -70.993652, 18.291950 ], [ -71.389160, 17.602139 ], [ -71.652832, 17.748687 ], [ -71.696777, 18.041421 ], [ -72.377930, 18.208480 ], [ -72.839355, 18.145852 ], [ -73.454590, 18.208480 ], [ -73.916016, 18.020528 ], [ -74.465332, 18.333669 ], [ -74.377441, 18.667063 ], [ -72.685547, 18.437925 ], [ -72.333984, 18.667063 ], [ -72.795410, 19.103648 ], [ -72.773438, 19.476950 ], [ -73.410645, 19.642588 ], [ -73.190918, 19.911384 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.870117, 62.905227 ], [ -81.892090, 62.714462 ], [ -83.056641, 62.155241 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.451406 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -64.182129, 49.951220 ], [ -62.863770, 49.710273 ], [ -61.831055, 49.282140 ], [ -61.809082, 49.109838 ], [ -62.292480, 49.081062 ], [ -63.588867, 49.396675 ], [ -64.511719, 49.866317 ], [ -64.182129, 49.951220 ] ] ], [ [ [ -79.936523, 62.380185 ], [ -79.519043, 62.359805 ], [ -79.255371, 62.155241 ], [ -79.650879, 61.627286 ], [ -80.090332, 61.721118 ], [ -80.354004, 62.011218 ], [ -80.310059, 62.083315 ], [ -79.936523, 62.380185 ] ] ], [ [ [ -77.805176, 18.521283 ], [ -76.904297, 18.396230 ], [ -76.354980, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.761230, 17.853290 ], [ -78.332520, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.521283 ] ] ], [ [ [ -61.105957, 10.898042 ], [ -60.886230, 10.854886 ], [ -60.930176, 10.098670 ], [ -61.765137, 9.990491 ], [ -61.940918, 10.098670 ], [ -61.655273, 10.358151 ], [ -61.677246, 10.768556 ], [ -61.105957, 10.898042 ] ] ], [ [ [ -66.291504, 18.521283 ], [ -65.764160, 18.417079 ], [ -65.588379, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.599121, 17.978733 ], [ -67.192383, 17.936929 ], [ -67.236328, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ], [ [ [ -78.178711, 25.204941 ], [ -77.893066, 25.165173 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.704895 ], [ -78.024902, 24.287027 ], [ -78.398438, 24.567108 ], [ -78.178711, 25.204941 ] ] ], [ [ [ -78.508301, 26.863281 ], [ -77.849121, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.903809, 26.411551 ], [ -78.969727, 26.784847 ], [ -78.508301, 26.863281 ] ] ], [ [ [ -77.783203, 27.039557 ], [ -76.992188, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.365723, 25.997550 ], [ -77.343750, 26.529565 ], [ -77.783203, 26.922070 ], [ -77.783203, 27.039557 ] ] ], [ [ [ -75.739746, 67.204032 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.036133, 67.204032 ], [ -75.739746, 67.204032 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.055664, 21.534847 ], [ -86.813965, 21.330315 ], [ -86.835938, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.642588 ], [ -87.429199, 19.476950 ], [ -87.846680, 18.250220 ], [ -88.088379, 18.521283 ], [ -88.308105, 18.500447 ], [ -88.286133, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.256867 ], [ -88.725586, 16.235772 ], [ -88.923340, 15.876809 ], [ -88.593750, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.110352, 15.686510 ], [ -87.890625, 15.855674 ], [ -87.604980, 15.876809 ], [ -87.517090, 15.792254 ], [ -87.363281, 15.855674 ], [ -86.901855, 15.749963 ], [ -86.440430, 15.771109 ], [ -86.110840, 15.897942 ], [ -86.000977, 16.003576 ], [ -85.451660, 15.876809 ], [ -85.187988, 15.897942 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.834536 ], [ -84.067383, 15.644197 ], [ -83.781738, 15.432501 ], [ -83.408203, 15.262989 ], [ -83.144531, 14.987240 ], [ -83.232422, 14.902322 ], [ -83.276367, 14.668626 ], [ -83.188477, 14.306969 ], [ -83.408203, 13.966054 ], [ -83.518066, 13.560562 ], [ -83.540039, 13.132979 ], [ -83.496094, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.318536 ], [ -83.715820, 11.888853 ], [ -83.649902, 11.630716 ], [ -83.847656, 11.372339 ], [ -83.803711, 11.092166 ], [ -83.649902, 10.941192 ], [ -83.408203, 10.401378 ], [ -82.177734, 9.210560 ], [ -82.199707, 8.993600 ], [ -81.804199, 8.950193 ], [ -81.716309, 9.037003 ], [ -81.430664, 8.776511 ], [ -80.947266, 8.863362 ], [ -80.529785, 9.102097 ], [ -79.914551, 9.318990 ], [ -79.562988, 9.600750 ], [ -79.013672, 9.557417 ], [ -79.057617, 9.449062 ], [ -78.508301, 9.427387 ], [ -78.046875, 9.253936 ], [ -77.717285, 8.950193 ], [ -77.343750, 8.667918 ], [ -77.475586, 8.515836 ], [ -77.233887, 7.928675 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.871094, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.420410, 8.059230 ], [ -78.178711, 8.320212 ], [ -78.442383, 8.385431 ], [ -78.618164, 8.711359 ], [ -79.123535, 8.993600 ], [ -79.562988, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.156250, 8.341953 ], [ -80.375977, 8.298470 ], [ -80.485840, 8.080985 ], [ -80.002441, 7.536764 ], [ -80.266113, 7.427837 ], [ -80.419922, 7.275292 ], [ -80.881348, 7.209900 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.710992 ], [ -81.716309, 8.102739 ], [ -82.133789, 8.167993 ], [ -82.397461, 8.298470 ], [ -82.814941, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -83.496094, 8.450639 ], [ -83.715820, 8.646196 ], [ -83.583984, 8.819939 ], [ -83.627930, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.638672, 9.622414 ], [ -84.704590, 9.903921 ], [ -84.968262, 10.077037 ], [ -84.902344, 9.795678 ], [ -85.100098, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.649414, 9.925566 ], [ -85.803223, 10.141932 ], [ -85.781250, 10.444598 ], [ -85.649414, 10.746969 ], [ -85.935059, 10.898042 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.802834 ], [ -86.748047, 12.146746 ], [ -87.165527, 12.447305 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.385254, 12.918907 ], [ -87.319336, 12.983148 ], [ -87.495117, 13.304103 ], [ -87.780762, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.154376 ], [ -88.835449, 13.261333 ], [ -89.252930, 13.453737 ], [ -89.802246, 13.517838 ], [ -90.000000, 13.667338 ], [ -90.087891, 13.731381 ], [ -90.615234, 13.902076 ], [ -91.230469, 13.923404 ], [ -91.757812, 14.179186 ], [ -91.757812, 18.771115 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.290406 ], [ -90.527344, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.648926, 21.453069 ], [ -87.055664, 21.534847 ] ] ], [ [ [ -64.006348, 47.040182 ], [ -63.654785, 46.543750 ], [ -62.929688, 46.407564 ], [ -62.006836, 46.437857 ], [ -62.512207, 46.027482 ], [ -62.863770, 45.966425 ], [ -64.138184, 46.392411 ], [ -64.401855, 46.724800 ], [ -64.006348, 47.040182 ] ] ], [ [ [ -77.409668, 62.552857 ], [ -75.695801, 62.278146 ], [ -74.663086, 62.175760 ], [ -73.828125, 62.441242 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.522695 ], [ -71.367188, 61.132629 ], [ -69.587402, 61.058285 ], [ -69.609375, 60.217991 ], [ -69.279785, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.236816, 59.866883 ], [ -64.577637, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.490234, 58.170702 ], [ -61.391602, 56.968936 ], [ -61.787109, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.963867, 54.939766 ], [ -57.326660, 54.622978 ], [ -56.931152, 53.774689 ], [ -56.162109, 53.644638 ], [ -55.744629, 53.265213 ], [ -55.678711, 52.146973 ], [ -57.128906, 51.412912 ], [ -58.776855, 51.069017 ], [ -60.029297, 50.247205 ], [ -61.721191, 50.078295 ], [ -63.852539, 50.289339 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.960938, 47.739323 ], [ -71.103516, 46.815099 ], [ -70.246582, 46.980252 ], [ -68.642578, 48.297812 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.224773 ], [ -64.160156, 48.734455 ], [ -65.104980, 48.063397 ], [ -64.797363, 46.995241 ], [ -64.467773, 46.240652 ], [ -63.171387, 45.736860 ], [ -61.523438, 45.890008 ], [ -60.512695, 47.010226 ], [ -60.446777, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.259422 ], [ -63.259277, 44.668653 ], [ -64.248047, 44.260937 ], [ -65.368652, 43.548548 ], [ -66.115723, 43.612217 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.126465, 45.135555 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.675818 ], [ -70.642090, 43.084937 ], [ -70.817871, 42.859860 ], [ -70.817871, 42.326062 ], [ -70.488281, 41.804078 ], [ -70.070801, 41.771312 ], [ -70.180664, 42.147114 ], [ -69.873047, 41.918629 ], [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.492121 ], [ -71.850586, 41.310824 ], [ -72.883301, 41.211722 ], [ -73.718262, 40.930115 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.959961, 40.747257 ], [ -74.245605, 40.480381 ], [ -73.959961, 40.430224 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.942321 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.249271 ], [ -75.520020, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.366211, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.247821 ], [ -75.717773, 37.944198 ], [ -76.223145, 38.324420 ], [ -76.354980, 39.147103 ], [ -76.530762, 38.719805 ], [ -76.333008, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.311035, 37.909534 ], [ -76.267090, 36.967449 ], [ -75.959473, 36.897194 ], [ -75.871582, 36.544949 ], [ -75.717773, 35.550105 ], [ -76.354980, 34.813803 ], [ -77.387695, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.852170 ], [ -79.057617, 33.486435 ], [ -79.211426, 33.155948 ], [ -80.310059, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.031055 ], [ -80.969238, 29.171349 ], [ -80.529785, 28.478349 ], [ -80.529785, 28.033198 ], [ -80.046387, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.320801, 25.641526 ], [ -81.716309, 25.859224 ], [ -82.705078, 27.488781 ], [ -82.858887, 27.877928 ], [ -82.639160, 28.555576 ], [ -82.924805, 29.094577 ], [ -83.715820, 29.935895 ], [ -84.089355, 30.088108 ], [ -85.100098, 29.630771 ], [ -85.275879, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.391830 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.582520, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -91.757812, 29.649869 ], [ -91.757812, 57.160078 ], [ -90.900879, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.033203, 56.848972 ], [ -88.044434, 56.474628 ], [ -87.319336, 55.998381 ], [ -86.066895, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.241552 ], [ -82.265625, 55.153766 ], [ -82.441406, 54.278055 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.536086 ], [ -78.596191, 52.562995 ], [ -79.123535, 54.136696 ], [ -79.826660, 54.661124 ], [ -78.222656, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.530762, 56.535258 ], [ -76.618652, 57.207710 ], [ -77.299805, 58.054632 ], [ -78.508301, 58.802362 ], [ -77.343750, 59.855851 ], [ -77.761230, 60.759160 ], [ -78.112793, 62.319003 ], [ -77.409668, 62.552857 ] ] ], [ [ [ -33.530273, 67.204032 ], [ -34.211426, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.937514 ], [ -38.364258, 65.694476 ], [ -39.814453, 65.458261 ], [ -40.671387, 64.839597 ], [ -40.671387, 64.139369 ], [ -41.176758, 63.479957 ], [ -42.824707, 62.684228 ], [ -42.407227, 61.897578 ], [ -43.374023, 60.097718 ], [ -44.780273, 60.031930 ], [ -46.252441, 60.855613 ], [ -48.251953, 60.855613 ], [ -49.240723, 61.407236 ], [ -49.899902, 62.380185 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.273223 ], [ -52.272949, 65.173806 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -53.964844, 67.204032 ], [ -33.530273, 67.204032 ] ] ], [ [ [ -63.852539, 67.204032 ], [ -63.413086, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.421730 ], [ -66.708984, 66.390361 ], [ -68.005371, 66.258011 ], [ -68.137207, 65.685430 ], [ -67.082520, 65.109148 ], [ -65.720215, 64.652112 ], [ -65.324707, 64.377941 ], [ -64.665527, 63.391522 ], [ -65.017090, 62.674143 ], [ -66.269531, 62.945231 ], [ -68.774414, 63.743631 ], [ -67.368164, 62.885205 ], [ -66.335449, 62.278146 ], [ -66.159668, 61.928612 ], [ -68.884277, 62.329208 ], [ -71.015625, 62.905227 ], [ -72.224121, 63.401361 ], [ -71.894531, 63.675506 ], [ -74.838867, 64.680318 ], [ -74.816895, 64.387441 ], [ -77.717285, 64.225493 ], [ -78.552246, 64.576754 ], [ -77.893066, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.289551, 65.811781 ], [ -73.937988, 66.311035 ], [ -73.674316, 66.513260 ], [ -72.751465, 67.204032 ], [ -63.852539, 67.204032 ] ] ], [ [ [ -81.364746, 67.204032 ], [ -81.386719, 67.110204 ], [ -83.056641, 66.513260 ], [ -83.342285, 66.407955 ], [ -84.726562, 66.258011 ], [ -85.605469, 66.513260 ], [ -85.759277, 66.557007 ], [ -85.803223, 66.513260 ], [ -86.066895, 66.053716 ], [ -87.033691, 65.210683 ], [ -87.319336, 64.774125 ], [ -88.483887, 64.101007 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.955223 ], [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ] ] ], [ [ [ -55.876465, 51.631657 ], [ -55.415039, 51.590723 ], [ -56.799316, 49.809632 ], [ -56.140137, 50.148746 ], [ -55.480957, 49.937080 ], [ -55.810547, 49.582226 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.553726 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.954102, 48.151428 ], [ -52.646484, 47.532038 ], [ -53.063965, 46.649436 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.800059 ], [ -53.964844, 47.620975 ], [ -54.228516, 47.754098 ], [ -55.393066, 46.890232 ], [ -55.986328, 46.920255 ], [ -55.283203, 47.383474 ], [ -56.250000, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.260254, 47.606163 ], [ -59.414062, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.516604 ], [ -58.381348, 49.124219 ], [ -57.348633, 50.722547 ], [ -56.733398, 51.289406 ], [ -55.876465, 51.631657 ] ] ], [ [ [ -77.805176, 18.521283 ], [ -76.904297, 18.396230 ], [ -76.354980, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.761230, 17.853290 ], [ -78.332520, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.521283 ] ] ], [ [ [ -73.190918, 19.911384 ], [ -72.575684, 19.870060 ], [ -71.718750, 19.704658 ], [ -71.630859, 19.165924 ], [ -71.696777, 18.791918 ], [ -71.938477, 18.625425 ], [ -71.696777, 18.312811 ], [ -71.696777, 18.041421 ], [ -72.377930, 18.208480 ], [ -72.839355, 18.145852 ], [ -73.454590, 18.208480 ], [ -73.916016, 18.020528 ], [ -74.465332, 18.333669 ], [ -74.377441, 18.667063 ], [ -72.685547, 18.437925 ], [ -72.333984, 18.667063 ], [ -72.795410, 19.103648 ], [ -72.773438, 19.476950 ], [ -73.410645, 19.642588 ], [ -73.190918, 19.911384 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.968262, 65.219894 ], [ -84.462891, 65.366837 ], [ -83.891602, 65.109148 ], [ -82.792969, 64.764759 ], [ -81.650391, 64.453849 ], [ -81.562500, 63.975961 ], [ -80.815430, 64.052978 ], [ -80.112305, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.551270, 63.646259 ], [ -83.100586, 64.101007 ], [ -84.089355, 63.568120 ], [ -85.517578, 63.054959 ], [ -85.869141, 63.636504 ], [ -87.231445, 63.538763 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.820907 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -82.265625, 23.180764 ], [ -81.408691, 23.120154 ], [ -80.617676, 23.099944 ], [ -79.672852, 22.755921 ], [ -79.277344, 22.390714 ], [ -78.354492, 22.512557 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.585938, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.926758, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.289551, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.629883, 19.870060 ], [ -76.333008, 19.952696 ], [ -77.761230, 19.849394 ], [ -77.080078, 20.406420 ], [ -77.497559, 20.673905 ], [ -78.134766, 20.735566 ], [ -78.486328, 21.022983 ], [ -78.728027, 21.596151 ], [ -79.277344, 21.555284 ], [ -80.222168, 21.820708 ], [ -80.507812, 22.044913 ], [ -81.826172, 22.187405 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.634293 ], [ -82.770996, 22.695120 ], [ -83.496094, 22.167058 ], [ -83.913574, 22.146708 ], [ -84.045410, 21.902278 ], [ -84.550781, 21.800308 ], [ -84.968262, 21.902278 ], [ -84.440918, 22.207749 ], [ -84.221191, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.978624 ], [ -82.507324, 23.079732 ], [ -82.265625, 23.180764 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.870117, 62.905227 ], [ -81.892090, 62.714462 ], [ -83.056641, 62.155241 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.451406 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -64.182129, 49.951220 ], [ -62.863770, 49.710273 ], [ -61.831055, 49.282140 ], [ -61.809082, 49.109838 ], [ -62.292480, 49.081062 ], [ -63.588867, 49.396675 ], [ -64.511719, 49.866317 ], [ -64.182129, 49.951220 ] ] ], [ [ [ -79.936523, 62.380185 ], [ -79.519043, 62.359805 ], [ -79.255371, 62.155241 ], [ -79.650879, 61.627286 ], [ -80.090332, 61.721118 ], [ -80.354004, 62.011218 ], [ -80.310059, 62.083315 ], [ -79.936523, 62.380185 ] ] ], [ [ [ -78.178711, 25.204941 ], [ -77.893066, 25.165173 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.704895 ], [ -78.024902, 24.287027 ], [ -78.398438, 24.567108 ], [ -78.178711, 25.204941 ] ] ], [ [ [ -78.508301, 26.863281 ], [ -77.849121, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.903809, 26.411551 ], [ -78.969727, 26.784847 ], [ -78.508301, 26.863281 ] ] ], [ [ [ -77.783203, 27.039557 ], [ -76.992188, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.365723, 25.997550 ], [ -77.343750, 26.529565 ], [ -77.783203, 26.922070 ], [ -77.783203, 27.039557 ] ] ], [ [ [ -75.739746, 67.204032 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.036133, 67.204032 ], [ -75.739746, 67.204032 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.762695, 12.425848 ], [ -71.389160, 12.382928 ], [ -71.125488, 12.103781 ], [ -71.323242, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.938477, 11.415418 ], [ -71.608887, 10.962764 ], [ -71.630859, 10.444598 ], [ -72.070312, 9.860628 ], [ -71.696777, 9.080400 ], [ -71.257324, 9.145486 ], [ -71.037598, 9.860628 ], [ -71.345215, 10.206813 ], [ -71.389160, 10.962764 ], [ -70.158691, 11.372339 ], [ -70.290527, 11.845847 ], [ -69.938965, 12.168226 ], [ -69.587402, 11.458491 ], [ -68.884277, 11.436955 ], [ -68.225098, 10.876465 ], [ -68.203125, 10.552622 ], [ -67.302246, 10.552622 ], [ -66.225586, 10.639014 ], [ -65.654297, 10.206813 ], [ -64.885254, 10.077037 ], [ -64.335938, 10.379765 ], [ -64.313965, 10.639014 ], [ -63.083496, 10.703792 ], [ -61.875000, 10.703792 ], [ -62.731934, 10.422988 ], [ -62.380371, 9.947209 ], [ -61.589355, 9.882275 ], [ -60.820312, 9.384032 ], [ -60.666504, 8.581021 ], [ -60.139160, 8.602747 ], [ -59.106445, 7.993957 ], [ -58.491211, 7.340675 ], [ -58.447266, 6.839170 ], [ -58.073730, 6.817353 ], [ -57.150879, 5.965754 ], [ -55.942383, 5.769036 ], [ -55.832520, 5.943900 ], [ -55.041504, 6.031311 ], [ -53.964844, 5.747174 ], [ -54.470215, 4.893941 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.184394 ], [ -54.272461, 2.723583 ], [ -54.514160, 2.306506 ], [ -55.085449, 2.526037 ], [ -55.568848, 2.416276 ], [ -55.964355, 2.504085 ], [ -56.074219, 2.218684 ], [ -55.898438, 2.021065 ], [ -55.986328, 1.823423 ], [ -56.535645, 1.889306 ], [ -56.777344, 1.867345 ], [ -57.326660, 1.955187 ], [ -57.656250, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.425293, 1.472006 ], [ -58.535156, 1.274309 ], [ -59.018555, 1.318243 ], [ -59.633789, 1.779499 ], [ -59.721680, 2.240640 ], [ -59.963379, 2.745531 ], [ -59.809570, 3.601142 ], [ -59.545898, 3.951941 ], [ -59.765625, 4.412137 ], [ -60.117188, 4.565474 ], [ -59.985352, 5.003394 ], [ -60.205078, 5.244128 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.797852, 3.995781 ], [ -63.083496, 3.776559 ], [ -63.896484, 4.017699 ], [ -64.621582, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.357910, 3.798484 ], [ -64.401855, 3.118576 ], [ -64.270020, 2.504085 ], [ -63.413086, 2.416276 ], [ -63.369141, 2.196727 ], [ -64.072266, 1.911267 ], [ -64.204102, 1.493971 ], [ -65.346680, 1.098565 ], [ -65.544434, 0.790990 ], [ -66.313477, 0.725078 ], [ -66.884766, 1.252342 ], [ -67.060547, 1.120534 ], [ -67.258301, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.691649 ], [ -69.807129, 1.713612 ], [ -69.807129, 1.098565 ], [ -69.213867, 0.988720 ], [ -69.257812, 0.593251 ], [ -69.455566, 0.703107 ], [ -70.004883, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.565430, -0.549308 ], [ -69.411621, -1.120534 ], [ -69.477539, -1.757537 ], [ -73.388672, -1.757537 ], [ -73.652344, -1.252342 ], [ -74.113770, -1.010690 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.065918 ], [ -75.366211, -0.153808 ], [ -75.651855, 0.000000 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.263671 ], [ -77.431641, 0.395505 ], [ -77.673340, 0.834931 ], [ -77.849121, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.757537 ], [ -78.662109, 2.262595 ], [ -78.420410, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.124023, 3.842332 ], [ -77.497559, 4.083453 ], [ -77.299805, 4.674980 ], [ -77.541504, 5.572250 ], [ -77.321777, 5.834616 ], [ -77.475586, 6.686431 ], [ -77.871094, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.233887, 7.928675 ], [ -77.475586, 8.515836 ], [ -77.343750, 8.667918 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.673828, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.476074, 10.617418 ], [ -74.904785, 11.092166 ], [ -74.267578, 11.092166 ], [ -74.201660, 11.307708 ], [ -73.410645, 11.221510 ], [ -72.246094, 11.953349 ], [ -71.762695, 12.425848 ] ] ], [ [ [ -5.932617, 35.764343 ], [ -5.185547, 35.746512 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.592773, 35.173808 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.524661 ], [ -1.735840, 33.925130 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.657876 ], [ -1.296387, 32.268555 ], [ -2.614746, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.647461, 31.634676 ], [ -3.691406, 30.902225 ], [ -4.855957, 30.505484 ], [ -5.251465, 29.993002 ], [ -6.064453, 29.726222 ], [ -7.053223, 29.573457 ], [ -8.679199, 28.844674 ], [ -8.657227, 27.664069 ], [ -8.679199, 27.391278 ], [ -4.921875, 24.966140 ], [ -6.459961, 24.946219 ], [ -5.493164, 16.320139 ], [ -5.317383, 16.193575 ], [ -5.537109, 15.496032 ], [ -9.558105, 15.474857 ], [ -9.689941, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.656738, 15.135764 ], [ -11.337891, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.796128 ], [ -12.172852, 14.626109 ], [ -12.128906, 13.987376 ], [ -11.931152, 13.410994 ], [ -11.557617, 13.132979 ], [ -11.469727, 12.747516 ], [ -11.513672, 12.447305 ], [ -11.447754, 12.082296 ], [ -11.293945, 12.082296 ], [ -11.030273, 12.211180 ], [ -10.876465, 12.168226 ], [ -10.590820, 11.931852 ], [ -10.173340, 11.845847 ], [ -9.887695, 12.060809 ], [ -9.316406, 12.340002 ], [ -9.118652, 12.297068 ], [ -8.898926, 12.082296 ], [ -8.789062, 11.802834 ], [ -8.371582, 11.393879 ], [ -8.569336, 11.135287 ], [ -8.613281, 10.811724 ], [ -8.415527, 10.898042 ], [ -8.283691, 10.790141 ], [ -8.327637, 10.487812 ], [ -8.020020, 10.206813 ], [ -8.217773, 10.120302 ], [ -8.305664, 9.795678 ], [ -8.085938, 9.384032 ], [ -7.822266, 8.581021 ], [ -8.195801, 8.450639 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.723145, 7.710992 ], [ -8.920898, 7.297088 ], [ -9.206543, 7.318882 ], [ -9.404297, 7.514981 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.537565 ], [ -10.019531, 8.428904 ], [ -10.502930, 8.341953 ], [ -10.502930, 8.711359 ], [ -10.656738, 8.971897 ], [ -10.612793, 9.275622 ], [ -10.832520, 9.687398 ], [ -11.118164, 10.033767 ], [ -11.909180, 10.055403 ], [ -12.150879, 9.860628 ], [ -12.414551, 9.838979 ], [ -12.590332, 9.622414 ], [ -12.700195, 9.340672 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.492408 ], [ -14.062500, 9.882275 ], [ -14.326172, 10.012130 ], [ -14.567871, 10.206813 ], [ -14.699707, 10.660608 ], [ -14.831543, 10.876465 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.303711, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.831055, 13.154376 ], [ -16.721191, 13.603278 ], [ -17.116699, 14.370834 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.923554 ], [ -16.699219, 15.623037 ], [ -16.457520, 16.130262 ], [ -16.545410, 16.678293 ], [ -16.259766, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.103648 ], [ -16.369629, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.962891, 21.881890 ], [ -16.589355, 22.167058 ], [ -16.259766, 22.674847 ], [ -16.325684, 23.019076 ], [ -15.974121, 23.725012 ], [ -15.424805, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.436035, 26.254010 ], [ -13.776855, 26.608174 ], [ -13.139648, 27.644606 ], [ -12.612305, 28.033198 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.825425 ], [ -10.393066, 29.094577 ], [ -9.558105, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.426270, 32.045333 ], [ -9.294434, 32.565333 ], [ -8.657227, 33.247876 ], [ -7.646484, 33.687782 ], [ -6.921387, 34.107256 ], [ -6.240234, 35.137879 ], [ -5.932617, 35.764343 ] ] ], [ [ [ -3.010254, 58.631217 ], [ -4.064941, 57.551208 ], [ -3.054199, 57.692406 ], [ -1.955566, 57.680660 ], [ -2.219238, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.622978 ], [ -0.439453, 54.457267 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.317749 ], [ 0.461426, 52.935397 ], [ 1.691895, 52.736292 ], [ 1.560059, 52.093008 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.764259 ], [ -0.791016, 50.778155 ], [ -2.482910, 50.499452 ], [ -2.944336, 50.694718 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.306641, 51.206883 ], [ -3.405762, 51.426614 ], [ -4.987793, 51.590723 ], [ -5.273438, 51.984880 ], [ -4.218750, 52.295042 ], [ -4.768066, 52.842595 ], [ -4.570312, 53.488046 ], [ -3.098145, 53.409532 ], [ -2.944336, 53.981935 ], [ -3.625488, 54.610255 ], [ -4.833984, 54.788017 ], [ -5.075684, 55.065787 ], [ -4.724121, 55.503750 ], [ -5.053711, 55.788929 ], [ -5.581055, 55.304138 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.778809, 57.821355 ], [ -5.009766, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.631217 ] ] ], [ [ [ -16.171875, 66.530768 ], [ -15.864258, 66.513260 ], [ -14.501953, 66.451887 ], [ -14.743652, 65.811781 ], [ -13.601074, 65.127638 ], [ -14.919434, 64.358931 ], [ -17.797852, 63.675506 ], [ -18.654785, 63.499573 ], [ -22.763672, 63.956673 ], [ -21.774902, 64.396938 ], [ -23.950195, 64.886265 ], [ -22.192383, 65.081389 ], [ -22.236328, 65.375994 ], [ -24.323730, 65.612952 ], [ -23.642578, 66.258011 ], [ -22.126465, 66.407955 ], [ -20.566406, 65.730626 ], [ -19.050293, 66.275698 ], [ -17.797852, 65.991212 ], [ -16.215820, 66.513260 ], [ -16.171875, 66.530768 ] ] ], [ [ [ -0.505371, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.373535, 14.923554 ], [ 0.307617, 14.434680 ], [ 0.439453, 13.987376 ], [ 0.988770, 13.325485 ], [ 1.032715, 12.854649 ], [ 1.757812, 12.704651 ], [ 1.757812, 11.609193 ], [ 1.450195, 11.544616 ], [ 1.252441, 11.113727 ], [ 0.900879, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.092166 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.005904 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.977051, 9.860628 ], [ -4.328613, 9.600750 ], [ -4.768066, 9.817329 ], [ -4.943848, 10.141932 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.941192 ], [ -5.185547, 11.372339 ], [ -5.229492, 11.716788 ], [ -4.416504, 12.533115 ], [ -4.284668, 13.218556 ], [ -3.999023, 13.475106 ], [ -3.515625, 13.346865 ], [ -3.098145, 13.539201 ], [ -2.966309, 13.795406 ], [ -2.197266, 14.243087 ], [ -1.999512, 14.562318 ], [ -1.054688, 14.966013 ], [ -0.505371, 15.114553 ] ] ], [ [ [ -6.723633, 55.166319 ], [ -5.668945, 54.559323 ], [ -6.196289, 53.865486 ], [ -6.042480, 53.146770 ], [ -6.789551, 52.254709 ], [ -8.569336, 51.672555 ], [ -9.975586, 51.822198 ], [ -9.162598, 52.869130 ], [ -9.689941, 53.878440 ], [ -8.327637, 54.661124 ], [ -7.580566, 55.128649 ], [ -6.723633, 55.166319 ] ] ], [ [ [ -8.261719, 42.277309 ], [ -8.020020, 41.787697 ], [ -7.426758, 41.787697 ], [ -7.250977, 41.918629 ], [ -6.657715, 41.885921 ], [ -6.394043, 41.376809 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.329796 ], [ -7.031250, 40.178873 ], [ -7.075195, 39.707187 ], [ -7.492676, 39.622615 ], [ -7.097168, 39.027719 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.163086, 37.805444 ], [ -7.536621, 37.422526 ], [ -7.448730, 37.090240 ], [ -7.844238, 36.844461 ], [ -8.371582, 36.985003 ], [ -8.898926, 36.862043 ], [ -8.745117, 37.649034 ], [ -8.833008, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.736946 ], [ -9.448242, 39.385264 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.767090, 40.763901 ], [ -8.789062, 41.178654 ], [ -8.986816, 41.541478 ], [ -9.030762, 41.885921 ], [ -8.679199, 42.130821 ], [ -8.261719, 42.277309 ] ] ], [ [ [ -71.586914, 19.890723 ], [ -70.795898, 19.870060 ], [ -70.202637, 19.621892 ], [ -69.938965, 19.642588 ], [ -69.763184, 19.290406 ], [ -69.213867, 19.311143 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.979026 ], [ -68.312988, 18.604601 ], [ -68.686523, 18.208480 ], [ -69.169922, 18.417079 ], [ -69.631348, 18.375379 ], [ -69.960938, 18.417079 ], [ -70.136719, 18.250220 ], [ -70.510254, 18.187607 ], [ -70.664062, 18.417079 ], [ -70.993652, 18.291950 ], [ -71.389160, 17.602139 ], [ -71.652832, 17.748687 ], [ -71.696777, 18.041421 ], [ -71.696777, 18.312811 ], [ -71.938477, 18.625425 ], [ -71.696777, 18.791918 ], [ -71.630859, 19.165924 ], [ -71.718750, 19.704658 ], [ -71.586914, 19.890723 ] ] ], [ [ [ -66.291504, 18.521283 ], [ -65.764160, 18.417079 ], [ -65.588379, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.599121, 17.978733 ], [ -67.192383, 17.936929 ], [ -67.236328, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ], [ [ [ -61.105957, 10.898042 ], [ -60.886230, 10.854886 ], [ -60.930176, 10.098670 ], [ -61.765137, 9.990491 ], [ -61.940918, 10.098670 ], [ -61.655273, 10.358151 ], [ -61.677246, 10.768556 ], [ -61.105957, 10.898042 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.102539, -0.065918 ], [ -74.443359, -0.527336 ], [ -74.113770, -1.010690 ], [ -73.652344, -1.252342 ], [ -73.388672, -1.757537 ], [ -75.739746, -1.757537 ], [ -75.541992, -1.559866 ], [ -75.234375, -0.922812 ], [ -75.366211, -0.153808 ], [ -75.102539, -0.065918 ] ] ], [ [ [ -53.964844, 5.747174 ], [ -52.888184, 5.419148 ], [ -51.811523, 4.565474 ], [ -51.657715, 4.149201 ], [ -51.306152, 4.193030 ], [ -51.064453, 3.645000 ], [ -50.515137, 1.889306 ], [ -49.965820, 1.735574 ], [ -49.943848, 1.054628 ], [ -50.690918, 0.219726 ], [ -50.383301, -0.087891 ], [ -48.625488, -0.241699 ], [ -48.581543, -1.230374 ], [ -47.834473, -0.593251 ], [ -46.560059, -0.944781 ], [ -44.912109, -1.559866 ], [ -44.736328, -1.757537 ], [ -69.477539, -1.757537 ], [ -69.411621, -1.120534 ], [ -69.565430, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.004883, 0.549308 ], [ -69.455566, 0.703107 ], [ -69.257812, 0.593251 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.807129, 1.713612 ], [ -67.873535, 1.691649 ], [ -67.543945, 2.043024 ], [ -67.258301, 1.713612 ], [ -67.060547, 1.120534 ], [ -66.884766, 1.252342 ], [ -66.313477, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.346680, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.072266, 1.911267 ], [ -63.369141, 2.196727 ], [ -63.413086, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.401855, 3.118576 ], [ -64.357910, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.621582, 4.149201 ], [ -63.896484, 4.017699 ], [ -63.083496, 3.776559 ], [ -62.797852, 3.995781 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.205078, 5.244128 ], [ -59.985352, 5.003394 ], [ -60.117188, 4.565474 ], [ -59.765625, 4.412137 ], [ -59.545898, 3.951941 ], [ -59.809570, 3.601142 ], [ -59.963379, 2.745531 ], [ -59.721680, 2.240640 ], [ -59.633789, 1.779499 ], [ -59.018555, 1.318243 ], [ -58.535156, 1.274309 ], [ -58.425293, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.656250, 1.691649 ], [ -57.326660, 1.955187 ], [ -56.777344, 1.867345 ], [ -56.535645, 1.889306 ], [ -55.986328, 1.823423 ], [ -55.898438, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.964355, 2.504085 ], [ -55.568848, 2.416276 ], [ -55.085449, 2.526037 ], [ -54.514160, 2.306506 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.184394 ], [ -54.008789, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.470215, 4.893941 ], [ -53.964844, 5.747174 ] ] ], [ [ [ 1.757812, 11.609193 ], [ 1.757812, 6.118708 ], [ 1.054688, 5.922045 ], [ 0.834961, 6.271618 ], [ 0.571289, 6.904614 ], [ 0.483398, 7.406048 ], [ 0.703125, 8.320212 ], [ 0.461426, 8.667918 ], [ 0.373535, 9.470736 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.639014 ], [ -0.043945, 10.703792 ], [ 0.021973, 11.027472 ], [ 0.900879, 11.005904 ], [ 1.252441, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.757812, 11.609193 ] ] ], [ [ [ 1.757812, 15.347762 ], [ 1.757812, 12.704651 ], [ 1.032715, 12.854649 ], [ 0.988770, 13.325485 ], [ 0.439453, 13.987376 ], [ 0.307617, 14.434680 ], [ 0.373535, 14.923554 ], [ 1.010742, 14.966013 ], [ 1.384277, 15.326572 ], [ 1.757812, 15.347762 ] ] ], [ [ [ 1.757812, 36.633162 ], [ 1.757812, 20.653346 ], [ 0.000000, 21.800308 ], [ -4.921875, 24.966140 ], [ -8.679199, 27.391278 ], [ -8.679199, 28.844674 ], [ -7.053223, 29.573457 ], [ -6.064453, 29.726222 ], [ -5.251465, 29.993002 ], [ -4.855957, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.647461, 31.634676 ], [ -3.076172, 31.728167 ], [ -2.614746, 32.101190 ], [ -1.296387, 32.268555 ], [ -1.120605, 32.657876 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.524661 ], [ -2.175293, 35.173808 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.597889 ], [ 1.757812, 36.633162 ] ] ], [ [ [ 1.757812, 50.972265 ], [ 1.757812, 41.178654 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.128491 ], [ 0.000000, 39.892880 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.649034 ], [ -1.428223, 37.439974 ], [ -2.153320, 36.668419 ], [ -4.372559, 36.668419 ], [ -4.987793, 36.315125 ], [ -5.383301, 35.942436 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.448730, 37.090240 ], [ -7.536621, 37.422526 ], [ -7.163086, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.097168, 39.027719 ], [ -7.492676, 39.622615 ], [ -7.075195, 39.707187 ], [ -7.031250, 40.178873 ], [ -6.855469, 40.329796 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.376809 ], [ -6.657715, 41.885921 ], [ -7.250977, 41.918629 ], [ -7.426758, 41.787697 ], [ -8.020020, 41.787697 ], [ -8.261719, 42.277309 ], [ -8.679199, 42.130821 ], [ -9.030762, 41.885921 ], [ -8.986816, 42.585444 ], [ -9.382324, 43.020714 ], [ -7.976074, 43.755225 ], [ -6.745605, 43.564472 ], [ -5.405273, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.452919 ], [ -1.889648, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.219238, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.482422, 47.960502 ], [ -4.592285, 48.676454 ], [ -3.295898, 48.893615 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.988770, 49.339441 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.120578 ], [ 1.647949, 50.944584 ], [ 1.757812, 50.972265 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.859863, 1.384143 ], [ -77.849121, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.395505 ], [ -76.574707, 0.263671 ], [ -76.289062, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.366211, -0.153808 ], [ -75.102539, -0.065918 ], [ -74.443359, -0.527336 ], [ -74.113770, -1.010690 ], [ -73.652344, -1.252342 ], [ -73.388672, -1.757537 ], [ -80.815430, -1.757537 ], [ -80.925293, -1.054628 ], [ -80.573730, -0.900842 ], [ -80.397949, -0.285643 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.988720 ], [ -78.859863, 1.384143 ] ] ], [ [ [ -53.964844, 5.747174 ], [ -52.888184, 5.419148 ], [ -51.811523, 4.565474 ], [ -51.657715, 4.149201 ], [ -51.306152, 4.193030 ], [ -51.064453, 3.645000 ], [ -50.515137, 1.889306 ], [ -49.965820, 1.735574 ], [ -49.943848, 1.054628 ], [ -50.690918, 0.219726 ], [ -50.383301, -0.087891 ], [ -48.625488, -0.241699 ], [ -48.581543, -1.230374 ], [ -47.834473, -0.593251 ], [ -46.560059, -0.944781 ], [ -44.912109, -1.559866 ], [ -44.736328, -1.757537 ], [ -69.477539, -1.757537 ], [ -69.411621, -1.120534 ], [ -69.565430, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.004883, 0.549308 ], [ -69.455566, 0.703107 ], [ -69.257812, 0.593251 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.807129, 1.713612 ], [ -67.873535, 1.691649 ], [ -67.543945, 2.043024 ], [ -67.258301, 1.713612 ], [ -67.060547, 1.120534 ], [ -66.884766, 1.252342 ], [ -66.313477, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.346680, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.072266, 1.911267 ], [ -63.369141, 2.196727 ], [ -63.413086, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.401855, 3.118576 ], [ -64.357910, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.621582, 4.149201 ], [ -63.896484, 4.017699 ], [ -63.083496, 3.776559 ], [ -62.797852, 3.995781 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.205078, 5.244128 ], [ -59.985352, 5.003394 ], [ -60.117188, 4.565474 ], [ -59.765625, 4.412137 ], [ -59.545898, 3.951941 ], [ -59.809570, 3.601142 ], [ -59.963379, 2.745531 ], [ -59.721680, 2.240640 ], [ -59.633789, 1.779499 ], [ -59.018555, 1.318243 ], [ -58.535156, 1.274309 ], [ -58.425293, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.656250, 1.691649 ], [ -57.326660, 1.955187 ], [ -56.777344, 1.867345 ], [ -56.535645, 1.889306 ], [ -55.986328, 1.823423 ], [ -55.898438, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.964355, 2.504085 ], [ -55.568848, 2.416276 ], [ -55.085449, 2.526037 ], [ -54.514160, 2.306506 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.184394 ], [ -54.008789, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.470215, 4.893941 ], [ -53.964844, 5.747174 ] ] ], [ [ [ 1.757812, 36.633162 ], [ 1.757812, 12.704651 ], [ 1.032715, 12.854649 ], [ 0.988770, 13.325485 ], [ 0.439453, 13.987376 ], [ 0.307617, 14.434680 ], [ 0.373535, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.505371, 15.114553 ], [ -1.054688, 14.966013 ], [ -1.999512, 14.562318 ], [ -2.197266, 14.243087 ], [ -2.966309, 13.795406 ], [ -3.098145, 13.539201 ], [ -3.515625, 13.346865 ], [ -3.999023, 13.475106 ], [ -4.284668, 13.218556 ], [ -4.416504, 12.533115 ], [ -5.229492, 11.716788 ], [ -5.185547, 11.372339 ], [ -5.471191, 10.941192 ], [ -5.405273, 10.379765 ], [ -4.943848, 10.141932 ], [ -4.768066, 9.817329 ], [ -4.328613, 9.600750 ], [ -3.977051, 9.860628 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.005904 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.092166 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.639014 ], [ 0.373535, 10.185187 ], [ 0.373535, 9.470736 ], [ 0.461426, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.904614 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.331644 ], [ -1.054688, 5.003394 ], [ -1.955566, 4.718778 ], [ -2.856445, 5.003394 ], [ -3.317871, 4.981505 ], [ -3.999023, 5.178482 ], [ -4.658203, 5.156599 ], [ -5.822754, 4.981505 ], [ -7.514648, 4.346411 ], [ -7.976074, 4.346411 ], [ -9.008789, 4.828260 ], [ -9.909668, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.447754, 6.773716 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.253496 ], [ -12.941895, 7.798079 ], [ -13.117676, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.700195, 9.340672 ], [ -12.590332, 9.622414 ], [ -12.414551, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.909180, 10.055403 ], [ -11.118164, 10.033767 ], [ -10.832520, 9.687398 ], [ -10.612793, 9.275622 ], [ -10.656738, 8.971897 ], [ -10.502930, 8.711359 ], [ -10.502930, 8.341953 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.537565 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.514981 ], [ -9.206543, 7.318882 ], [ -8.920898, 7.297088 ], [ -8.723145, 7.710992 ], [ -8.283691, 7.689217 ], [ -8.217773, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.195801, 8.450639 ], [ -7.822266, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.305664, 9.795678 ], [ -8.217773, 10.120302 ], [ -8.020020, 10.206813 ], [ -8.327637, 10.487812 ], [ -8.283691, 10.790141 ], [ -8.415527, 10.898042 ], [ -8.613281, 10.811724 ], [ -8.569336, 11.135287 ], [ -8.371582, 11.393879 ], [ -8.789062, 11.802834 ], [ -8.898926, 12.082296 ], [ -9.118652, 12.297068 ], [ -9.316406, 12.340002 ], [ -9.887695, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.590820, 11.931852 ], [ -10.876465, 12.168226 ], [ -11.030273, 12.211180 ], [ -11.293945, 12.082296 ], [ -11.447754, 12.082296 ], [ -11.513672, 12.447305 ], [ -11.469727, 12.747516 ], [ -11.557617, 13.132979 ], [ -11.931152, 13.410994 ], [ -12.128906, 13.987376 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.796128 ], [ -11.667480, 15.390136 ], [ -11.337891, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.085449, 15.326572 ], [ -9.689941, 15.262989 ], [ -9.558105, 15.474857 ], [ -5.537109, 15.496032 ], [ -5.317383, 16.193575 ], [ -5.493164, 16.320139 ], [ -6.459961, 24.946219 ], [ -4.921875, 24.966140 ], [ -8.679199, 27.391278 ], [ -8.679199, 28.844674 ], [ -7.053223, 29.573457 ], [ -6.064453, 29.726222 ], [ -5.251465, 29.993002 ], [ -4.855957, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.647461, 31.634676 ], [ -3.076172, 31.728167 ], [ -2.614746, 32.101190 ], [ -1.296387, 32.268555 ], [ -1.120605, 32.657876 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.524661 ], [ -2.175293, 35.173808 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.597889 ], [ 1.757812, 36.633162 ] ] ], [ [ [ 1.757812, 50.972265 ], [ 1.757812, 41.178654 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.128491 ], [ 0.000000, 39.892880 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.649034 ], [ -1.428223, 37.439974 ], [ -2.153320, 36.668419 ], [ -4.372559, 36.668419 ], [ -4.987793, 36.315125 ], [ -5.383301, 35.942436 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.448730, 37.090240 ], [ -7.536621, 37.422526 ], [ -7.163086, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.097168, 39.027719 ], [ -7.492676, 39.622615 ], [ -7.075195, 39.707187 ], [ -7.031250, 40.178873 ], [ -6.855469, 40.329796 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.376809 ], [ -6.657715, 41.885921 ], [ -7.250977, 41.918629 ], [ -7.426758, 41.787697 ], [ -8.020020, 41.787697 ], [ -8.261719, 42.277309 ], [ -8.679199, 42.130821 ], [ -9.030762, 41.885921 ], [ -8.986816, 42.585444 ], [ -9.382324, 43.020714 ], [ -7.976074, 43.755225 ], [ -6.745605, 43.564472 ], [ -5.405273, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.452919 ], [ -1.889648, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.219238, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.482422, 47.960502 ], [ -4.592285, 48.676454 ], [ -3.295898, 48.893615 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.988770, 49.339441 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.120578 ], [ 1.647949, 50.944584 ], [ 1.757812, 50.972265 ] ] ], [ [ [ 1.757812, 11.609193 ], [ 1.757812, 6.446318 ], [ 1.625977, 6.839170 ], [ 1.669922, 9.123792 ], [ 1.472168, 9.340672 ], [ 1.428223, 9.817329 ], [ 0.769043, 10.466206 ], [ 0.900879, 11.005904 ], [ 1.252441, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.757812, 11.609193 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.900879, 11.005904 ], [ 0.769043, 10.466206 ], [ 1.428223, 9.817329 ], [ 1.472168, 9.340672 ], [ 1.669922, 9.123792 ], [ 1.625977, 6.839170 ], [ 1.757812, 6.446318 ], [ 1.757812, 6.118708 ], [ 1.054688, 5.922045 ], [ 0.834961, 6.271618 ], [ 0.571289, 6.904614 ], [ 0.483398, 7.406048 ], [ 0.703125, 8.320212 ], [ 0.461426, 8.667918 ], [ 0.373535, 9.470736 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.639014 ], [ -0.043945, 10.703792 ], [ 0.021973, 11.027472 ] ] ] } } ] } ] } , @@ -103,19 +109,23 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.536133, -65.820782 ], [ 55.415039, -65.874725 ], [ 56.359863, -65.973325 ], [ 57.150879, -66.249163 ], [ 57.216797, -66.513260 ], [ 57.260742, -66.679087 ], [ 58.139648, -67.016009 ], [ 58.557129, -67.204032 ], [ 48.735352, -67.204032 ], [ 48.999023, -67.093105 ], [ 49.921875, -67.110204 ], [ 50.756836, -66.878345 ], [ 50.954590, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.249163 ], [ 52.624512, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ] ] ], [ [ [ 87.978516, -66.213739 ], [ 88.395996, -66.513260 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 84.726562, -67.204032 ], [ 85.649414, -67.093105 ], [ 86.748047, -67.152898 ], [ 87.473145, -66.878345 ], [ 87.758789, -66.513260 ], [ 87.978516, -66.213739 ] ] ], [ [ [ 91.582031, -67.110204 ], [ 91.757812, -67.127290 ], [ 91.757812, -67.204032 ], [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ] ] ], [ [ [ 68.928223, -48.632909 ], [ 69.587402, -48.936935 ], [ 70.532227, -49.066668 ], [ 70.554199, -49.253465 ], [ 70.290527, -49.710273 ], [ 68.752441, -49.781264 ], [ 68.730469, -49.239121 ], [ 68.928223, -48.632909 ] ] ], [ [ [ 45.131836, 1.757537 ], [ 44.077148, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.594238, -1.691649 ], [ 40.891113, -2.086941 ], [ 40.649414, -2.504085 ], [ 40.253906, -2.569939 ], [ 40.122070, -3.272146 ], [ 39.792480, -3.688855 ], [ 39.616699, -4.346411 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.803711, -6.468151 ], [ 39.440918, -6.839170 ], [ 39.462891, -7.100893 ], [ 39.199219, -7.710992 ], [ 39.243164, -8.015716 ], [ 39.177246, -8.494105 ], [ 39.528809, -9.123792 ], [ 39.946289, -10.098670 ], [ 40.319824, -10.314919 ], [ 40.473633, -10.768556 ], [ 40.429688, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.605469, -14.200488 ], [ 40.781250, -14.689881 ], [ 40.473633, -15.411319 ], [ 40.100098, -16.109153 ], [ 39.462891, -16.720385 ], [ 37.419434, -17.581194 ], [ 36.276855, -18.667063 ], [ 35.903320, -18.833515 ], [ 35.200195, -19.559790 ], [ 34.782715, -19.787380 ], [ 34.694824, -20.488773 ], [ 35.178223, -21.248422 ], [ 35.375977, -21.841105 ], [ 35.397949, -22.146708 ], [ 35.573730, -22.085640 ], [ 35.529785, -23.079732 ], [ 35.375977, -23.543845 ], [ 35.617676, -23.704895 ], [ 35.463867, -24.126702 ], [ 35.046387, -24.487149 ], [ 33.024902, -25.363882 ], [ 32.585449, -25.720735 ], [ 32.651367, -26.155438 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.453613, -28.304381 ], [ 32.211914, -28.748397 ], [ 31.333008, -29.401320 ], [ 30.893555, -29.916852 ], [ 30.629883, -30.429730 ], [ 30.058594, -31.147006 ], [ 28.212891, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.773926, -33.943360 ], [ 25.180664, -33.797409 ], [ 24.675293, -33.979809 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.925130 ], [ 22.565918, -33.870416 ], [ 21.533203, -34.252676 ], [ 20.698242, -34.415973 ], [ 20.083008, -34.795762 ], [ 19.621582, -34.813803 ], [ 19.204102, -34.470335 ], [ 18.852539, -34.452218 ], [ 18.435059, -33.998027 ], [ 18.369141, -34.143635 ], [ 18.237305, -33.870416 ], [ 18.259277, -33.284620 ], [ 17.929688, -32.620870 ], [ 18.259277, -32.435613 ], [ 18.215332, -31.672083 ], [ 17.578125, -30.732393 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.098254 ], [ 14.985352, -26.115986 ], [ 14.743652, -25.403585 ], [ 14.414062, -23.845650 ], [ 14.392090, -22.654572 ], [ 14.260254, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.359375, -20.879343 ], [ 12.832031, -19.683970 ], [ 12.612305, -19.041349 ], [ 11.799316, -18.062312 ], [ 11.733398, -17.308688 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.881087 ], [ 12.172852, -14.455958 ], [ 12.502441, -13.539201 ], [ 12.744141, -13.132979 ], [ 13.315430, -12.490214 ], [ 13.645020, -12.039321 ], [ 13.732910, -11.307708 ], [ 13.688965, -10.725381 ], [ 13.381348, -10.379765 ], [ 12.875977, -9.167179 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.238770, -6.293459 ], [ 12.326660, -6.096860 ], [ 11.909180, -5.047171 ], [ 11.096191, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.120534 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.461421 ], [ 9.206543, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.164471 ], [ 9.492188, 1.757537 ], [ 45.131836, 1.757537 ] ] ], [ [ [ 49.196777, -12.039321 ], [ 49.548340, -12.468760 ], [ 49.812012, -12.897489 ], [ 50.053711, -13.560562 ], [ 50.229492, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.383301, -15.707663 ], [ 50.207520, -16.003576 ], [ 49.855957, -15.411319 ], [ 49.680176, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.504395, -17.098792 ], [ 49.438477, -17.957832 ], [ 48.559570, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.548828, -23.785345 ], [ 47.087402, -24.946219 ], [ 46.274414, -25.185059 ], [ 45.417480, -25.601902 ], [ 44.033203, -24.986058 ], [ 43.769531, -24.467151 ], [ 43.703613, -23.584126 ], [ 43.352051, -22.776182 ], [ 43.264160, -22.065278 ], [ 43.439941, -21.330315 ], [ 43.901367, -21.166484 ], [ 43.901367, -20.838278 ], [ 44.384766, -20.076570 ], [ 44.472656, -19.435514 ], [ 44.230957, -18.958246 ], [ 44.055176, -18.333669 ], [ 43.967285, -17.413546 ], [ 44.318848, -16.846605 ], [ 44.450684, -16.214675 ], [ 44.956055, -16.172473 ], [ 45.505371, -15.982454 ], [ 45.878906, -15.792254 ], [ 46.318359, -15.771109 ], [ 46.889648, -15.220589 ], [ 47.702637, -14.604847 ], [ 48.010254, -14.093957 ], [ 47.878418, -13.667338 ], [ 48.295898, -13.795406 ], [ 48.845215, -13.090179 ], [ 48.867188, -12.490214 ], [ 49.196777, -12.039321 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.536133, -65.820782 ], [ 55.415039, -65.874725 ], [ 56.359863, -65.973325 ], [ 57.150879, -66.249163 ], [ 57.216797, -66.513260 ], [ 57.260742, -66.679087 ], [ 58.139648, -67.016009 ], [ 58.557129, -67.204032 ], [ 48.735352, -67.204032 ], [ 48.999023, -67.093105 ], [ 49.921875, -67.110204 ], [ 50.756836, -66.878345 ], [ 50.954590, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.249163 ], [ 52.624512, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ] ] ], [ [ [ 87.978516, -66.213739 ], [ 88.395996, -66.513260 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 84.726562, -67.204032 ], [ 85.649414, -67.093105 ], [ 86.748047, -67.152898 ], [ 87.473145, -66.878345 ], [ 87.758789, -66.513260 ], [ 87.978516, -66.213739 ] ] ], [ [ [ 91.582031, -67.110204 ], [ 91.757812, -67.127290 ], [ 91.757812, -67.204032 ], [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ] ] ], [ [ [ 45.131836, 1.757537 ], [ 44.077148, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.594238, -1.691649 ], [ 40.891113, -2.086941 ], [ 40.649414, -2.504085 ], [ 40.253906, -2.569939 ], [ 40.122070, -3.272146 ], [ 39.792480, -3.688855 ], [ 39.616699, -4.346411 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.803711, -6.468151 ], [ 39.440918, -6.839170 ], [ 39.462891, -7.100893 ], [ 39.199219, -7.710992 ], [ 39.243164, -8.015716 ], [ 39.177246, -8.494105 ], [ 39.528809, -9.123792 ], [ 39.946289, -10.098670 ], [ 40.319824, -10.314919 ], [ 39.528809, -10.898042 ], [ 38.430176, -11.286161 ], [ 37.836914, -11.264612 ], [ 37.463379, -11.566144 ], [ 36.782227, -11.587669 ], [ 36.518555, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.562988, -11.523088 ], [ 34.277344, -10.163560 ], [ 33.750000, -9.427387 ], [ 32.761230, -9.232249 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.754795 ], [ 31.157227, -8.602747 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.537565 ], [ 28.454590, -9.167179 ], [ 28.674316, -9.600750 ], [ 28.366699, -11.802834 ], [ 29.333496, -12.361466 ], [ 29.619141, -12.189704 ], [ 29.707031, -13.261333 ], [ 28.937988, -13.239945 ], [ 28.146973, -12.275599 ], [ 27.399902, -12.125264 ], [ 27.158203, -11.609193 ], [ 26.564941, -11.931852 ], [ 25.751953, -11.781325 ], [ 25.422363, -11.329253 ], [ 24.785156, -11.243062 ], [ 24.323730, -11.264612 ], [ 24.257812, -10.962764 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.243062 ], [ 23.906250, -11.716788 ], [ 24.082031, -12.189704 ], [ 23.928223, -12.576010 ], [ 24.016113, -12.918907 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.088042 ], [ 22.565918, -16.909684 ], [ 23.225098, -17.518344 ], [ 24.038086, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.581194 ], [ 25.092773, -17.664960 ], [ 24.521484, -17.895114 ], [ 24.213867, -17.895114 ], [ 23.576660, -18.291950 ], [ 23.203125, -17.874203 ], [ 21.665039, -18.229351 ], [ 20.917969, -18.250220 ], [ 20.874023, -21.820708 ], [ 19.907227, -21.841105 ], [ 19.885254, -28.459033 ], [ 19.006348, -28.979312 ], [ 18.457031, -29.056170 ], [ 17.841797, -28.863918 ], [ 17.380371, -28.786918 ], [ 17.226562, -28.362402 ], [ 16.831055, -28.091366 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.098254 ], [ 14.985352, -26.115986 ], [ 14.743652, -25.403585 ], [ 14.414062, -23.845650 ], [ 14.392090, -22.654572 ], [ 14.260254, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.359375, -20.879343 ], [ 12.832031, -19.683970 ], [ 12.612305, -19.041349 ], [ 11.799316, -18.062312 ], [ 11.733398, -17.308688 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.881087 ], [ 12.172852, -14.455958 ], [ 12.502441, -13.539201 ], [ 12.744141, -13.132979 ], [ 13.315430, -12.490214 ], [ 13.645020, -12.039321 ], [ 13.732910, -11.307708 ], [ 13.688965, -10.725381 ], [ 13.381348, -10.379765 ], [ 12.875977, -9.167179 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.238770, -6.293459 ], [ 12.326660, -6.096860 ], [ 11.909180, -5.047171 ], [ 11.096191, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.120534 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.461421 ], [ 9.206543, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.164471 ], [ 9.492188, 1.757537 ], [ 45.131836, 1.757537 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 68.928223, -48.632909 ], [ 69.587402, -48.936935 ], [ 70.532227, -49.066668 ], [ 70.554199, -49.253465 ], [ 70.290527, -49.710273 ], [ 68.752441, -49.781264 ], [ 68.730469, -49.239121 ], [ 68.928223, -48.632909 ] ] ], [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.602747 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.761230, -9.232249 ], [ 33.750000, -9.427387 ], [ 34.277344, -10.163560 ], [ 34.562988, -11.523088 ], [ 35.310059, -11.436955 ], [ 36.518555, -11.716788 ], [ 36.782227, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.836914, -11.264612 ], [ 38.430176, -11.286161 ], [ 39.528809, -10.898042 ], [ 40.319824, -10.314919 ], [ 40.473633, -10.768556 ], [ 40.429688, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.605469, -14.200488 ], [ 40.781250, -14.689881 ], [ 40.473633, -15.411319 ], [ 40.100098, -16.109153 ], [ 39.462891, -16.720385 ], [ 37.419434, -17.581194 ], [ 36.276855, -18.667063 ], [ 35.903320, -18.833515 ], [ 35.200195, -19.559790 ], [ 34.782715, -19.787380 ], [ 34.694824, -20.488773 ], [ 35.178223, -21.248422 ], [ 35.375977, -21.841105 ], [ 35.397949, -22.146708 ], [ 35.573730, -22.085640 ], [ 35.529785, -23.079732 ], [ 35.375977, -23.543845 ], [ 35.617676, -23.704895 ], [ 35.463867, -24.126702 ], [ 35.046387, -24.487149 ], [ 33.024902, -25.363882 ], [ 32.585449, -25.720735 ], [ 32.651367, -26.155438 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.453613, -28.304381 ], [ 32.211914, -28.748397 ], [ 31.333008, -29.401320 ], [ 30.893555, -29.916852 ], [ 30.629883, -30.429730 ], [ 30.058594, -31.147006 ], [ 28.212891, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.773926, -33.943360 ], [ 25.180664, -33.797409 ], [ 24.675293, -33.979809 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.925130 ], [ 22.565918, -33.870416 ], [ 21.533203, -34.252676 ], [ 20.698242, -34.415973 ], [ 20.083008, -34.795762 ], [ 19.621582, -34.813803 ], [ 19.204102, -34.470335 ], [ 18.852539, -34.452218 ], [ 18.435059, -33.998027 ], [ 18.369141, -34.143635 ], [ 18.237305, -33.870416 ], [ 18.259277, -33.284620 ], [ 17.929688, -32.620870 ], [ 18.259277, -32.435613 ], [ 18.215332, -31.672083 ], [ 17.578125, -30.732393 ], [ 16.347656, -28.574874 ], [ 16.831055, -28.091366 ], [ 17.226562, -28.362402 ], [ 17.380371, -28.786918 ], [ 17.841797, -28.863918 ], [ 18.457031, -29.056170 ], [ 19.006348, -28.979312 ], [ 19.885254, -28.459033 ], [ 19.907227, -21.841105 ], [ 20.874023, -21.820708 ], [ 20.917969, -18.250220 ], [ 21.665039, -18.229351 ], [ 23.203125, -17.874203 ], [ 23.576660, -18.291950 ], [ 24.213867, -17.895114 ], [ 24.521484, -17.895114 ], [ 25.092773, -17.664960 ], [ 25.070801, -17.581194 ], [ 24.675293, -17.350638 ], [ 24.038086, -17.287709 ], [ 23.225098, -17.518344 ], [ 22.565918, -16.909684 ], [ 21.884766, -16.088042 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.918907 ], [ 23.928223, -12.576010 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.716788 ], [ 24.016113, -11.243062 ], [ 23.906250, -10.919618 ], [ 24.257812, -10.962764 ], [ 24.323730, -11.264612 ], [ 24.785156, -11.243062 ], [ 25.422363, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.564941, -11.931852 ], [ 27.158203, -11.609193 ], [ 27.399902, -12.125264 ], [ 28.146973, -12.275599 ], [ 28.937988, -13.239945 ], [ 29.707031, -13.261333 ], [ 29.619141, -12.189704 ], [ 29.333496, -12.361466 ], [ 28.366699, -11.802834 ], [ 28.674316, -9.600750 ], [ 28.454590, -9.167179 ], [ 28.740234, -8.537565 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.233237 ] ] ], [ [ [ 49.196777, -12.039321 ], [ 49.548340, -12.468760 ], [ 49.812012, -12.897489 ], [ 50.053711, -13.560562 ], [ 50.229492, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.383301, -15.707663 ], [ 50.207520, -16.003576 ], [ 49.855957, -15.411319 ], [ 49.680176, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.504395, -17.098792 ], [ 49.438477, -17.957832 ], [ 48.559570, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.548828, -23.785345 ], [ 47.087402, -24.946219 ], [ 46.274414, -25.185059 ], [ 45.417480, -25.601902 ], [ 44.033203, -24.986058 ], [ 43.769531, -24.467151 ], [ 43.703613, -23.584126 ], [ 43.352051, -22.776182 ], [ 43.264160, -22.065278 ], [ 43.439941, -21.330315 ], [ 43.901367, -21.166484 ], [ 43.901367, -20.838278 ], [ 44.384766, -20.076570 ], [ 44.472656, -19.435514 ], [ 44.230957, -18.958246 ], [ 44.055176, -18.333669 ], [ 43.967285, -17.413546 ], [ 44.318848, -16.846605 ], [ 44.450684, -16.214675 ], [ 44.956055, -16.172473 ], [ 45.505371, -15.982454 ], [ 45.878906, -15.792254 ], [ 46.318359, -15.771109 ], [ 46.889648, -15.220589 ], [ 47.702637, -14.604847 ], [ 48.010254, -14.093957 ], [ 47.878418, -13.667338 ], [ 48.295898, -13.795406 ], [ 48.845215, -13.090179 ], [ 48.867188, -12.490214 ], [ 49.196777, -12.039321 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.338867, 37.125286 ], [ 7.734375, 36.879621 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.478565 ], [ 8.151855, 34.651285 ], [ 7.536621, 34.089061 ], [ 7.624512, 33.339707 ], [ 8.437500, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.101190 ], [ 9.492188, 30.297018 ], [ 9.799805, 29.420460 ], [ 9.865723, 28.960089 ], [ 9.689941, 28.149503 ], [ 9.755859, 27.683528 ], [ 9.624023, 27.137368 ], [ 9.711914, 26.509905 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.363882 ], [ 9.953613, 24.926295 ], [ 10.305176, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.463246 ], [ 8.569336, 21.555284 ], [ 5.668945, 19.601194 ], [ 4.262695, 19.145168 ], [ 4.262695, 16.846605 ], [ 3.735352, 16.172473 ], [ 3.647461, 15.559544 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.966013 ], [ 0.373535, 14.923554 ], [ 0.307617, 14.434680 ], [ 0.439453, 13.987376 ], [ 0.988770, 13.325485 ], [ 1.032715, 12.854649 ], [ 2.175293, 12.618897 ], [ 2.153320, 11.931852 ], [ 1.933594, 11.630716 ], [ 1.450195, 11.544616 ], [ 1.252441, 11.113727 ], [ 0.900879, 11.005904 ], [ 0.021973, 11.027472 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.639014 ], [ 0.373535, 10.185187 ], [ 0.373535, 9.470736 ], [ 0.461426, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.904614 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.331644 ], [ -1.054688, 5.003394 ], [ -1.757812, 4.784469 ], [ -1.757812, 35.406961 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.597889 ], [ 3.164062, 36.774092 ], [ 4.812012, 36.862043 ], [ 5.317383, 36.721274 ], [ 6.262207, 37.107765 ], [ 7.338867, 37.125286 ] ] ], [ [ [ 12.370605, 56.108810 ], [ 12.700195, 55.603178 ], [ 12.084961, 54.800685 ], [ 11.052246, 55.366625 ], [ 10.898438, 55.776573 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 15.512695, 38.238180 ], [ 15.161133, 37.439974 ], [ 15.314941, 37.125286 ], [ 15.095215, 36.615528 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.117272 ], [ 13.732910, 38.030786 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.652943 ], [ 90.725098, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.813477, 49.468124 ], [ 87.363281, 49.210420 ], [ 86.835938, 49.823809 ], [ 85.539551, 49.696062 ], [ 85.122070, 50.120578 ], [ 84.418945, 50.317408 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.958008, 50.805935 ], [ 80.573730, 51.385495 ], [ 80.046387, 50.861444 ], [ 77.805176, 53.409532 ], [ 76.530762, 54.175297 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.540307 ], [ 73.432617, 53.488046 ], [ 73.520508, 54.033586 ], [ 72.224121, 54.380557 ], [ 71.191406, 54.136696 ], [ 70.861816, 55.166319 ], [ 69.060059, 55.379110 ], [ 68.181152, 54.965002 ], [ 65.676270, 54.597528 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.975108 ], [ 60.732422, 52.722986 ], [ 60.930176, 52.442618 ], [ 59.963379, 51.957807 ], [ 61.589355, 51.275662 ], [ 61.347656, 50.792047 ], [ 59.941406, 50.847573 ], [ 59.633789, 50.541363 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.041394 ], [ 55.722656, 50.625073 ], [ 54.536133, 51.027576 ], [ 52.338867, 51.713416 ], [ 50.778809, 51.686180 ], [ 48.713379, 50.611132 ], [ 48.581543, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.757812, 49.353756 ], [ 47.043457, 49.152970 ], [ 46.472168, 48.400032 ], [ 47.307129, 47.709762 ], [ 48.054199, 47.739323 ], [ 48.691406, 47.070122 ], [ 48.603516, 46.558860 ], [ 49.108887, 46.392411 ], [ 48.647461, 45.798170 ], [ 47.680664, 45.644768 ], [ 46.691895, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.804078 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.145570 ], [ 47.373047, 41.211722 ], [ 46.691895, 41.820455 ], [ 46.406250, 41.853196 ], [ 46.142578, 41.722131 ], [ 46.647949, 41.178654 ], [ 46.494141, 41.062786 ], [ 45.966797, 41.129021 ], [ 45.219727, 41.409776 ], [ 44.978027, 41.244772 ], [ 43.593750, 41.095912 ], [ 42.626953, 41.574361 ], [ 41.550293, 41.541478 ], [ 41.704102, 41.967659 ], [ 41.462402, 42.650122 ], [ 40.869141, 43.004647 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.276671 ], [ 37.551270, 44.653024 ], [ 36.672363, 45.243953 ], [ 37.397461, 45.398450 ], [ 38.232422, 46.240652 ], [ 37.683105, 46.634351 ], [ 39.155273, 47.040182 ], [ 39.133301, 47.264320 ], [ 38.232422, 47.100045 ], [ 37.419434, 47.025206 ], [ 36.760254, 46.694667 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.271037 ], [ 35.024414, 45.644768 ], [ 35.507812, 45.413876 ], [ 36.540527, 45.475540 ], [ 36.342773, 45.104546 ], [ 35.244141, 44.933696 ], [ 33.881836, 44.355278 ], [ 33.332520, 44.559163 ], [ 33.552246, 45.026950 ], [ 32.453613, 45.321254 ], [ 32.629395, 45.521744 ], [ 33.596191, 45.844108 ], [ 33.310547, 46.073231 ], [ 31.750488, 46.331758 ], [ 31.684570, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.388184, 46.027482 ], [ 29.597168, 45.290347 ], [ 29.619141, 45.026950 ], [ 29.135742, 44.824708 ], [ 28.850098, 44.918139 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.685547, 42.569264 ], [ 27.993164, 42.000325 ], [ 27.136230, 42.147114 ], [ 26.125488, 41.820455 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.228249 ], [ 24.499512, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.961426, 41.343825 ], [ 22.763672, 41.310824 ], [ 22.587891, 41.129021 ], [ 22.060547, 41.145570 ], [ 21.665039, 40.930115 ], [ 21.027832, 40.847060 ], [ 20.610352, 41.079351 ], [ 20.456543, 41.508577 ], [ 20.588379, 41.853196 ], [ 20.522461, 42.212245 ], [ 20.280762, 42.326062 ], [ 20.083008, 42.585444 ], [ 19.797363, 42.504503 ], [ 19.731445, 42.682435 ], [ 19.313965, 42.195969 ], [ 19.379883, 41.869561 ], [ 19.160156, 41.951320 ], [ 18.874512, 42.277309 ], [ 18.457031, 42.472097 ], [ 17.512207, 42.843751 ], [ 16.940918, 43.213183 ], [ 16.018066, 43.500752 ], [ 15.183105, 44.245199 ], [ 15.380859, 44.323848 ], [ 14.919434, 44.731126 ], [ 14.897461, 45.073521 ], [ 14.260254, 45.228481 ], [ 13.952637, 44.793531 ], [ 13.666992, 45.135555 ], [ 13.688965, 45.475540 ], [ 13.930664, 45.583290 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.392578, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.590332, 44.087585 ], [ 13.535156, 43.580391 ], [ 14.040527, 42.763146 ], [ 15.139160, 41.951320 ], [ 15.930176, 41.967659 ], [ 16.171875, 41.738528 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.346544 ], [ 18.479004, 40.162083 ], [ 18.303223, 39.808536 ], [ 17.731934, 40.279526 ], [ 16.875000, 40.446947 ], [ 16.457520, 39.791655 ], [ 17.182617, 39.419221 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.839708 ], [ 16.105957, 37.978845 ], [ 15.688477, 37.909534 ], [ 15.688477, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.959409 ], [ 15.424805, 40.044438 ], [ 15.007324, 40.178873 ], [ 14.699707, 40.597271 ], [ 14.062500, 40.780541 ], [ 13.623047, 41.195190 ], [ 12.897949, 41.244772 ], [ 12.106934, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.924252 ], [ 10.195312, 43.913723 ], [ 9.711914, 44.040219 ], [ 8.898926, 44.370987 ], [ 8.437500, 44.229457 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.691708 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.068888 ], [ 2.988281, 42.472097 ], [ 3.032227, 41.885921 ], [ 2.087402, 41.228249 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.128491 ], [ 0.000000, 39.892880 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.649034 ], [ -1.450195, 37.439974 ], [ -1.757812, 37.090240 ], [ -1.757812, 43.596306 ], [ -1.384277, 44.024422 ], [ -1.186523, 46.012224 ], [ -1.757812, 46.589069 ], [ -1.757812, 48.661943 ], [ -1.625977, 48.647428 ], [ -1.757812, 49.152970 ], [ -1.757812, 49.696062 ], [ -0.988770, 49.339441 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.120578 ], [ 1.647949, 50.944584 ], [ 3.317871, 51.344339 ], [ 3.823242, 51.618017 ], [ 4.702148, 53.094024 ], [ 6.086426, 53.514185 ], [ 6.899414, 53.474970 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.129883, 53.527248 ], [ 8.811035, 54.020680 ], [ 8.569336, 54.393352 ], [ 8.525391, 54.965002 ], [ 8.129883, 55.516192 ], [ 8.085938, 56.535258 ], [ 8.261719, 56.812908 ], [ 8.547363, 57.112385 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.444949 ], [ 10.590820, 57.727619 ], [ 10.546875, 57.219608 ], [ 10.261230, 56.885002 ], [ 10.371094, 56.607885 ], [ 10.920410, 56.462490 ], [ 10.678711, 56.084298 ], [ 10.371094, 56.194481 ], [ 9.645996, 55.466399 ], [ 9.931641, 54.977614 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.942383, 54.007769 ], [ 11.953125, 54.201010 ], [ 12.524414, 54.470038 ], [ 13.645020, 54.072283 ], [ 14.128418, 53.761702 ], [ 14.809570, 54.046489 ], [ 16.369629, 54.508327 ], [ 17.622070, 54.851315 ], [ 18.632812, 54.686534 ], [ 18.698730, 54.431713 ], [ 19.665527, 54.418930 ], [ 19.885254, 54.863963 ], [ 21.269531, 55.191412 ], [ 21.049805, 56.035226 ], [ 21.093750, 56.788845 ], [ 21.577148, 57.409461 ], [ 22.521973, 57.751076 ], [ 23.312988, 57.004850 ], [ 24.125977, 57.028774 ], [ 24.433594, 58.378679 ], [ 24.060059, 58.251727 ], [ 23.422852, 58.608334 ], [ 23.334961, 59.187185 ], [ 24.609375, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.960449, 59.445075 ], [ 27.993164, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.081055, 60.500525 ], [ 26.257324, 60.424699 ], [ 24.499512, 60.053874 ], [ 22.873535, 59.844815 ], [ 22.302246, 60.392148 ], [ 21.313477, 60.716198 ], [ 21.555176, 61.700291 ], [ 21.049805, 62.603453 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.741211, 64.904910 ], [ 25.400391, 65.109148 ], [ 25.290527, 65.531171 ], [ 23.906250, 66.009086 ], [ 22.192383, 65.721594 ], [ 21.225586, 65.025785 ], [ 21.379395, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.841797, 62.744665 ], [ 17.116699, 61.344078 ], [ 17.841797, 60.640876 ], [ 18.786621, 60.075803 ], [ 17.863770, 58.950008 ], [ 16.831055, 58.722599 ], [ 16.457520, 57.040730 ], [ 15.886230, 56.108810 ], [ 14.677734, 56.194481 ], [ 14.106445, 55.404070 ], [ 12.941895, 55.366625 ], [ 12.634277, 56.304349 ], [ 11.799316, 57.444949 ], [ 11.030273, 58.859224 ], [ 10.349121, 59.467408 ], [ 8.393555, 58.309489 ], [ 7.053223, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.317383, 59.667741 ], [ 4.987793, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.547363, 63.450509 ], [ 10.524902, 64.482261 ], [ 12.370605, 65.874725 ], [ 13.117676, 66.513260 ], [ 13.996582, 67.204032 ], [ 41.088867, 67.204032 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.925781, 66.757250 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.826660, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.232910, 64.110602 ], [ 37.023926, 63.850354 ], [ 37.133789, 64.330391 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.146115 ], [ 39.594727, 64.520097 ], [ 40.429688, 64.764759 ], [ 39.770508, 65.494741 ], [ 42.099609, 66.478208 ], [ 43.022461, 66.416748 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.538574, 66.757250 ], [ 43.901367, 67.204032 ], [ 45.549316, 67.204032 ], [ 45.571289, 67.007428 ], [ 46.340332, 66.670387 ], [ 47.900391, 66.886972 ], [ 48.010254, 67.204032 ], [ 72.487793, 67.204032 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.169390 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.791909 ], [ 74.135742, 67.204032 ], [ 91.757812, 67.204032 ] ] ], [ [ [ -1.757812, 55.478853 ], [ -1.120605, 54.622978 ], [ -0.439453, 54.457267 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.317749 ], [ 0.461426, 52.935397 ], [ 1.691895, 52.736292 ], [ 1.560059, 52.093008 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.764259 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.478853 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.821777, 40.497092 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.232253 ], [ 8.811035, 38.908133 ], [ 8.437500, 39.164141 ], [ 8.393555, 40.380028 ], [ 8.151855, 40.946714 ], [ 8.701172, 40.896906 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 9.382324, 43.004647 ], [ 9.558105, 42.147114 ], [ 9.228516, 41.376809 ], [ 8.767090, 41.590797 ], [ 8.547363, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.004647 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.527344, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.373535, 14.923554 ], [ 0.307617, 14.434680 ], [ 0.439453, 13.987376 ], [ 0.988770, 13.325485 ], [ 1.032715, 12.854649 ], [ 2.175293, 12.618897 ], [ 2.153320, 11.931852 ], [ 1.933594, 11.630716 ], [ 1.450195, 11.544616 ], [ 1.252441, 11.113727 ], [ 0.900879, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.092166 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.005904 ], [ -1.757812, 10.984335 ], [ -1.757812, 14.668626 ], [ -1.076660, 14.966013 ], [ -0.527344, 15.114553 ] ] ], [ [ [ -1.757812, 55.478853 ], [ -1.120605, 54.622978 ], [ -0.439453, 54.457267 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.317749 ], [ 0.461426, 52.935397 ], [ 1.691895, 52.736292 ], [ 1.560059, 52.093008 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.764259 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.478853 ] ] ], [ [ [ -1.757812, 34.161818 ], [ -1.735840, 33.925130 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.657876 ], [ -1.318359, 32.268555 ], [ -1.757812, 32.212801 ], [ -1.757812, 34.161818 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.514160, 37.352693 ], [ 10.217285, 37.230328 ], [ 10.173340, 36.721274 ], [ 11.030273, 37.090240 ], [ 11.096191, 36.897194 ], [ 10.590820, 36.403600 ], [ 10.590820, 35.942436 ], [ 10.942383, 35.692995 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.325292 ], [ 10.349121, 33.779147 ], [ 10.854492, 33.760882 ], [ 11.118164, 33.284620 ], [ 11.491699, 33.137551 ], [ 12.656250, 32.787275 ], [ 13.073730, 32.879587 ], [ 13.930664, 32.713355 ], [ 15.249023, 32.268555 ], [ 15.710449, 31.372399 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.094238, 30.259067 ], [ 19.577637, 30.524413 ], [ 20.061035, 30.977609 ], [ 19.819336, 31.746854 ], [ 20.126953, 32.231390 ], [ 20.852051, 32.713355 ], [ 21.555176, 32.842674 ], [ 22.895508, 32.639375 ], [ 23.247070, 32.194209 ], [ 23.620605, 32.194209 ], [ 23.928223, 32.008076 ], [ 24.916992, 31.896214 ], [ 25.158691, 31.559815 ], [ 24.807129, 31.090574 ], [ 24.960938, 30.656816 ], [ 24.697266, 30.050077 ], [ 25.004883, 29.228890 ], [ 25.004883, 19.993998 ], [ 23.862305, 19.993998 ], [ 23.884277, 15.601875 ], [ 23.027344, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.521973, 14.093957 ], [ 22.192383, 13.795406 ], [ 22.302246, 13.368243 ], [ 22.038574, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.640338 ], [ 22.500000, 12.254128 ], [ 22.500000, 11.673755 ], [ 22.873535, 11.393879 ], [ 22.873535, 11.135287 ], [ 22.236328, 10.962764 ], [ 21.730957, 10.574222 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.080400 ], [ 18.808594, 8.971897 ], [ 18.918457, 8.624472 ], [ 18.391113, 8.276727 ], [ 17.973633, 7.885147 ], [ 16.699219, 7.514981 ], [ 16.457520, 7.732765 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.270996, 7.427837 ], [ 14.787598, 6.402648 ], [ 14.545898, 6.227934 ], [ 14.458008, 5.441022 ], [ 14.567871, 5.025283 ], [ 14.479980, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.842332 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.008870 ], [ 15.908203, 2.547988 ], [ 16.018066, 2.262595 ], [ 15.952148, 1.735574 ], [ 14.348145, 2.218684 ], [ 13.073730, 2.262595 ], [ 12.941895, 2.328460 ], [ 12.370605, 2.196727 ], [ 11.755371, 2.328460 ], [ 11.271973, 2.262595 ], [ 11.293945, 1.054628 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.164471 ], [ 9.645996, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.942871, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.481445, 4.499762 ], [ 8.503418, 4.762573 ], [ 7.470703, 4.412137 ], [ 7.075195, 4.455951 ], [ 6.701660, 4.236856 ], [ 5.888672, 4.258768 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.328613, 6.271618 ], [ 2.702637, 6.249776 ], [ 1.867676, 6.140555 ], [ 1.054688, 5.922045 ], [ 0.834961, 6.271618 ], [ 0.571289, 6.904614 ], [ 0.483398, 7.406048 ], [ 0.703125, 8.320212 ], [ 0.461426, 8.667918 ], [ 0.373535, 9.470736 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.639014 ], [ -0.043945, 10.703792 ], [ 0.021973, 11.027472 ], [ 0.900879, 11.005904 ], [ 1.252441, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.933594, 11.630716 ], [ 2.153320, 11.931852 ], [ 2.175293, 12.618897 ], [ 1.032715, 12.854649 ], [ 0.988770, 13.325485 ], [ 0.439453, 13.987376 ], [ 0.307617, 14.434680 ], [ 0.373535, 14.923554 ], [ 1.010742, 14.966013 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.647461, 15.559544 ], [ 3.735352, 16.172473 ], [ 4.262695, 16.846605 ], [ 4.262695, 19.145168 ], [ 5.668945, 19.601194 ], [ 8.569336, 21.555284 ], [ 11.997070, 23.463246 ], [ 11.557617, 24.106647 ], [ 10.766602, 24.567108 ], [ 10.305176, 24.387127 ], [ 9.953613, 24.926295 ], [ 9.909668, 25.363882 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.509905 ], [ 9.624023, 27.137368 ], [ 9.755859, 27.683528 ], [ 9.689941, 28.149503 ], [ 9.865723, 28.960089 ], [ 9.799805, 29.420460 ], [ 9.492188, 30.297018 ], [ 9.052734, 32.101190 ], [ 8.437500, 32.509762 ], [ 8.437500, 32.750323 ], [ 7.624512, 33.339707 ], [ 7.536621, 34.089061 ], [ 8.151855, 34.651285 ], [ 8.371582, 35.478565 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.514160, 37.352693 ] ] ], [ [ [ 35.178223, 42.032974 ], [ 36.914062, 41.327326 ], [ 38.342285, 40.946714 ], [ 39.506836, 41.095912 ], [ 40.385742, 41.013066 ], [ 41.550293, 41.541478 ], [ 42.626953, 41.574361 ], [ 43.593750, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.659668, 40.245992 ], [ 44.406738, 40.010787 ], [ 44.802246, 39.707187 ], [ 44.121094, 39.419221 ], [ 44.428711, 38.272689 ], [ 44.230957, 37.978845 ], [ 44.780273, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.076660, 35.675147 ], [ 46.142578, 35.083956 ], [ 45.659180, 34.741612 ], [ 45.417480, 33.961586 ], [ 46.120605, 33.008663 ], [ 47.329102, 32.472695 ], [ 47.856445, 31.709476 ], [ 47.680664, 30.977609 ], [ 48.010254, 30.977609 ], [ 48.010254, 30.448674 ], [ 48.559570, 29.916852 ], [ 47.307129, 30.050077 ], [ 46.560059, 29.094577 ], [ 44.714355, 29.171349 ], [ 41.901855, 31.184609 ], [ 40.407715, 31.896214 ], [ 39.199219, 32.157012 ], [ 39.001465, 32.008076 ], [ 37.001953, 31.503629 ], [ 37.990723, 30.505484 ], [ 37.661133, 30.334954 ], [ 37.507324, 30.012031 ], [ 36.738281, 29.859701 ], [ 36.496582, 29.496988 ], [ 36.079102, 29.190533 ], [ 34.958496, 29.363027 ], [ 34.277344, 31.222197 ], [ 34.562988, 31.541090 ], [ 34.497070, 31.597253 ], [ 34.760742, 32.063956 ], [ 34.958496, 32.824211 ], [ 35.134277, 33.082337 ], [ 35.485840, 33.906896 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.406961 ], [ 36.145020, 35.817813 ], [ 35.793457, 36.279707 ], [ 36.166992, 36.650793 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.791691 ], [ 34.035645, 36.226550 ], [ 32.519531, 36.102376 ], [ 31.706543, 36.650793 ], [ 30.629883, 36.668419 ], [ 30.388184, 36.261992 ], [ 29.707031, 36.137875 ], [ 28.740234, 36.668419 ], [ 27.641602, 36.650793 ], [ 27.048340, 37.649034 ], [ 26.323242, 38.203655 ], [ 26.806641, 38.976492 ], [ 26.169434, 39.470125 ], [ 27.290039, 40.413496 ], [ 28.828125, 40.463666 ], [ 29.245605, 41.211722 ], [ 31.157227, 41.079351 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.016652 ], [ 35.178223, 42.032974 ] ] ], [ [ [ 19.731445, 42.682435 ], [ 19.797363, 42.504503 ], [ 20.083008, 42.585444 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.212245 ], [ 20.588379, 41.853196 ], [ 20.456543, 41.508577 ], [ 20.610352, 41.079351 ], [ 21.027832, 40.847060 ], [ 21.665039, 40.930115 ], [ 22.060547, 41.145570 ], [ 22.587891, 41.129021 ], [ 22.763672, 41.310824 ], [ 22.961426, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.499512, 41.590797 ], [ 25.202637, 41.228249 ], [ 26.103516, 41.327326 ], [ 26.125488, 41.820455 ], [ 27.136230, 42.147114 ], [ 27.993164, 42.000325 ], [ 28.125000, 41.623655 ], [ 28.981934, 41.294317 ], [ 28.806152, 41.046217 ], [ 27.619629, 40.996484 ], [ 26.367188, 40.145289 ], [ 26.037598, 40.613952 ], [ 26.059570, 40.830437 ], [ 25.444336, 40.847060 ], [ 24.916992, 40.946714 ], [ 23.708496, 40.680638 ], [ 24.411621, 40.128491 ], [ 23.906250, 39.960280 ], [ 23.334961, 39.960280 ], [ 22.807617, 40.480381 ], [ 22.631836, 40.262761 ], [ 22.851562, 39.656456 ], [ 23.356934, 39.181175 ], [ 22.983398, 38.976492 ], [ 23.532715, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.400879, 37.405074 ], [ 22.785645, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.500000, 36.403600 ], [ 21.665039, 36.844461 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.307181 ], [ 20.214844, 39.334297 ], [ 20.148926, 39.622615 ], [ 19.973145, 39.690281 ], [ 19.951172, 39.909736 ], [ 19.401855, 40.245992 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.379883, 41.869561 ], [ 19.313965, 42.195969 ], [ 19.731445, 42.682435 ] ] ], [ [ [ 34.584961, 35.675147 ], [ 33.903809, 35.245619 ], [ 34.013672, 34.976002 ], [ 32.980957, 34.578952 ], [ 32.497559, 34.705493 ], [ 32.255859, 35.101934 ], [ 32.739258, 35.137879 ], [ 32.805176, 35.137879 ], [ 32.958984, 35.389050 ], [ 33.662109, 35.371135 ], [ 34.584961, 35.675147 ] ] ], [ [ [ 23.708496, 35.710838 ], [ 24.257812, 35.371135 ], [ 25.026855, 35.424868 ], [ 25.773926, 35.353216 ], [ 25.751953, 35.173808 ], [ 26.301270, 35.299435 ], [ 26.169434, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.741211, 35.083956 ], [ 23.510742, 35.281501 ], [ 23.708496, 35.710838 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.639014 ], [ 0.373535, 10.185187 ], [ 0.373535, 9.470736 ], [ 0.461426, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.904614 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.331644 ], [ -1.054688, 5.003394 ], [ -1.757812, 4.784469 ], [ -1.757812, 10.984335 ], [ -1.208496, 11.005904 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.092166 ] ] ], [ [ [ 9.514160, 37.352693 ], [ 10.217285, 37.230328 ], [ 10.173340, 36.721274 ], [ 11.030273, 37.090240 ], [ 11.096191, 36.897194 ], [ 10.590820, 36.403600 ], [ 10.590820, 35.942436 ], [ 10.942383, 35.692995 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.325292 ], [ 10.349121, 33.779147 ], [ 10.854492, 33.760882 ], [ 11.118164, 33.284620 ], [ 11.491699, 33.137551 ], [ 12.656250, 32.787275 ], [ 13.073730, 32.879587 ], [ 13.930664, 32.713355 ], [ 15.249023, 32.268555 ], [ 15.710449, 31.372399 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.094238, 30.259067 ], [ 19.577637, 30.524413 ], [ 20.061035, 30.977609 ], [ 19.819336, 31.746854 ], [ 20.126953, 32.231390 ], [ 20.852051, 32.713355 ], [ 21.555176, 32.842674 ], [ 22.895508, 32.639375 ], [ 23.247070, 32.194209 ], [ 23.620605, 32.194209 ], [ 23.928223, 32.008076 ], [ 24.916992, 31.896214 ], [ 25.158691, 31.559815 ], [ 24.807129, 31.090574 ], [ 24.960938, 30.656816 ], [ 24.697266, 30.050077 ], [ 25.004883, 29.228890 ], [ 25.004883, 19.993998 ], [ 23.862305, 19.993998 ], [ 23.840332, 19.580493 ], [ 15.864258, 23.402765 ], [ 14.853516, 22.857195 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.043491 ], [ 15.490723, 20.735566 ], [ 15.908203, 20.385825 ], [ 15.688477, 19.952696 ], [ 15.292969, 17.936929 ], [ 15.249023, 16.636192 ], [ 13.974609, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.987376 ], [ 13.952637, 13.346865 ], [ 14.589844, 13.325485 ], [ 14.501953, 12.854649 ], [ 14.216309, 12.790375 ], [ 14.172363, 12.490214 ], [ 13.996582, 12.468760 ], [ 13.315430, 13.560562 ], [ 13.095703, 13.603278 ], [ 12.304688, 13.025966 ], [ 11.535645, 13.325485 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.239945 ], [ 10.107422, 13.282719 ], [ 9.536133, 12.854649 ], [ 9.008789, 12.833226 ], [ 7.800293, 13.346865 ], [ 7.338867, 13.090179 ], [ 6.811523, 13.111580 ], [ 6.437988, 13.496473 ], [ 5.449219, 13.859414 ], [ 4.372559, 13.752725 ], [ 4.108887, 13.539201 ], [ 3.977051, 12.961736 ], [ 3.691406, 12.554564 ], [ 3.581543, 11.329253 ], [ 3.801270, 10.725381 ], [ 3.603516, 10.336536 ], [ 3.713379, 10.055403 ], [ 3.229980, 9.449062 ], [ 2.922363, 9.145486 ], [ 2.724609, 8.515836 ], [ 2.746582, 7.863382 ], [ 2.702637, 6.249776 ], [ 1.867676, 6.140555 ], [ 1.625977, 6.839170 ], [ 1.669922, 9.123792 ], [ 1.472168, 9.340672 ], [ 1.428223, 9.817329 ], [ 0.769043, 10.466206 ], [ 0.900879, 11.005904 ], [ 1.252441, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.933594, 11.630716 ], [ 2.153320, 11.931852 ], [ 2.175293, 12.618897 ], [ 1.032715, 12.854649 ], [ 0.988770, 13.325485 ], [ 0.439453, 13.987376 ], [ 0.307617, 14.434680 ], [ 0.373535, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.527344, 15.114553 ], [ -1.076660, 14.966013 ], [ -1.757812, 14.668626 ], [ -1.757812, 32.212801 ], [ -1.318359, 32.268555 ], [ -1.120605, 32.657876 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.925130 ], [ -1.757812, 35.406961 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.597889 ], [ 3.164062, 36.774092 ], [ 4.812012, 36.862043 ], [ 5.317383, 36.721274 ], [ 6.262207, 37.107765 ], [ 7.338867, 37.125286 ], [ 7.734375, 36.879621 ], [ 8.415527, 36.949892 ], [ 9.514160, 37.352693 ] ] ], [ [ [ 12.370605, 56.108810 ], [ 12.700195, 55.603178 ], [ 12.084961, 54.800685 ], [ 11.052246, 55.366625 ], [ 10.898438, 55.776573 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.652943 ], [ 90.725098, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.813477, 49.468124 ], [ 87.363281, 49.210420 ], [ 86.835938, 49.823809 ], [ 85.539551, 49.696062 ], [ 85.122070, 50.120578 ], [ 84.418945, 50.317408 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.958008, 50.805935 ], [ 80.573730, 51.385495 ], [ 80.046387, 50.861444 ], [ 77.805176, 53.409532 ], [ 76.530762, 54.175297 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.540307 ], [ 73.432617, 53.488046 ], [ 73.520508, 54.033586 ], [ 72.224121, 54.380557 ], [ 71.191406, 54.136696 ], [ 70.861816, 55.166319 ], [ 69.060059, 55.379110 ], [ 68.181152, 54.965002 ], [ 65.676270, 54.597528 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.975108 ], [ 60.732422, 52.722986 ], [ 60.930176, 52.442618 ], [ 59.963379, 51.957807 ], [ 61.589355, 51.275662 ], [ 61.347656, 50.792047 ], [ 59.941406, 50.847573 ], [ 59.633789, 50.541363 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.041394 ], [ 55.722656, 50.625073 ], [ 54.536133, 51.027576 ], [ 52.338867, 51.713416 ], [ 50.778809, 51.686180 ], [ 48.713379, 50.611132 ], [ 48.581543, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.757812, 49.353756 ], [ 47.043457, 49.152970 ], [ 46.472168, 48.400032 ], [ 47.307129, 47.709762 ], [ 48.054199, 47.739323 ], [ 48.691406, 47.070122 ], [ 48.603516, 46.558860 ], [ 49.108887, 46.392411 ], [ 48.647461, 45.798170 ], [ 47.680664, 45.644768 ], [ 46.691895, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.804078 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.145570 ], [ 47.373047, 41.211722 ], [ 46.691895, 41.820455 ], [ 46.406250, 41.853196 ], [ 46.142578, 41.722131 ], [ 46.647949, 41.178654 ], [ 46.494141, 41.062786 ], [ 45.966797, 41.129021 ], [ 45.219727, 41.409776 ], [ 44.978027, 41.244772 ], [ 43.593750, 41.095912 ], [ 42.626953, 41.574361 ], [ 41.550293, 41.541478 ], [ 41.704102, 41.967659 ], [ 41.462402, 42.650122 ], [ 40.869141, 43.004647 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.276671 ], [ 37.551270, 44.653024 ], [ 36.672363, 45.243953 ], [ 37.397461, 45.398450 ], [ 38.232422, 46.240652 ], [ 37.683105, 46.634351 ], [ 39.155273, 47.040182 ], [ 39.133301, 47.264320 ], [ 38.232422, 47.100045 ], [ 37.419434, 47.025206 ], [ 36.760254, 46.694667 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.271037 ], [ 35.024414, 45.644768 ], [ 35.507812, 45.413876 ], [ 36.540527, 45.475540 ], [ 36.342773, 45.104546 ], [ 35.244141, 44.933696 ], [ 33.881836, 44.355278 ], [ 33.332520, 44.559163 ], [ 33.552246, 45.026950 ], [ 32.453613, 45.321254 ], [ 32.629395, 45.521744 ], [ 33.596191, 45.844108 ], [ 33.310547, 46.073231 ], [ 31.750488, 46.331758 ], [ 31.684570, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.388184, 46.027482 ], [ 29.597168, 45.290347 ], [ 29.619141, 45.026950 ], [ 29.135742, 44.824708 ], [ 28.850098, 44.918139 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.685547, 42.569264 ], [ 27.993164, 42.000325 ], [ 27.136230, 42.147114 ], [ 26.125488, 41.820455 ], [ 26.608887, 41.557922 ], [ 26.301270, 40.930115 ], [ 26.059570, 40.830437 ], [ 25.444336, 40.847060 ], [ 24.916992, 40.946714 ], [ 23.708496, 40.680638 ], [ 24.411621, 40.128491 ], [ 23.906250, 39.960280 ], [ 23.334961, 39.960280 ], [ 22.807617, 40.480381 ], [ 22.631836, 40.262761 ], [ 22.851562, 39.656456 ], [ 23.356934, 39.181175 ], [ 22.983398, 38.976492 ], [ 23.532715, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.400879, 37.405074 ], [ 22.785645, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.500000, 36.403600 ], [ 21.665039, 36.844461 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.307181 ], [ 20.214844, 39.334297 ], [ 20.148926, 39.622615 ], [ 19.973145, 39.690281 ], [ 19.951172, 39.909736 ], [ 19.401855, 40.245992 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.379883, 41.869561 ], [ 19.160156, 41.951320 ], [ 18.874512, 42.277309 ], [ 18.457031, 42.472097 ], [ 17.512207, 42.843751 ], [ 16.940918, 43.213183 ], [ 16.018066, 43.500752 ], [ 15.183105, 44.245199 ], [ 15.380859, 44.323848 ], [ 14.919434, 44.731126 ], [ 14.897461, 45.073521 ], [ 14.260254, 45.228481 ], [ 13.952637, 44.793531 ], [ 13.666992, 45.135555 ], [ 13.688965, 45.475540 ], [ 13.930664, 45.583290 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.392578, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.590332, 44.087585 ], [ 13.535156, 43.580391 ], [ 14.040527, 42.763146 ], [ 15.139160, 41.951320 ], [ 15.930176, 41.967659 ], [ 16.171875, 41.738528 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.346544 ], [ 18.479004, 40.162083 ], [ 18.303223, 39.808536 ], [ 17.731934, 40.279526 ], [ 16.875000, 40.446947 ], [ 16.457520, 39.791655 ], [ 17.182617, 39.419221 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.839708 ], [ 16.105957, 37.978845 ], [ 15.688477, 37.909534 ], [ 15.688477, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.959409 ], [ 15.424805, 40.044438 ], [ 15.007324, 40.178873 ], [ 14.699707, 40.597271 ], [ 14.062500, 40.780541 ], [ 13.623047, 41.195190 ], [ 12.897949, 41.244772 ], [ 12.106934, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.924252 ], [ 10.195312, 43.913723 ], [ 9.711914, 44.040219 ], [ 8.898926, 44.370987 ], [ 8.437500, 44.229457 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.691708 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.068888 ], [ 2.988281, 42.472097 ], [ 3.032227, 41.885921 ], [ 2.087402, 41.228249 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.128491 ], [ 0.000000, 39.892880 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.649034 ], [ -1.450195, 37.439974 ], [ -1.757812, 37.090240 ], [ -1.757812, 43.596306 ], [ -1.384277, 44.024422 ], [ -1.186523, 46.012224 ], [ -1.757812, 46.589069 ], [ -1.757812, 48.661943 ], [ -1.625977, 48.647428 ], [ -1.757812, 49.152970 ], [ -1.757812, 49.696062 ], [ -0.988770, 49.339441 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.120578 ], [ 1.647949, 50.944584 ], [ 3.317871, 51.344339 ], [ 3.823242, 51.618017 ], [ 4.702148, 53.094024 ], [ 6.086426, 53.514185 ], [ 6.899414, 53.474970 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.129883, 53.527248 ], [ 8.811035, 54.020680 ], [ 8.569336, 54.393352 ], [ 8.525391, 54.965002 ], [ 8.129883, 55.516192 ], [ 8.085938, 56.535258 ], [ 8.261719, 56.812908 ], [ 8.547363, 57.112385 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.444949 ], [ 10.590820, 57.727619 ], [ 10.546875, 57.219608 ], [ 10.261230, 56.885002 ], [ 10.371094, 56.607885 ], [ 10.920410, 56.462490 ], [ 10.678711, 56.084298 ], [ 10.371094, 56.194481 ], [ 9.645996, 55.466399 ], [ 9.931641, 54.977614 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.942383, 54.007769 ], [ 11.953125, 54.201010 ], [ 12.524414, 54.470038 ], [ 13.645020, 54.072283 ], [ 14.128418, 53.761702 ], [ 14.809570, 54.046489 ], [ 16.369629, 54.508327 ], [ 17.622070, 54.851315 ], [ 18.632812, 54.686534 ], [ 18.698730, 54.431713 ], [ 19.665527, 54.418930 ], [ 19.885254, 54.863963 ], [ 21.269531, 55.191412 ], [ 21.049805, 56.035226 ], [ 21.093750, 56.788845 ], [ 21.577148, 57.409461 ], [ 22.521973, 57.751076 ], [ 23.312988, 57.004850 ], [ 24.125977, 57.028774 ], [ 24.433594, 58.378679 ], [ 24.060059, 58.251727 ], [ 23.422852, 58.608334 ], [ 23.334961, 59.187185 ], [ 24.609375, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.960449, 59.445075 ], [ 27.993164, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.081055, 60.500525 ], [ 26.257324, 60.424699 ], [ 24.499512, 60.053874 ], [ 22.873535, 59.844815 ], [ 22.302246, 60.392148 ], [ 21.313477, 60.716198 ], [ 21.555176, 61.700291 ], [ 21.049805, 62.603453 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.741211, 64.904910 ], [ 25.400391, 65.109148 ], [ 25.290527, 65.531171 ], [ 23.906250, 66.009086 ], [ 22.192383, 65.721594 ], [ 21.225586, 65.025785 ], [ 21.379395, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.841797, 62.744665 ], [ 17.116699, 61.344078 ], [ 17.841797, 60.640876 ], [ 18.786621, 60.075803 ], [ 17.863770, 58.950008 ], [ 16.831055, 58.722599 ], [ 16.457520, 57.040730 ], [ 15.886230, 56.108810 ], [ 14.677734, 56.194481 ], [ 14.106445, 55.404070 ], [ 12.941895, 55.366625 ], [ 12.634277, 56.304349 ], [ 11.799316, 57.444949 ], [ 11.030273, 58.859224 ], [ 10.349121, 59.467408 ], [ 8.393555, 58.309489 ], [ 7.053223, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.317383, 59.667741 ], [ 4.987793, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.547363, 63.450509 ], [ 10.524902, 64.482261 ], [ 12.370605, 65.874725 ], [ 13.117676, 66.513260 ], [ 13.996582, 67.204032 ], [ 41.088867, 67.204032 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.925781, 66.757250 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.826660, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.232910, 64.110602 ], [ 37.023926, 63.850354 ], [ 37.133789, 64.330391 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.146115 ], [ 39.594727, 64.520097 ], [ 40.429688, 64.764759 ], [ 39.770508, 65.494741 ], [ 42.099609, 66.478208 ], [ 43.022461, 66.416748 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.538574, 66.757250 ], [ 43.901367, 67.204032 ], [ 45.549316, 67.204032 ], [ 45.571289, 67.007428 ], [ 46.340332, 66.670387 ], [ 47.900391, 66.886972 ], [ 48.010254, 67.204032 ], [ 72.487793, 67.204032 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.169390 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.791909 ], [ 74.135742, 67.204032 ], [ 91.757812, 67.204032 ] ] ], [ [ [ 15.512695, 38.238180 ], [ 15.161133, 37.439974 ], [ 15.314941, 37.125286 ], [ 15.095215, 36.615528 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.117272 ], [ 13.732910, 38.030786 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.821777, 40.497092 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.232253 ], [ 8.811035, 38.908133 ], [ 8.437500, 39.164141 ], [ 8.393555, 40.380028 ], [ 8.151855, 40.946714 ], [ 8.701172, 40.896906 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 9.382324, 43.004647 ], [ 9.558105, 42.147114 ], [ 9.228516, 41.376809 ], [ 8.767090, 41.590797 ], [ 8.547363, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.004647 ] ] ], [ [ [ 23.708496, 35.710838 ], [ 24.257812, 35.371135 ], [ 25.026855, 35.424868 ], [ 25.773926, 35.353216 ], [ 25.751953, 35.173808 ], [ 26.301270, 35.299435 ], [ 26.169434, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.741211, 35.083956 ], [ 23.510742, 35.281501 ], [ 23.708496, 35.710838 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.499023, 31.578535 ], [ 28.916016, 30.864510 ], [ 29.685059, 31.184609 ], [ 30.102539, 31.466154 ], [ 30.981445, 31.559815 ], [ 31.684570, 31.428663 ], [ 31.970215, 30.939924 ], [ 32.189941, 31.259770 ], [ 33.002930, 31.015279 ], [ 33.771973, 30.958769 ], [ 34.277344, 31.222197 ], [ 34.914551, 29.496988 ], [ 34.650879, 29.094577 ], [ 34.431152, 28.343065 ], [ 34.145508, 27.819645 ], [ 33.925781, 27.644606 ], [ 33.134766, 28.420391 ], [ 32.431641, 29.840644 ], [ 32.321777, 29.764377 ], [ 32.739258, 28.709861 ], [ 33.354492, 27.702984 ], [ 34.101562, 26.135714 ], [ 34.475098, 25.601902 ], [ 34.804688, 25.025884 ], [ 35.683594, 23.926013 ], [ 35.485840, 23.745126 ], [ 35.529785, 23.099944 ], [ 36.694336, 22.207749 ], [ 36.870117, 22.004175 ], [ 37.199707, 21.022983 ], [ 36.979980, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.485352, 18.604601 ], [ 38.408203, 17.999632 ], [ 39.001465, 16.846605 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.088379, 12.704651 ], [ 43.330078, 12.382928 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.738302 ], [ 43.154297, 11.458491 ], [ 42.561035, 10.574222 ], [ 43.308105, 9.535749 ], [ 43.681641, 9.188870 ], [ 46.955566, 7.993957 ], [ 47.790527, 7.993957 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.780762, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.857910, 3.908099 ], [ 40.979004, 2.789425 ], [ 41.000977, 0.000000 ], [ 41.000977, -0.856902 ], [ 41.594238, -1.691649 ], [ 41.462402, -1.757537 ], [ 35.310059, -1.757537 ], [ 33.903809, -0.944781 ], [ 31.860352, -1.032659 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.142502 ], [ 29.816895, -1.450040 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.625758 ], [ 29.289551, -1.757537 ], [ 16.391602, -1.757537 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.644043, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.907715, 1.735574 ], [ 18.105469, 2.372369 ], [ 18.391113, 2.899153 ], [ 18.457031, 3.513421 ], [ 17.819824, 3.557283 ], [ 17.138672, 3.732708 ], [ 16.545410, 3.206333 ], [ 16.018066, 2.262595 ], [ 15.908203, 2.547988 ], [ 15.864258, 3.008870 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.842332 ], [ 14.941406, 4.214943 ], [ 14.479980, 4.740675 ], [ 14.567871, 5.025283 ], [ 14.458008, 5.441022 ], [ 14.545898, 6.227934 ], [ 14.787598, 6.402648 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.493196 ], [ 16.281738, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.699219, 7.514981 ], [ 17.973633, 7.885147 ], [ 18.391113, 8.276727 ], [ 18.918457, 8.624472 ], [ 18.808594, 8.971897 ], [ 19.094238, 9.080400 ], [ 20.061035, 9.015302 ], [ 21.005859, 9.470736 ], [ 21.730957, 10.574222 ], [ 22.236328, 10.962764 ], [ 22.873535, 11.135287 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.673755 ], [ 22.500000, 12.254128 ], [ 22.280273, 12.640338 ], [ 21.928711, 12.597455 ], [ 22.038574, 12.961736 ], [ 22.302246, 13.368243 ], [ 22.192383, 13.795406 ], [ 22.521973, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.027344, 15.686510 ], [ 23.884277, 15.601875 ], [ 23.862305, 19.993998 ], [ 25.004883, 19.993998 ], [ 25.004883, 29.228890 ], [ 24.697266, 30.050077 ], [ 24.960938, 30.656816 ], [ 24.807129, 31.090574 ], [ 25.158691, 31.559815 ], [ 26.499023, 31.578535 ] ], [ [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 23.796387, 8.667918 ] ] ], [ [ [ 69.060059, 55.379110 ], [ 70.861816, 55.166319 ], [ 71.191406, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.520508, 54.033586 ], [ 73.432617, 53.488046 ], [ 74.377441, 53.540307 ], [ 76.882324, 54.495568 ], [ 76.530762, 54.175297 ], [ 77.805176, 53.409532 ], [ 80.046387, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.958008, 50.805935 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.317408 ], [ 85.122070, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.835938, 49.823809 ], [ 87.363281, 49.210420 ], [ 86.594238, 48.545705 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.166016, 46.995241 ], [ 83.188477, 47.323931 ], [ 82.463379, 45.537137 ], [ 81.958008, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.266113, 42.342305 ], [ 80.112305, 42.130821 ], [ 78.552246, 41.574361 ], [ 78.178711, 41.178654 ], [ 76.904297, 41.062786 ], [ 76.530762, 40.430224 ], [ 75.476074, 40.563895 ], [ 74.772949, 40.363288 ], [ 73.828125, 39.892880 ], [ 73.959961, 39.656456 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.554199, 39.605688 ], [ 69.455566, 39.520992 ], [ 69.565430, 40.094882 ], [ 70.642090, 39.926588 ], [ 71.015625, 40.245992 ], [ 70.598145, 40.212441 ], [ 70.466309, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.016113, 40.078071 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.571822 ], [ 67.434082, 39.147103 ], [ 68.181152, 38.908133 ], [ 68.400879, 38.151837 ], [ 67.829590, 37.142803 ], [ 67.082520, 37.352693 ], [ 66.511230, 37.370157 ], [ 66.225586, 37.387617 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.300275 ], [ 64.753418, 37.107765 ], [ 64.555664, 36.315125 ], [ 63.984375, 36.013561 ], [ 63.193359, 35.853440 ], [ 62.995605, 35.406961 ], [ 62.226562, 35.263562 ], [ 61.215820, 35.657296 ], [ 61.127930, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.405074 ], [ 58.447266, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.623535, 38.117272 ], [ 56.184082, 37.926868 ], [ 55.502930, 37.961523 ], [ 54.799805, 37.387617 ], [ 53.920898, 37.195331 ], [ 53.745117, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.107910, 39.283294 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.027614 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.946714 ], [ 54.008789, 41.557922 ], [ 53.723145, 42.114524 ], [ 52.910156, 41.869561 ], [ 52.822266, 41.129021 ], [ 52.514648, 41.787697 ], [ 52.448730, 42.032974 ], [ 52.690430, 42.439674 ], [ 52.492676, 42.795401 ], [ 51.350098, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.339355, 44.276671 ], [ 50.317383, 44.606113 ], [ 51.284180, 44.512176 ], [ 51.328125, 45.243953 ], [ 52.163086, 45.413876 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.845164 ], [ 52.053223, 46.800059 ], [ 51.196289, 47.055154 ], [ 50.031738, 46.604167 ], [ 49.108887, 46.392411 ], [ 48.603516, 46.558860 ], [ 48.691406, 47.070122 ], [ 48.054199, 47.739323 ], [ 47.307129, 47.709762 ], [ 46.472168, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.757812, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.581543, 49.880478 ], [ 48.713379, 50.611132 ], [ 50.778809, 51.686180 ], [ 52.338867, 51.713416 ], [ 54.536133, 51.027576 ], [ 55.722656, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.541363 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.792047 ], [ 61.589355, 51.275662 ], [ 59.963379, 51.957807 ], [ 60.930176, 52.442618 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.975108 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.676270, 54.597528 ], [ 68.181152, 54.965002 ], [ 69.060059, 55.379110 ] ] ], [ [ [ 39.199219, 32.157012 ], [ 40.407715, 31.896214 ], [ 41.901855, 31.184609 ], [ 44.714355, 29.171349 ], [ 46.560059, 29.094577 ], [ 47.307129, 30.050077 ], [ 47.966309, 29.973970 ], [ 48.186035, 29.535230 ], [ 48.098145, 29.305561 ], [ 48.801270, 27.683528 ], [ 49.306641, 27.469287 ], [ 49.482422, 27.117813 ], [ 50.163574, 26.686730 ], [ 50.207520, 26.273714 ], [ 50.119629, 25.938287 ], [ 50.251465, 25.601902 ], [ 50.537109, 25.324167 ], [ 50.668945, 25.005973 ], [ 50.800781, 24.746831 ], [ 50.734863, 25.482951 ], [ 51.020508, 25.997550 ], [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.613770, 25.204941 ], [ 51.394043, 24.627045 ], [ 51.591797, 24.246965 ], [ 51.767578, 24.287027 ], [ 51.789551, 24.026397 ], [ 52.580566, 24.166802 ], [ 54.008789, 24.126702 ], [ 54.689941, 24.786735 ], [ 55.437012, 25.443275 ], [ 56.074219, 26.056783 ], [ 56.271973, 25.720735 ], [ 56.403809, 24.926295 ], [ 55.898438, 24.926295 ], [ 55.810547, 24.266997 ], [ 55.986328, 24.126702 ], [ 55.524902, 23.926013 ], [ 55.524902, 23.523700 ], [ 55.239258, 23.099944 ], [ 55.217285, 22.715390 ], [ 55.678711, 22.004175 ], [ 54.997559, 19.993998 ], [ 52.009277, 18.999803 ], [ 49.108887, 18.625425 ], [ 48.186035, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.757812, 17.287709 ], [ 46.362305, 17.224758 ], [ 45.395508, 17.329664 ], [ 45.219727, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.308688 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.077790 ], [ 43.220215, 16.657244 ], [ 42.780762, 16.341226 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.748047, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.935059, 19.476950 ], [ 40.253906, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.573438 ], [ 38.496094, 23.684774 ], [ 38.034668, 24.086589 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.866503 ], [ 37.221680, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.650391, 25.819672 ], [ 36.254883, 26.568877 ], [ 35.134277, 28.052591 ], [ 34.628906, 28.052591 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.958496, 29.363027 ], [ 36.079102, 29.190533 ], [ 36.496582, 29.496988 ], [ 36.738281, 29.859701 ], [ 37.507324, 30.012031 ], [ 37.661133, 30.334954 ], [ 37.990723, 30.505484 ], [ 37.001953, 31.503629 ], [ 39.001465, 32.008076 ], [ 39.199219, 32.157012 ] ] ], [ [ [ 46.406250, 41.853196 ], [ 46.691895, 41.820455 ], [ 47.373047, 41.211722 ], [ 47.812500, 41.145570 ], [ 47.988281, 41.409776 ], [ 48.581543, 41.804078 ], [ 49.108887, 41.277806 ], [ 49.614258, 40.563895 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.044786 ], [ 48.867188, 38.822591 ], [ 48.889160, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.788345 ], [ 48.361816, 39.283294 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.504041 ], [ 46.516113, 38.771216 ], [ 46.142578, 38.736946 ], [ 45.461426, 38.873929 ], [ 44.956055, 39.334297 ], [ 44.802246, 39.707187 ], [ 44.406738, 40.010787 ], [ 43.659668, 40.245992 ], [ 43.747559, 40.747257 ], [ 43.593750, 41.095912 ], [ 44.978027, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.129021 ], [ 46.494141, 41.062786 ], [ 46.647949, 41.178654 ], [ 46.142578, 41.722131 ], [ 46.406250, 41.853196 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.178223, 42.032974 ], [ 36.914062, 41.327326 ], [ 38.342285, 40.946714 ], [ 39.506836, 41.095912 ], [ 40.385742, 41.013066 ], [ 41.550293, 41.541478 ], [ 42.626953, 41.574361 ], [ 43.593750, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.659668, 40.245992 ], [ 44.406738, 40.010787 ], [ 44.802246, 39.707187 ], [ 44.121094, 39.419221 ], [ 44.428711, 38.272689 ], [ 44.230957, 37.978845 ], [ 44.780273, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.076660, 35.675147 ], [ 46.142578, 35.083956 ], [ 45.659180, 34.741612 ], [ 45.417480, 33.961586 ], [ 46.120605, 33.008663 ], [ 47.329102, 32.472695 ], [ 47.856445, 31.709476 ], [ 47.680664, 30.977609 ], [ 48.010254, 30.977609 ], [ 48.010254, 30.448674 ], [ 48.559570, 29.916852 ], [ 47.307129, 30.050077 ], [ 46.560059, 29.094577 ], [ 47.460938, 28.998532 ], [ 47.702637, 28.516969 ], [ 48.427734, 28.555576 ], [ 48.801270, 27.683528 ], [ 49.306641, 27.469287 ], [ 49.482422, 27.117813 ], [ 50.163574, 26.686730 ], [ 50.207520, 26.273714 ], [ 50.119629, 25.938287 ], [ 50.251465, 25.601902 ], [ 50.537109, 25.324167 ], [ 50.668945, 25.005973 ], [ 50.800781, 24.746831 ], [ 51.108398, 24.547123 ], [ 51.394043, 24.627045 ], [ 51.591797, 24.246965 ], [ 51.613770, 24.006326 ], [ 52.009277, 22.998852 ], [ 54.997559, 22.492257 ], [ 55.217285, 22.715390 ], [ 55.678711, 22.004175 ], [ 54.997559, 19.993998 ], [ 52.009277, 18.999803 ], [ 49.108887, 18.625425 ], [ 48.186035, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.757812, 17.287709 ], [ 46.362305, 17.224758 ], [ 45.395508, 17.329664 ], [ 45.219727, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.308688 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.077790 ], [ 43.220215, 16.657244 ], [ 42.780762, 16.341226 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.748047, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.935059, 19.476950 ], [ 40.253906, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.573438 ], [ 38.496094, 23.684774 ], [ 38.034668, 24.086589 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.866503 ], [ 37.221680, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.650391, 25.819672 ], [ 36.254883, 26.568877 ], [ 35.134277, 28.052591 ], [ 34.628906, 28.052591 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.958496, 29.363027 ], [ 34.914551, 29.496988 ], [ 34.650879, 29.094577 ], [ 34.431152, 28.343065 ], [ 34.145508, 27.819645 ], [ 33.925781, 27.644606 ], [ 33.134766, 28.420391 ], [ 32.431641, 29.840644 ], [ 32.321777, 29.764377 ], [ 32.739258, 28.709861 ], [ 33.354492, 27.702984 ], [ 34.101562, 26.135714 ], [ 34.475098, 25.601902 ], [ 34.804688, 25.025884 ], [ 35.683594, 23.926013 ], [ 35.485840, 23.745126 ], [ 35.529785, 23.099944 ], [ 36.694336, 22.207749 ], [ 36.870117, 22.004175 ], [ 37.199707, 21.022983 ], [ 36.979980, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.485352, 18.604601 ], [ 38.408203, 17.999632 ], [ 39.001465, 16.846605 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.088379, 12.704651 ], [ 43.330078, 12.382928 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.738302 ], [ 43.154297, 11.458491 ], [ 42.561035, 10.574222 ], [ 42.934570, 10.012130 ], [ 43.308105, 9.535749 ], [ 43.681641, 9.188870 ], [ 46.955566, 7.993957 ], [ 47.790527, 7.993957 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.780762, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.857910, 3.908099 ], [ 40.979004, 2.789425 ], [ 41.000977, 0.000000 ], [ 41.000977, -0.856902 ], [ 41.594238, -1.691649 ], [ 41.462402, -1.757537 ], [ 35.310059, -1.757537 ], [ 33.903809, -0.944781 ], [ 31.860352, -1.032659 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.142502 ], [ 29.816895, -1.450040 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.625758 ], [ 29.289551, -1.757537 ], [ 16.391602, -1.757537 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.644043, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.907715, 1.735574 ], [ 18.105469, 2.372369 ], [ 18.391113, 2.899153 ], [ 18.457031, 3.513421 ], [ 17.819824, 3.557283 ], [ 17.138672, 3.732708 ], [ 16.545410, 3.206333 ], [ 16.018066, 2.262595 ], [ 15.952148, 1.735574 ], [ 14.348145, 2.218684 ], [ 13.073730, 2.262595 ], [ 12.941895, 2.328460 ], [ 12.370605, 2.196727 ], [ 11.755371, 2.328460 ], [ 11.271973, 2.262595 ], [ 11.293945, 1.054628 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.164471 ], [ 9.645996, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.942871, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.481445, 4.499762 ], [ 8.503418, 4.762573 ], [ 7.470703, 4.412137 ], [ 7.075195, 4.455951 ], [ 6.701660, 4.236856 ], [ 5.888672, 4.258768 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.328613, 6.271618 ], [ 2.702637, 6.249776 ], [ 2.746582, 7.863382 ], [ 2.724609, 8.515836 ], [ 2.922363, 9.145486 ], [ 3.229980, 9.449062 ], [ 3.713379, 10.055403 ], [ 3.603516, 10.336536 ], [ 3.801270, 10.725381 ], [ 3.581543, 11.329253 ], [ 3.691406, 12.554564 ], [ 3.977051, 12.961736 ], [ 4.108887, 13.539201 ], [ 4.372559, 13.752725 ], [ 5.449219, 13.859414 ], [ 6.437988, 13.496473 ], [ 6.811523, 13.111580 ], [ 7.338867, 13.090179 ], [ 7.800293, 13.346865 ], [ 9.008789, 12.833226 ], [ 9.536133, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.700684, 13.239945 ], [ 10.986328, 13.389620 ], [ 11.535645, 13.325485 ], [ 12.304688, 13.025966 ], [ 13.095703, 13.603278 ], [ 13.315430, 13.560562 ], [ 13.996582, 12.468760 ], [ 14.172363, 12.490214 ], [ 14.216309, 12.790375 ], [ 14.501953, 12.854649 ], [ 14.589844, 13.325485 ], [ 13.952637, 13.346865 ], [ 13.952637, 13.987376 ], [ 13.535156, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.735566 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.857195 ], [ 15.864258, 23.402765 ], [ 23.840332, 19.580493 ], [ 23.862305, 19.993998 ], [ 25.004883, 19.993998 ], [ 25.004883, 29.228890 ], [ 24.697266, 30.050077 ], [ 24.960938, 30.656816 ], [ 24.807129, 31.090574 ], [ 25.158691, 31.559815 ], [ 26.499023, 31.578535 ], [ 28.916016, 30.864510 ], [ 29.685059, 31.184609 ], [ 30.102539, 31.466154 ], [ 30.981445, 31.559815 ], [ 31.684570, 31.428663 ], [ 31.970215, 30.939924 ], [ 32.189941, 31.259770 ], [ 33.002930, 31.015279 ], [ 33.771973, 30.958769 ], [ 34.277344, 31.222197 ], [ 34.562988, 31.541090 ], [ 34.497070, 31.597253 ], [ 34.760742, 32.063956 ], [ 34.958496, 32.824211 ], [ 35.134277, 33.082337 ], [ 35.485840, 33.906896 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.406961 ], [ 36.145020, 35.817813 ], [ 35.793457, 36.279707 ], [ 36.166992, 36.650793 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.791691 ], [ 34.035645, 36.226550 ], [ 32.519531, 36.102376 ], [ 31.706543, 36.650793 ], [ 30.629883, 36.668419 ], [ 30.388184, 36.261992 ], [ 29.707031, 36.137875 ], [ 28.740234, 36.668419 ], [ 27.641602, 36.650793 ], [ 27.048340, 37.649034 ], [ 26.323242, 38.203655 ], [ 26.806641, 38.976492 ], [ 26.169434, 39.470125 ], [ 27.290039, 40.413496 ], [ 28.828125, 40.463666 ], [ 29.245605, 41.211722 ], [ 31.157227, 41.079351 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.016652 ], [ 35.178223, 42.032974 ] ], [ [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 23.796387, 8.667918 ] ] ], [ [ [ 0.021973, 11.027472 ], [ 0.900879, 11.005904 ], [ 0.769043, 10.466206 ], [ 1.428223, 9.817329 ], [ 1.472168, 9.340672 ], [ 1.669922, 9.123792 ], [ 1.625977, 6.839170 ], [ 1.867676, 6.140555 ], [ 1.054688, 5.922045 ], [ 0.834961, 6.271618 ], [ 0.571289, 6.904614 ], [ 0.483398, 7.406048 ], [ 0.703125, 8.320212 ], [ 0.461426, 8.667918 ], [ 0.373535, 9.470736 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.639014 ], [ -0.043945, 10.703792 ], [ 0.021973, 11.027472 ] ] ], [ [ [ 27.136230, 42.147114 ], [ 27.993164, 42.000325 ], [ 28.125000, 41.623655 ], [ 28.981934, 41.294317 ], [ 28.806152, 41.046217 ], [ 27.619629, 40.996484 ], [ 26.367188, 40.145289 ], [ 26.037598, 40.613952 ], [ 26.059570, 40.830437 ], [ 26.301270, 40.930115 ], [ 26.608887, 41.557922 ], [ 26.125488, 41.820455 ], [ 27.136230, 42.147114 ] ] ], [ [ [ 34.584961, 35.675147 ], [ 33.903809, 35.245619 ], [ 34.013672, 34.976002 ], [ 32.980957, 34.578952 ], [ 32.497559, 34.705493 ], [ 32.255859, 35.101934 ], [ 32.739258, 35.137879 ], [ 32.805176, 35.137879 ], [ 32.958984, 35.389050 ], [ 33.662109, 35.371135 ], [ 34.584961, 35.675147 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.138672, 3.732708 ], [ 17.819824, 3.557283 ], [ 18.457031, 3.513421 ], [ 18.391113, 2.899153 ], [ 18.105469, 2.372369 ], [ 17.907715, 1.735574 ], [ 17.775879, 0.856902 ], [ 17.819824, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.644043, -0.417477 ], [ 17.534180, -0.747049 ], [ 16.875000, -1.230374 ], [ 16.391602, -1.757537 ], [ 9.184570, -1.757537 ], [ 8.789062, -1.120534 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.461421 ], [ 9.206543, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.293945, 1.054628 ], [ 11.271973, 2.262595 ], [ 11.755371, 2.328460 ], [ 12.370605, 2.196727 ], [ 12.941895, 2.328460 ], [ 13.073730, 2.262595 ], [ 14.348145, 2.218684 ], [ 15.952148, 1.735574 ], [ 16.018066, 2.262595 ], [ 16.545410, 3.206333 ], [ 17.138672, 3.732708 ] ] ], [ [ [ 33.903809, -0.944781 ], [ 35.310059, -1.757537 ], [ 29.289551, -1.757537 ], [ 29.289551, -1.625758 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.450040 ], [ 30.410156, -1.142502 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.032659 ], [ 33.903809, -0.944781 ] ] ], [ [ [ 51.108398, 12.017830 ], [ 51.130371, 11.738302 ], [ 51.042480, 11.156845 ], [ 51.042480, 10.639014 ], [ 50.844727, 10.271681 ], [ 50.559082, 9.188870 ], [ 50.075684, 8.080985 ], [ 49.460449, 6.795535 ], [ 48.603516, 5.331644 ], [ 47.746582, 4.214943 ], [ 46.560059, 2.855263 ], [ 45.571289, 2.043024 ], [ 44.077148, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.594238, -1.691649 ], [ 41.000977, -0.856902 ], [ 41.000977, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.857910, 3.908099 ], [ 42.121582, 4.236856 ], [ 42.780762, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.790527, 7.993957 ], [ 46.955566, 7.993957 ], [ 43.681641, 9.188870 ], [ 43.308105, 9.535749 ], [ 42.561035, 10.574222 ], [ 43.154297, 11.458491 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.854886 ], [ 44.121094, 10.444598 ], [ 44.626465, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.135287 ], [ 48.032227, 11.199957 ], [ 48.383789, 11.372339 ], [ 48.955078, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.673755 ], [ 50.734863, 12.017830 ], [ 51.108398, 12.017830 ] ] ], [ [ [ 80.156250, 9.817329 ], [ 80.837402, 9.275622 ], [ 81.298828, 8.559294 ], [ 81.782227, 7.514981 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.354004, 5.965754 ], [ 79.870605, 6.751896 ], [ 79.694824, 8.189742 ], [ 80.156250, 9.817329 ] ] ], [ [ [ 91.757812, 50.652943 ], [ 91.757812, 22.289096 ], [ 91.428223, 22.755921 ], [ 90.505371, 22.796439 ], [ 90.593262, 22.390714 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.044913 ], [ 89.714355, 21.861499 ], [ 89.428711, 21.963425 ], [ 89.033203, 22.044913 ], [ 88.879395, 21.698265 ], [ 88.220215, 21.698265 ], [ 86.967773, 21.493964 ], [ 87.033691, 20.735566 ], [ 86.506348, 20.159098 ], [ 85.056152, 19.476950 ], [ 83.935547, 18.291950 ], [ 83.188477, 17.664960 ], [ 82.199707, 17.014768 ], [ 82.199707, 16.551962 ], [ 81.694336, 16.299051 ], [ 80.793457, 15.940202 ], [ 80.332031, 15.897942 ], [ 80.024414, 15.135764 ], [ 80.244141, 13.838080 ], [ 80.288086, 13.004558 ], [ 79.870605, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.343262, 10.314919 ], [ 78.881836, 9.535749 ], [ 79.189453, 9.210560 ], [ 78.288574, 8.928487 ], [ 77.937012, 8.254983 ], [ 77.541504, 7.972198 ], [ 76.596680, 8.906780 ], [ 76.135254, 10.293301 ], [ 75.739746, 11.307708 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.619141, 13.987376 ], [ 74.443359, 14.626109 ], [ 73.542480, 15.982454 ], [ 72.817383, 19.207429 ], [ 72.817383, 20.427013 ], [ 72.641602, 21.350781 ], [ 71.169434, 20.756114 ], [ 70.466309, 20.879343 ], [ 69.169922, 22.085640 ], [ 69.653320, 22.451649 ], [ 69.345703, 22.836946 ], [ 68.181152, 23.684774 ], [ 67.434082, 23.946096 ], [ 67.148438, 24.666986 ], [ 66.379395, 25.423431 ], [ 64.533691, 25.244696 ], [ 62.907715, 25.224820 ], [ 61.501465, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.535156, 25.601902 ], [ 57.392578, 25.740529 ], [ 56.975098, 26.961246 ], [ 56.491699, 27.137368 ], [ 55.722656, 26.961246 ], [ 54.711914, 26.470573 ], [ 53.503418, 26.804461 ], [ 52.492676, 27.586198 ], [ 51.525879, 27.858504 ], [ 50.844727, 28.806174 ], [ 50.119629, 30.145127 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.315988 ], [ 48.559570, 29.916852 ], [ 48.010254, 30.448674 ], [ 48.010254, 30.977609 ], [ 47.680664, 30.977609 ], [ 47.856445, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.120605, 33.008663 ], [ 45.417480, 33.961586 ], [ 45.659180, 34.741612 ], [ 46.142578, 35.083956 ], [ 46.076660, 35.675147 ], [ 45.417480, 35.978006 ], [ 44.780273, 37.177826 ], [ 44.230957, 37.978845 ], [ 44.428711, 38.272689 ], [ 44.121094, 39.419221 ], [ 44.802246, 39.707187 ], [ 44.956055, 39.334297 ], [ 45.461426, 38.873929 ], [ 46.142578, 38.736946 ], [ 46.516113, 38.771216 ], [ 47.680664, 39.504041 ], [ 48.054199, 39.588757 ], [ 48.361816, 39.283294 ], [ 48.010254, 38.788345 ], [ 48.625488, 38.272689 ], [ 48.889160, 38.324420 ], [ 49.196777, 37.579413 ], [ 50.141602, 37.370157 ], [ 50.844727, 36.879621 ], [ 52.272949, 36.703660 ], [ 53.833008, 36.967449 ], [ 53.920898, 37.195331 ], [ 54.799805, 37.387617 ], [ 55.502930, 37.961523 ], [ 56.184082, 37.926868 ], [ 56.623535, 38.117272 ], [ 57.326660, 38.030786 ], [ 58.447266, 37.527154 ], [ 59.238281, 37.405074 ], [ 60.380859, 36.527295 ], [ 61.127930, 36.491973 ], [ 61.215820, 35.657296 ], [ 62.226562, 35.263562 ], [ 62.995605, 35.406961 ], [ 63.193359, 35.853440 ], [ 63.984375, 36.013561 ], [ 64.555664, 36.315125 ], [ 64.753418, 37.107765 ], [ 65.588379, 37.300275 ], [ 65.742188, 37.666429 ], [ 66.225586, 37.387617 ], [ 66.511230, 37.370157 ], [ 67.082520, 37.352693 ], [ 67.829590, 37.142803 ], [ 68.400879, 38.151837 ], [ 68.181152, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.571822 ], [ 68.532715, 39.537940 ], [ 69.016113, 40.078071 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ], [ 70.466309, 40.497092 ], [ 70.598145, 40.212441 ], [ 71.015625, 40.245992 ], [ 70.642090, 39.926588 ], [ 69.565430, 40.094882 ], [ 69.455566, 39.520992 ], [ 70.554199, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.656456 ], [ 73.828125, 39.892880 ], [ 74.772949, 40.363288 ], [ 75.476074, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.904297, 41.062786 ], [ 78.178711, 41.178654 ], [ 78.552246, 41.574361 ], [ 80.112305, 42.130821 ], [ 80.266113, 42.342305 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.958008, 45.321254 ], [ 82.463379, 45.537137 ], [ 83.188477, 47.323931 ], [ 85.166016, 46.995241 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.545705 ], [ 87.363281, 49.210420 ], [ 87.758789, 49.296472 ], [ 88.813477, 49.468124 ], [ 90.000000, 50.007739 ], [ 90.725098, 50.331436 ], [ 91.757812, 50.652943 ] ] ], [ [ [ 56.403809, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.414551, 23.885838 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.458008, 22.654572 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.105000 ], [ 58.491211, 20.427013 ], [ 58.029785, 20.488773 ], [ 57.832031, 20.241583 ], [ 57.656250, 19.725342 ], [ 57.788086, 19.062118 ], [ 57.700195, 18.937464 ], [ 57.238770, 18.937464 ], [ 56.601562, 18.562947 ], [ 56.513672, 18.083201 ], [ 56.293945, 17.874203 ], [ 55.656738, 17.874203 ], [ 55.261230, 17.623082 ], [ 55.283203, 17.224758 ], [ 54.799805, 16.951724 ], [ 54.250488, 17.035777 ], [ 53.569336, 16.699340 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.174316, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.691406, 14.008696 ], [ 48.229980, 13.944730 ], [ 47.944336, 14.008696 ], [ 47.351074, 13.581921 ], [ 46.713867, 13.389620 ], [ 45.878906, 13.346865 ], [ 45.637207, 13.282719 ], [ 45.417480, 13.025966 ], [ 45.153809, 12.961736 ], [ 45.000000, 12.704651 ], [ 44.494629, 12.726084 ], [ 44.187012, 12.576010 ], [ 43.483887, 12.640338 ], [ 43.220215, 13.218556 ], [ 43.242188, 13.774066 ], [ 43.088379, 14.051331 ], [ 42.890625, 14.796128 ], [ 42.604980, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.707663 ], [ 42.824707, 15.919074 ], [ 42.780762, 16.341226 ], [ 43.220215, 16.657244 ], [ 43.110352, 17.077790 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.308688 ], [ 44.055176, 17.413546 ], [ 45.219727, 17.434511 ], [ 45.395508, 17.329664 ], [ 46.362305, 17.224758 ], [ 46.757812, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.186035, 18.166730 ], [ 49.108887, 18.625425 ], [ 52.009277, 18.999803 ], [ 54.997559, 19.993998 ], [ 55.678711, 22.004175 ], [ 55.217285, 22.715390 ], [ 55.239258, 23.099944 ], [ 55.524902, 23.523700 ], [ 55.524902, 23.926013 ], [ 55.986328, 24.126702 ], [ 55.810547, 24.266997 ], [ 55.898438, 24.926295 ], [ 56.403809, 24.926295 ] ] ], [ [ [ 56.359863, 26.391870 ], [ 56.491699, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.271973, 25.720735 ], [ 56.074219, 26.056783 ], [ 56.359863, 26.391870 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.406250, 41.853196 ], [ 46.691895, 41.820455 ], [ 47.373047, 41.211722 ], [ 47.812500, 41.145570 ], [ 47.988281, 41.409776 ], [ 48.581543, 41.804078 ], [ 49.108887, 41.277806 ], [ 49.614258, 40.563895 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.044786 ], [ 48.867188, 38.822591 ], [ 48.889160, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.788345 ], [ 48.361816, 39.283294 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.504041 ], [ 46.516113, 38.771216 ], [ 46.494141, 39.470125 ], [ 46.032715, 39.622615 ], [ 45.615234, 39.892880 ], [ 45.900879, 40.212441 ], [ 45.351562, 40.563895 ], [ 45.571289, 40.813809 ], [ 45.175781, 40.979898 ], [ 44.978027, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.129021 ], [ 46.494141, 41.062786 ], [ 46.647949, 41.178654 ], [ 46.142578, 41.722131 ], [ 46.406250, 41.853196 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.307617, 39.470125 ], [ 45.747070, 39.470125 ], [ 45.747070, 39.317300 ], [ 46.142578, 38.736946 ], [ 45.461426, 38.873929 ], [ 44.956055, 39.334297 ], [ 44.802246, 39.707187 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 69.060059, 55.379110 ], [ 70.861816, 55.166319 ], [ 71.191406, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.520508, 54.033586 ], [ 73.432617, 53.488046 ], [ 74.377441, 53.540307 ], [ 76.882324, 54.495568 ], [ 76.530762, 54.175297 ], [ 77.805176, 53.409532 ], [ 80.046387, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.958008, 50.805935 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.317408 ], [ 85.122070, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.835938, 49.823809 ], [ 87.363281, 49.210420 ], [ 86.594238, 48.545705 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.166016, 46.995241 ], [ 83.188477, 47.323931 ], [ 82.463379, 45.537137 ], [ 81.958008, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.266113, 42.342305 ], [ 80.112305, 42.130821 ], [ 78.552246, 41.574361 ], [ 78.178711, 41.178654 ], [ 76.904297, 41.062786 ], [ 76.530762, 40.430224 ], [ 75.476074, 40.563895 ], [ 74.772949, 40.363288 ], [ 73.828125, 39.892880 ], [ 73.959961, 39.656456 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.554199, 39.605688 ], [ 69.455566, 39.520992 ], [ 69.565430, 40.094882 ], [ 70.642090, 39.926588 ], [ 71.015625, 40.245992 ], [ 71.784668, 40.145289 ], [ 73.059082, 40.863680 ], [ 71.872559, 41.393294 ], [ 71.169434, 41.145570 ], [ 70.422363, 41.525030 ], [ 71.257324, 42.163403 ], [ 70.971680, 42.261049 ], [ 70.400391, 42.081917 ], [ 69.082031, 41.376809 ], [ 68.642578, 40.663973 ], [ 68.269043, 40.663973 ], [ 67.983398, 41.129021 ], [ 66.708984, 41.162114 ], [ 66.511230, 41.983994 ], [ 66.027832, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.907227, 43.723475 ], [ 63.193359, 43.644026 ], [ 62.006836, 43.500752 ], [ 61.062012, 44.402392 ], [ 58.513184, 45.583290 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 54.755859, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.954102, 42.114524 ], [ 52.514648, 41.787697 ], [ 52.448730, 42.032974 ], [ 52.690430, 42.439674 ], [ 52.492676, 42.795401 ], [ 51.350098, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.339355, 44.276671 ], [ 50.317383, 44.606113 ], [ 51.284180, 44.512176 ], [ 51.328125, 45.243953 ], [ 52.163086, 45.413876 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.845164 ], [ 52.053223, 46.800059 ], [ 51.196289, 47.055154 ], [ 50.031738, 46.604167 ], [ 49.108887, 46.392411 ], [ 48.603516, 46.558860 ], [ 48.691406, 47.070122 ], [ 48.054199, 47.739323 ], [ 47.307129, 47.709762 ], [ 46.472168, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.757812, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.581543, 49.880478 ], [ 48.713379, 50.611132 ], [ 50.778809, 51.686180 ], [ 52.338867, 51.713416 ], [ 54.536133, 51.027576 ], [ 55.722656, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.541363 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.792047 ], [ 61.589355, 51.275662 ], [ 59.963379, 51.957807 ], [ 60.930176, 52.442618 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.975108 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.676270, 54.597528 ], [ 68.181152, 54.965002 ], [ 69.060059, 55.379110 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.138672, 3.732708 ], [ 17.819824, 3.557283 ], [ 18.457031, 3.513421 ], [ 18.391113, 2.899153 ], [ 18.105469, 2.372369 ], [ 17.907715, 1.735574 ], [ 17.775879, 0.856902 ], [ 17.819824, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.644043, -0.417477 ], [ 17.534180, -0.747049 ], [ 16.875000, -1.230374 ], [ 16.391602, -1.757537 ], [ 9.184570, -1.757537 ], [ 8.789062, -1.120534 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.461421 ], [ 9.206543, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.293945, 1.054628 ], [ 11.271973, 2.262595 ], [ 11.755371, 2.328460 ], [ 12.370605, 2.196727 ], [ 12.941895, 2.328460 ], [ 13.073730, 2.262595 ], [ 14.348145, 2.218684 ], [ 15.952148, 1.735574 ], [ 16.018066, 2.262595 ], [ 16.545410, 3.206333 ], [ 17.138672, 3.732708 ] ] ], [ [ [ 33.903809, -0.944781 ], [ 35.310059, -1.757537 ], [ 29.289551, -1.757537 ], [ 29.289551, -1.625758 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.450040 ], [ 30.410156, -1.142502 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.032659 ], [ 33.903809, -0.944781 ] ] ], [ [ [ 51.108398, 12.017830 ], [ 51.130371, 11.738302 ], [ 51.042480, 11.156845 ], [ 51.042480, 10.639014 ], [ 50.844727, 10.271681 ], [ 50.559082, 9.188870 ], [ 50.075684, 8.080985 ], [ 49.460449, 6.795535 ], [ 48.603516, 5.331644 ], [ 47.746582, 4.214943 ], [ 46.560059, 2.855263 ], [ 45.571289, 2.043024 ], [ 44.077148, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.594238, -1.691649 ], [ 41.000977, -0.856902 ], [ 41.000977, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.857910, 3.908099 ], [ 42.121582, 4.236856 ], [ 42.780762, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.790527, 7.993957 ], [ 46.955566, 7.993957 ], [ 43.681641, 9.188870 ], [ 43.308105, 9.535749 ], [ 42.561035, 10.574222 ], [ 43.154297, 11.458491 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.854886 ], [ 44.121094, 10.444598 ], [ 44.626465, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.135287 ], [ 48.032227, 11.199957 ], [ 48.383789, 11.372339 ], [ 48.955078, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.673755 ], [ 50.734863, 12.017830 ], [ 51.108398, 12.017830 ] ] ], [ [ [ 80.156250, 9.817329 ], [ 80.837402, 9.275622 ], [ 81.298828, 8.559294 ], [ 81.782227, 7.514981 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.354004, 5.965754 ], [ 79.870605, 6.751896 ], [ 79.694824, 8.189742 ], [ 80.156250, 9.817329 ] ] ], [ [ [ 91.757812, 50.652943 ], [ 91.757812, 22.289096 ], [ 91.428223, 22.755921 ], [ 90.505371, 22.796439 ], [ 90.593262, 22.390714 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.044913 ], [ 89.714355, 21.861499 ], [ 89.428711, 21.963425 ], [ 89.033203, 22.044913 ], [ 88.879395, 21.698265 ], [ 88.220215, 21.698265 ], [ 86.967773, 21.493964 ], [ 87.033691, 20.735566 ], [ 86.506348, 20.159098 ], [ 85.056152, 19.476950 ], [ 83.935547, 18.291950 ], [ 83.188477, 17.664960 ], [ 82.199707, 17.014768 ], [ 82.199707, 16.551962 ], [ 81.694336, 16.299051 ], [ 80.793457, 15.940202 ], [ 80.332031, 15.897942 ], [ 80.024414, 15.135764 ], [ 80.244141, 13.838080 ], [ 80.288086, 13.004558 ], [ 79.870605, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.343262, 10.314919 ], [ 78.881836, 9.535749 ], [ 79.189453, 9.210560 ], [ 78.288574, 8.928487 ], [ 77.937012, 8.254983 ], [ 77.541504, 7.972198 ], [ 76.596680, 8.906780 ], [ 76.135254, 10.293301 ], [ 75.739746, 11.307708 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.619141, 13.987376 ], [ 74.443359, 14.626109 ], [ 73.542480, 15.982454 ], [ 72.817383, 19.207429 ], [ 72.817383, 20.427013 ], [ 72.641602, 21.350781 ], [ 71.169434, 20.756114 ], [ 70.466309, 20.879343 ], [ 69.169922, 22.085640 ], [ 69.653320, 22.451649 ], [ 69.345703, 22.836946 ], [ 68.181152, 23.684774 ], [ 67.434082, 23.946096 ], [ 67.148438, 24.666986 ], [ 66.379395, 25.423431 ], [ 64.533691, 25.244696 ], [ 62.907715, 25.224820 ], [ 61.501465, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.535156, 25.601902 ], [ 57.392578, 25.740529 ], [ 56.975098, 26.961246 ], [ 56.491699, 27.137368 ], [ 55.722656, 26.961246 ], [ 54.711914, 26.470573 ], [ 53.503418, 26.804461 ], [ 52.492676, 27.586198 ], [ 51.525879, 27.858504 ], [ 50.844727, 28.806174 ], [ 50.119629, 30.145127 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.315988 ], [ 48.559570, 29.916852 ], [ 48.010254, 30.448674 ], [ 48.010254, 30.977609 ], [ 47.680664, 30.977609 ], [ 47.856445, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.120605, 33.008663 ], [ 45.417480, 33.961586 ], [ 45.659180, 34.741612 ], [ 46.142578, 35.083956 ], [ 46.076660, 35.675147 ], [ 45.417480, 35.978006 ], [ 44.780273, 37.177826 ], [ 44.230957, 37.978845 ], [ 44.428711, 38.272689 ], [ 44.121094, 39.419221 ], [ 44.802246, 39.707187 ], [ 44.406738, 40.010787 ], [ 43.659668, 40.245992 ], [ 43.747559, 40.747257 ], [ 43.593750, 41.095912 ], [ 44.978027, 41.244772 ], [ 45.175781, 40.979898 ], [ 45.571289, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.900879, 40.212441 ], [ 45.615234, 39.892880 ], [ 46.032715, 39.622615 ], [ 46.494141, 39.470125 ], [ 46.516113, 38.771216 ], [ 47.680664, 39.504041 ], [ 48.054199, 39.588757 ], [ 48.361816, 39.283294 ], [ 48.010254, 38.788345 ], [ 48.625488, 38.272689 ], [ 48.889160, 38.324420 ], [ 49.196777, 37.579413 ], [ 50.141602, 37.370157 ], [ 50.844727, 36.879621 ], [ 52.272949, 36.703660 ], [ 53.833008, 36.967449 ], [ 53.920898, 37.195331 ], [ 53.745117, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.107910, 39.283294 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.027614 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.946714 ], [ 54.008789, 41.557922 ], [ 53.723145, 42.114524 ], [ 52.910156, 41.869561 ], [ 52.822266, 41.129021 ], [ 52.514648, 41.787697 ], [ 52.954102, 42.114524 ], [ 54.074707, 42.326062 ], [ 54.755859, 42.049293 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 55.920410, 44.995883 ], [ 58.513184, 45.583290 ], [ 61.062012, 44.402392 ], [ 62.006836, 43.500752 ], [ 63.193359, 43.644026 ], [ 64.907227, 43.723475 ], [ 66.093750, 43.004647 ], [ 66.027832, 42.000325 ], [ 66.511230, 41.983994 ], [ 66.708984, 41.162114 ], [ 67.983398, 41.129021 ], [ 68.269043, 40.663973 ], [ 68.642578, 40.663973 ], [ 69.082031, 41.376809 ], [ 70.400391, 42.081917 ], [ 70.971680, 42.261049 ], [ 71.257324, 42.163403 ], [ 70.422363, 41.525030 ], [ 71.169434, 41.145570 ], [ 71.872559, 41.393294 ], [ 73.059082, 40.863680 ], [ 71.784668, 40.145289 ], [ 71.015625, 40.245992 ], [ 70.642090, 39.926588 ], [ 69.565430, 40.094882 ], [ 69.455566, 39.520992 ], [ 70.554199, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.656456 ], [ 73.828125, 39.892880 ], [ 74.772949, 40.363288 ], [ 75.476074, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.904297, 41.062786 ], [ 78.178711, 41.178654 ], [ 78.552246, 41.574361 ], [ 80.112305, 42.130821 ], [ 80.266113, 42.342305 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.958008, 45.321254 ], [ 82.463379, 45.537137 ], [ 83.188477, 47.323931 ], [ 85.166016, 46.995241 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.545705 ], [ 87.363281, 49.210420 ], [ 87.758789, 49.296472 ], [ 88.813477, 49.468124 ], [ 90.000000, 50.007739 ], [ 90.725098, 50.331436 ], [ 91.757812, 50.652943 ] ], [ [ 45.000000, 39.740986 ], [ 44.802246, 39.707187 ], [ 44.956055, 39.334297 ], [ 45.461426, 38.873929 ], [ 46.142578, 38.736946 ], [ 45.747070, 39.317300 ], [ 45.747070, 39.470125 ], [ 45.307617, 39.470125 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 56.359863, 26.391870 ], [ 56.491699, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.271973, 25.720735 ], [ 56.403809, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.414551, 23.885838 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.458008, 22.654572 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.105000 ], [ 58.491211, 20.427013 ], [ 58.029785, 20.488773 ], [ 57.832031, 20.241583 ], [ 57.656250, 19.725342 ], [ 57.788086, 19.062118 ], [ 57.700195, 18.937464 ], [ 57.238770, 18.937464 ], [ 56.601562, 18.562947 ], [ 56.513672, 18.083201 ], [ 56.293945, 17.874203 ], [ 55.656738, 17.874203 ], [ 55.261230, 17.623082 ], [ 55.283203, 17.224758 ], [ 54.799805, 16.951724 ], [ 54.250488, 17.035777 ], [ 53.569336, 16.699340 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.174316, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.691406, 14.008696 ], [ 48.229980, 13.944730 ], [ 47.944336, 14.008696 ], [ 47.351074, 13.581921 ], [ 46.713867, 13.389620 ], [ 45.878906, 13.346865 ], [ 45.637207, 13.282719 ], [ 45.417480, 13.025966 ], [ 45.153809, 12.961736 ], [ 45.000000, 12.704651 ], [ 44.494629, 12.726084 ], [ 44.187012, 12.576010 ], [ 43.483887, 12.640338 ], [ 43.220215, 13.218556 ], [ 43.242188, 13.774066 ], [ 43.088379, 14.051331 ], [ 42.890625, 14.796128 ], [ 42.604980, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.707663 ], [ 42.824707, 15.919074 ], [ 42.780762, 16.341226 ], [ 43.220215, 16.657244 ], [ 43.110352, 17.077790 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.308688 ], [ 44.055176, 17.413546 ], [ 45.219727, 17.434511 ], [ 45.395508, 17.329664 ], [ 46.362305, 17.224758 ], [ 46.757812, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.186035, 18.166730 ], [ 49.108887, 18.625425 ], [ 52.009277, 18.999803 ], [ 54.997559, 19.993998 ], [ 55.678711, 22.004175 ], [ 55.217285, 22.715390 ], [ 54.997559, 22.492257 ], [ 52.009277, 22.998852 ], [ 51.613770, 24.006326 ], [ 51.591797, 24.246965 ], [ 51.767578, 24.287027 ], [ 51.789551, 24.026397 ], [ 52.580566, 24.166802 ], [ 54.008789, 24.126702 ], [ 54.689941, 24.786735 ], [ 55.437012, 25.443275 ], [ 56.074219, 26.056783 ], [ 56.359863, 26.391870 ] ] ], [ [ [ 47.307129, 30.050077 ], [ 47.966309, 29.973970 ], [ 48.186035, 29.535230 ], [ 48.098145, 29.305561 ], [ 48.427734, 28.555576 ], [ 47.702637, 28.516969 ], [ 47.460938, 28.998532 ], [ 46.560059, 29.094577 ], [ 47.307129, 30.050077 ] ] ], [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.613770, 25.204941 ], [ 51.394043, 24.627045 ], [ 51.108398, 24.547123 ], [ 50.800781, 24.746831 ], [ 50.734863, 25.482951 ], [ 51.020508, 25.997550 ], [ 51.284180, 26.115986 ] ] ] ] } } ] } ] } , @@ -133,13 +143,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, -66.399160 ], [ 88.352051, -66.486976 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.399160 ] ] ], [ [ [ 91.582031, -67.110204 ], [ 92.614746, -67.187000 ], [ 93.295898, -67.204032 ], [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ] ] ], [ [ [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.141602, -67.204032 ], [ 93.581543, -67.204032 ], [ 94.174805, -67.110204 ] ] ], [ [ [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ], [ 98.063965, -67.204032 ], [ 98.679199, -67.110204 ] ] ], [ [ [ 102.832031, -65.567550 ], [ 103.469238, -65.703518 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.193848, -66.938669 ], [ 107.160645, -66.955877 ], [ 108.083496, -66.955877 ], [ 109.160156, -66.835165 ], [ 110.236816, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.133854 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.895020, -66.390361 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.661684 ], [ 117.377930, -66.912834 ], [ 118.586426, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ], [ 100.393066, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.579590, -66.311035 ], [ 102.832031, -65.567550 ] ] ], [ [ [ 135.065918, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.208496, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.955877 ], [ 138.603516, -66.895596 ], [ 139.899902, -66.878345 ], [ 140.800781, -66.817872 ], [ 142.119141, -66.817872 ], [ 143.063965, -66.800567 ], [ 144.382324, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.140137, -67.204032 ], [ 120.695801, -67.204032 ], [ 120.871582, -67.187000 ], [ 121.662598, -66.878345 ], [ 122.321777, -66.565747 ], [ 122.893066, -66.513260 ], [ 123.222656, -66.486976 ], [ 123.420410, -66.513260 ], [ 124.123535, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.101074, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.704590, -66.583217 ], [ 130.187988, -66.513260 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 133.857422, -66.284537 ], [ 134.758301, -66.213739 ], [ 135.021973, -65.721594 ], [ 135.065918, -65.311829 ] ] ], [ [ [ 172.792969, -40.497092 ], [ 173.254395, -41.327326 ], [ 173.957520, -40.930115 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.771312 ], [ 173.232422, -42.972502 ], [ 172.705078, -43.373112 ], [ 173.078613, -43.850374 ], [ 172.309570, -43.866218 ], [ 171.452637, -44.245199 ], [ 171.188965, -44.902578 ], [ 170.617676, -45.905300 ], [ 169.343262, -46.649436 ], [ 168.420410, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.684570, -46.225453 ], [ 166.508789, -45.859412 ], [ 167.058105, -45.104546 ], [ 168.310547, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.672852, -43.548548 ], [ 170.529785, -43.036776 ], [ 171.123047, -42.520700 ], [ 171.562500, -41.771312 ], [ 171.958008, -41.508577 ], [ 172.089844, -40.963308 ], [ 172.792969, -40.497092 ] ] ], [ [ [ 144.755859, -40.697299 ], [ 145.393066, -40.797177 ], [ 146.359863, -41.145570 ], [ 147.700195, -40.813809 ], [ 148.293457, -40.880295 ], [ 148.359375, -42.065607 ], [ 148.007812, -42.407235 ], [ 147.919922, -43.213183 ], [ 147.568359, -42.940339 ], [ 146.865234, -43.628123 ], [ 146.667480, -43.580391 ], [ 146.052246, -43.548548 ], [ 145.437012, -42.698586 ], [ 145.305176, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.755859, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.800293, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.910354 ], [ 143.151855, -12.318536 ], [ 143.525391, -12.833226 ], [ 143.591309, -13.410994 ], [ 143.569336, -13.774066 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.179186 ], [ 144.887695, -14.604847 ], [ 145.371094, -14.987240 ], [ 145.283203, -15.432501 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.898438, -16.909684 ], [ 146.162109, -17.769612 ], [ 146.074219, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.480469, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.268900 ], [ 149.677734, -22.350076 ], [ 150.073242, -22.126355 ], [ 150.490723, -22.553147 ], [ 150.732422, -22.411029 ], [ 150.908203, -23.463246 ], [ 152.072754, -24.467151 ], [ 152.863770, -25.264568 ], [ 153.127441, -26.076521 ], [ 153.171387, -26.647459 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.110749 ], [ 153.522949, -28.998532 ], [ 153.061523, -30.353916 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.721191, -33.045508 ], [ 151.347656, -33.815666 ], [ 151.018066, -34.307144 ], [ 150.710449, -35.173808 ], [ 150.336914, -35.675147 ], [ 150.073242, -36.421282 ], [ 149.941406, -37.107765 ], [ 150.007324, -37.422526 ], [ 149.436035, -37.770715 ], [ 148.315430, -37.805444 ], [ 147.392578, -38.220920 ], [ 146.931152, -38.599700 ], [ 146.315918, -39.044786 ], [ 145.480957, -38.599700 ], [ 144.887695, -38.410558 ], [ 145.041504, -37.892196 ], [ 144.492188, -38.082690 ], [ 143.613281, -38.805470 ], [ 142.185059, -38.376115 ], [ 141.613770, -38.307181 ], [ 140.646973, -38.013476 ], [ 139.987793, -37.405074 ], [ 139.812012, -36.650793 ], [ 139.570312, -36.137875 ], [ 139.086914, -35.728677 ], [ 138.120117, -35.621582 ], [ 138.449707, -35.119909 ], [ 138.208008, -34.379713 ], [ 137.724609, -35.083956 ], [ 136.823730, -35.263562 ], [ 137.351074, -34.705493 ], [ 137.504883, -34.125448 ], [ 137.900391, -33.632916 ], [ 137.812500, -32.898038 ], [ 136.999512, -33.760882 ], [ 136.384277, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.219727, -34.488448 ], [ 135.241699, -33.943360 ], [ 134.604492, -33.229498 ], [ 134.077148, -32.842674 ], [ 134.274902, -32.620870 ], [ 133.000488, -32.008076 ], [ 132.297363, -31.989442 ], [ 131.330566, -31.503629 ], [ 129.528809, -31.597253 ], [ 127.111816, -32.287133 ], [ 126.145020, -32.212801 ], [ 125.090332, -32.731841 ], [ 124.233398, -32.953368 ], [ 124.035645, -33.486435 ], [ 123.662109, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.189941, -33.998027 ], [ 121.311035, -33.815666 ], [ 120.585938, -33.925130 ], [ 119.904785, -33.979809 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.470335 ], [ 118.498535, -34.741612 ], [ 118.037109, -35.065973 ], [ 117.290039, -35.029996 ], [ 116.630859, -35.029996 ], [ 115.576172, -34.379713 ], [ 115.026855, -34.198173 ], [ 115.048828, -33.632916 ], [ 115.554199, -33.486435 ], [ 115.708008, -33.266250 ], [ 115.686035, -32.898038 ], [ 115.795898, -32.212801 ], [ 115.686035, -31.615966 ], [ 115.158691, -30.600094 ], [ 115.004883, -30.031055 ], [ 115.048828, -29.458731 ], [ 114.653320, -28.806174 ], [ 114.609375, -28.516969 ], [ 114.169922, -28.110749 ], [ 114.060059, -27.332735 ], [ 113.488770, -26.549223 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.549223 ], [ 113.444824, -25.621716 ], [ 113.928223, -25.918526 ], [ 114.235840, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.730469, -25.005973 ], [ 113.620605, -24.686952 ], [ 113.400879, -24.387127 ], [ 113.510742, -23.805450 ], [ 113.708496, -23.563987 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.759500 ], [ 114.235840, -22.512557 ], [ 114.653320, -21.820708 ], [ 115.466309, -21.493964 ], [ 115.949707, -21.063997 ], [ 116.718750, -20.694462 ], [ 117.158203, -20.632784 ], [ 117.443848, -20.756114 ], [ 118.234863, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.816895, -19.973349 ], [ 120.849609, -19.683970 ], [ 121.398926, -19.248922 ], [ 121.662598, -18.708692 ], [ 122.233887, -18.208480 ], [ 122.321777, -17.266728 ], [ 123.024902, -16.404470 ], [ 123.442383, -17.266728 ], [ 123.859863, -17.077790 ], [ 123.508301, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.387207, -15.559544 ], [ 124.936523, -15.072124 ], [ 125.178223, -14.689881 ], [ 125.661621, -14.519780 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.349548 ], [ 126.145020, -14.093957 ], [ 127.067871, -13.816744 ], [ 127.814941, -14.285677 ], [ 128.364258, -14.881087 ], [ 128.979492, -14.881087 ], [ 129.616699, -14.966013 ], [ 129.418945, -14.413400 ], [ 129.880371, -13.624633 ], [ 130.341797, -13.368243 ], [ 130.187988, -13.111580 ], [ 130.627441, -12.533115 ], [ 131.220703, -12.189704 ], [ 131.726074, -12.297068 ], [ 132.583008, -12.125264 ], [ 132.561035, -11.609193 ], [ 131.835938, -11.264612 ], [ 132.363281, -11.135287 ], [ 133.022461, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.307617, -12.254128 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.060809 ], [ 136.494141, -11.867351 ], [ 136.955566, -12.361466 ], [ 136.691895, -12.897489 ], [ 136.296387, -13.282719 ], [ 135.966797, -13.325485 ], [ 136.076660, -13.731381 ], [ 135.791016, -14.221789 ], [ 135.439453, -14.711135 ], [ 135.505371, -15.008464 ], [ 136.296387, -15.559544 ], [ 137.065430, -15.876809 ], [ 137.592773, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.108887, -17.056785 ], [ 139.262695, -17.371610 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.371610 ], [ 141.064453, -16.825574 ], [ 141.284180, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.050906 ], [ 141.569824, -14.562318 ], [ 141.635742, -14.264383 ], [ 141.525879, -13.710035 ], [ 141.657715, -12.940322 ], [ 141.833496, -12.747516 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.888853 ], [ 142.119141, -11.329253 ], [ 142.141113, -11.049038 ], [ 142.514648, -10.660608 ] ] ], [ [ [ 173.012695, -34.452218 ], [ 173.562012, -35.012002 ], [ 174.331055, -35.263562 ], [ 174.616699, -36.155618 ], [ 175.341797, -37.212832 ], [ 175.363770, -36.527295 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.561997 ], [ 176.770020, -37.874853 ], [ 177.451172, -37.961523 ], [ 178.022461, -37.579413 ], [ 178.527832, -37.701207 ], [ 178.286133, -38.582526 ], [ 177.978516, -39.164141 ], [ 177.209473, -39.147103 ], [ 176.945801, -39.453161 ], [ 177.033691, -39.876019 ], [ 176.022949, -41.294317 ], [ 175.231934, -41.689322 ], [ 175.078125, -41.426253 ], [ 174.660645, -41.277806 ], [ 175.231934, -40.463666 ], [ 174.902344, -39.909736 ], [ 173.825684, -39.504041 ], [ 173.847656, -39.147103 ], [ 174.572754, -38.805470 ], [ 174.748535, -38.030786 ], [ 174.704590, -37.387617 ], [ 174.287109, -36.703660 ], [ 174.331055, -36.527295 ], [ 173.847656, -36.120128 ], [ 173.056641, -35.245619 ], [ 172.639160, -34.524661 ], [ 173.012695, -34.452218 ] ] ], [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.790990 ], [ 134.143066, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.461426, -3.359889 ], [ 136.296387, -2.306506 ], [ 137.438965, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.196777, -2.043024 ], [ 139.921875, -2.416276 ], [ 140.998535, -2.591889 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.283203, -4.368320 ], [ 145.832520, -4.872048 ], [ 145.986328, -5.462896 ], [ 147.656250, -6.075011 ], [ 147.897949, -6.620957 ], [ 146.975098, -6.730076 ], [ 147.194824, -7.384258 ], [ 148.095703, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.080400 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.687398 ], [ 149.743652, -9.882275 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.029297, -10.660608 ], [ 149.787598, -10.401378 ], [ 147.919922, -10.141932 ], [ 147.128906, -9.492408 ], [ 146.579590, -8.950193 ], [ 146.052246, -8.059230 ], [ 144.755859, -7.623887 ], [ 143.898926, -7.906912 ], [ 143.283691, -8.254983 ], [ 143.415527, -8.993600 ], [ 142.624512, -9.318990 ], [ 142.075195, -9.167179 ], [ 141.042480, -9.123792 ], [ 140.141602, -8.298470 ], [ 139.130859, -8.102739 ], [ 138.889160, -8.385431 ], [ 137.614746, -8.407168 ], [ 138.032227, -7.602108 ], [ 138.669434, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.397273 ], [ 135.988770, -4.543570 ], [ 135.175781, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.374023, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.758789, -3.754634 ], [ 132.758789, -3.316018 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.791504, -2.482133 ], [ 133.703613, -2.218684 ], [ 132.231445, -2.218684 ], [ 131.835938, -1.625758 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.944781 ], [ 131.879883, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 117.971191, 1.757537 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.790990 ], [ 117.487793, 0.109863 ], [ 117.487793, 0.000000 ], [ 117.531738, -0.812961 ], [ 116.564941, -1.493971 ], [ 116.542969, -2.482133 ], [ 116.147461, -4.017699 ], [ 115.993652, -3.666928 ], [ 114.873047, -4.105369 ], [ 114.477539, -3.491489 ], [ 113.752441, -3.447625 ], [ 113.269043, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.052754 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.603794 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.028320, 0.000000 ], [ 108.962402, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.445801, 1.757537 ], [ 110.192871, 1.757537 ], [ 110.390625, 1.669686 ], [ 110.786133, 1.757537 ], [ 117.971191, 1.757537 ] ] ], [ [ [ 102.062988, 1.757537 ], [ 102.502441, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.842773, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.076597 ], [ 104.545898, -1.779499 ], [ 104.897461, -2.350415 ], [ 105.622559, -2.438229 ], [ 106.105957, -3.052754 ], [ 105.864258, -4.302591 ], [ 105.820312, -5.856475 ], [ 104.721680, -5.878332 ], [ 103.864746, -5.047171 ], [ 102.590332, -4.214943 ], [ 102.150879, -3.623071 ], [ 101.403809, -2.811371 ], [ 100.898438, -2.043024 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.635254, 1.757537 ], [ 102.062988, 1.757537 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.373533 ], [ 120.190430, 0.241699 ], [ 120.146484, 0.000000 ], [ 120.036621, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.486816, -0.966751 ], [ 123.332520, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.911267 ], [ 122.453613, -3.184394 ], [ 122.277832, -3.535352 ], [ 123.178711, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.629395, -5.637853 ], [ 122.233887, -5.287887 ], [ 122.717285, -4.455951 ], [ 121.750488, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.193030 ], [ 120.893555, -3.601142 ], [ 120.981445, -2.635789 ], [ 120.300293, -2.943041 ], [ 120.388184, -4.105369 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.681584 ], [ 119.377441, -5.375398 ], [ 119.663086, -4.455951 ], [ 119.509277, -3.491489 ], [ 119.069824, -3.491489 ], [ 118.762207, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.333496, -1.362176 ], [ 119.772949, 0.000000 ], [ 120.036621, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.662598, 1.010690 ], [ 122.937012, 0.878872 ], [ 124.079590, 0.922812 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 106.062012, -5.900189 ], [ 107.270508, -5.965754 ], [ 108.083496, -6.337137 ], [ 108.479004, -6.424484 ], [ 108.632812, -6.773716 ], [ 110.544434, -6.882800 ], [ 110.764160, -6.468151 ], [ 112.609863, -6.948239 ], [ 112.983398, -7.602108 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.363693 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.341953 ], [ 112.565918, -8.385431 ], [ 111.533203, -8.298470 ], [ 110.588379, -8.124491 ], [ 109.423828, -7.732765 ], [ 108.698730, -7.645665 ], [ 108.281250, -7.776309 ], [ 106.457520, -7.362467 ], [ 106.281738, -6.926427 ], [ 105.358887, -6.860985 ], [ 106.062012, -5.900189 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.336426, -4.324501 ], [ 152.314453, -4.872048 ], [ 151.984863, -5.484768 ], [ 151.457520, -5.572250 ], [ 151.303711, -5.834616 ], [ 150.249023, -6.315299 ], [ 149.721680, -6.315299 ], [ 148.886719, -6.031311 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.304199, -5.594118 ], [ 149.853516, -5.506640 ], [ 150.007324, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.249023, -5.528511 ], [ 150.798340, -5.462896 ], [ 151.083984, -5.112830 ], [ 151.655273, -4.762573 ], [ 151.545410, -4.171115 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 126.958008, -8.276727 ], [ 127.331543, -8.407168 ], [ 126.979980, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.090332, -9.384032 ], [ 124.431152, -10.141932 ], [ 123.574219, -10.358151 ], [ 123.464355, -10.250060 ], [ 123.552246, -9.903921 ], [ 123.991699, -9.297307 ], [ 124.980469, -8.885072 ], [ 125.090332, -8.667918 ], [ 125.947266, -8.428904 ], [ 126.650391, -8.407168 ], [ 126.958008, -8.276727 ] ] ], [ [ [ 164.025879, -20.097206 ], [ 164.465332, -20.117840 ], [ 165.014648, -20.468189 ], [ 166.596680, -21.698265 ], [ 167.124023, -22.167058 ], [ 166.750488, -22.411029 ], [ 166.201172, -22.126355 ], [ 165.476074, -21.677848 ], [ 164.838867, -21.145992 ], [ 164.179688, -20.447602 ], [ 164.025879, -20.097206 ] ] ], [ [ [ 127.990723, 1.757537 ], [ 128.012695, 1.625758 ], [ 128.605957, 1.537901 ], [ 128.693848, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.122559, 0.351560 ], [ 127.968750, -0.263671 ], [ 128.386230, -0.790990 ], [ 128.100586, -0.900842 ], [ 127.705078, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.757537 ], [ 127.990723, 1.757537 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.096636 ], [ 130.847168, -3.864255 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.902832, -3.403758 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 178.374023, -17.350638 ], [ 178.725586, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.934570, -18.291950 ], [ 177.385254, -18.166730 ], [ 177.297363, -17.727759 ], [ 177.670898, -17.392579 ], [ 178.132324, -17.497389 ], [ 178.374023, -17.350638 ] ] ], [ [ [ 180.197754, -16.024696 ], [ 180.087891, -16.509833 ], [ 180.000000, -16.551962 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.099121, -16.425548 ], [ 179.406738, -16.383391 ], [ 180.000000, -16.066929 ], [ 180.197754, -16.024696 ] ] ], [ [ [ 167.211914, -15.897942 ], [ 167.849121, -16.467695 ], [ 167.519531, -16.594081 ], [ 167.189941, -16.151369 ], [ 167.211914, -15.897942 ] ] ], [ [ [ 166.640625, -14.626109 ], [ 167.102051, -14.944785 ], [ 167.277832, -15.749963 ], [ 166.992188, -15.623037 ], [ 166.794434, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.640625, -14.626109 ] ] ], [ [ [ 122.915039, -8.102739 ], [ 122.761230, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.926758, -8.819939 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.233237 ], [ 121.333008, -8.537565 ], [ 122.014160, -8.472372 ], [ 122.915039, -8.102739 ] ] ], [ [ [ 161.323242, -10.206813 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.487812 ], [ 162.399902, -10.833306 ], [ 161.696777, -10.811724 ], [ 161.323242, -10.206813 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.256836, -8.363693 ], [ 118.872070, -8.276727 ], [ 119.135742, -8.711359 ], [ 117.290039, -9.037003 ], [ 116.740723, -9.037003 ], [ 117.092285, -8.450639 ], [ 117.641602, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 151.479492, -2.789425 ], [ 152.248535, -3.250209 ], [ 152.644043, -3.666928 ], [ 153.017578, -3.973861 ], [ 153.149414, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.644043, -4.171115 ], [ 152.402344, -3.798484 ], [ 151.391602, -3.030812 ], [ 150.666504, -2.745531 ], [ 150.952148, -2.504085 ] ] ], [ [ [ 119.904785, -9.362353 ], [ 120.432129, -9.665738 ], [ 120.783691, -9.968851 ], [ 120.717773, -10.250060 ], [ 120.300293, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.904785, -9.362353 ] ] ], [ [ [ 159.697266, -9.253936 ], [ 160.356445, -9.405710 ], [ 160.686035, -9.600750 ], [ 160.861816, -9.882275 ], [ 160.466309, -9.903921 ], [ 159.851074, -9.795678 ], [ 159.631348, -9.644077 ], [ 159.697266, -9.253936 ] ] ], [ [ [ 160.927734, -8.320212 ], [ 161.279297, -9.123792 ], [ 161.674805, -9.600750 ], [ 161.520996, -9.795678 ], [ 160.795898, -8.928487 ], [ 160.576172, -8.320212 ], [ 160.927734, -8.320212 ] ] ], [ [ [ 154.643555, -5.047171 ], [ 154.753418, -5.331644 ], [ 155.061035, -5.572250 ], [ 155.544434, -6.206090 ], [ 156.027832, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.610352, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.047171 ] ] ], [ [ [ 127.001953, -3.140516 ], [ 127.243652, -3.469557 ], [ 126.870117, -3.798484 ], [ 126.188965, -3.601142 ], [ 125.991211, -3.184394 ], [ 127.001953, -3.140516 ] ] ], [ [ [ 104.194336, 1.757537 ], [ 104.260254, 1.625758 ], [ 104.238281, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.832031, 1.757537 ], [ 104.194336, 1.757537 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.341953 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.124491 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.427837 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.736328, -5.747174 ], [ 134.736328, -6.206090 ], [ 134.208984, -6.904614 ], [ 134.121094, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 156.555176, -6.599131 ], [ 157.148438, -7.013668 ], [ 157.543945, -7.340675 ], [ 157.346191, -7.406048 ], [ 156.906738, -7.188101 ], [ 156.489258, -6.773716 ], [ 156.555176, -6.599131 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, -66.399160 ], [ 88.352051, -66.486976 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.399160 ] ] ], [ [ [ 91.582031, -67.110204 ], [ 92.614746, -67.187000 ], [ 93.295898, -67.204032 ], [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ] ] ], [ [ [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.141602, -67.204032 ], [ 93.581543, -67.204032 ], [ 94.174805, -67.110204 ] ] ], [ [ [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ], [ 98.063965, -67.204032 ], [ 98.679199, -67.110204 ] ] ], [ [ [ 102.832031, -65.567550 ], [ 103.469238, -65.703518 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.193848, -66.938669 ], [ 107.160645, -66.955877 ], [ 108.083496, -66.955877 ], [ 109.160156, -66.835165 ], [ 110.236816, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.133854 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.895020, -66.390361 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.661684 ], [ 117.377930, -66.912834 ], [ 118.586426, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ], [ 100.393066, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.579590, -66.311035 ], [ 102.832031, -65.567550 ] ] ], [ [ [ 135.065918, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.208496, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.955877 ], [ 138.603516, -66.895596 ], [ 139.899902, -66.878345 ], [ 140.800781, -66.817872 ], [ 142.119141, -66.817872 ], [ 143.063965, -66.800567 ], [ 144.382324, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.140137, -67.204032 ], [ 120.695801, -67.204032 ], [ 120.871582, -67.187000 ], [ 121.662598, -66.878345 ], [ 122.321777, -66.565747 ], [ 122.893066, -66.513260 ], [ 123.222656, -66.486976 ], [ 123.420410, -66.513260 ], [ 124.123535, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.101074, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.704590, -66.583217 ], [ 130.187988, -66.513260 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 133.857422, -66.284537 ], [ 134.758301, -66.213739 ], [ 135.021973, -65.721594 ], [ 135.065918, -65.311829 ] ] ], [ [ [ 144.755859, -40.697299 ], [ 145.393066, -40.797177 ], [ 146.359863, -41.145570 ], [ 147.700195, -40.813809 ], [ 148.293457, -40.880295 ], [ 148.359375, -42.065607 ], [ 148.007812, -42.407235 ], [ 147.919922, -43.213183 ], [ 147.568359, -42.940339 ], [ 146.865234, -43.628123 ], [ 146.667480, -43.580391 ], [ 146.052246, -43.548548 ], [ 145.437012, -42.698586 ], [ 145.305176, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.755859, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.800293, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.910354 ], [ 143.151855, -12.318536 ], [ 143.525391, -12.833226 ], [ 143.591309, -13.410994 ], [ 143.569336, -13.774066 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.179186 ], [ 144.887695, -14.604847 ], [ 145.371094, -14.987240 ], [ 145.283203, -15.432501 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.898438, -16.909684 ], [ 146.162109, -17.769612 ], [ 146.074219, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.480469, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.268900 ], [ 149.677734, -22.350076 ], [ 150.073242, -22.126355 ], [ 150.490723, -22.553147 ], [ 150.732422, -22.411029 ], [ 150.908203, -23.463246 ], [ 152.072754, -24.467151 ], [ 152.863770, -25.264568 ], [ 153.127441, -26.076521 ], [ 153.171387, -26.647459 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.110749 ], [ 153.522949, -28.998532 ], [ 153.061523, -30.353916 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.721191, -33.045508 ], [ 151.347656, -33.815666 ], [ 151.018066, -34.307144 ], [ 150.710449, -35.173808 ], [ 150.336914, -35.675147 ], [ 150.073242, -36.421282 ], [ 149.941406, -37.107765 ], [ 150.007324, -37.422526 ], [ 149.436035, -37.770715 ], [ 148.315430, -37.805444 ], [ 147.392578, -38.220920 ], [ 146.931152, -38.599700 ], [ 146.315918, -39.044786 ], [ 145.480957, -38.599700 ], [ 144.887695, -38.410558 ], [ 145.041504, -37.892196 ], [ 144.492188, -38.082690 ], [ 143.613281, -38.805470 ], [ 142.185059, -38.376115 ], [ 141.613770, -38.307181 ], [ 140.646973, -38.013476 ], [ 139.987793, -37.405074 ], [ 139.812012, -36.650793 ], [ 139.570312, -36.137875 ], [ 139.086914, -35.728677 ], [ 138.120117, -35.621582 ], [ 138.449707, -35.119909 ], [ 138.208008, -34.379713 ], [ 137.724609, -35.083956 ], [ 136.823730, -35.263562 ], [ 137.351074, -34.705493 ], [ 137.504883, -34.125448 ], [ 137.900391, -33.632916 ], [ 137.812500, -32.898038 ], [ 136.999512, -33.760882 ], [ 136.384277, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.219727, -34.488448 ], [ 135.241699, -33.943360 ], [ 134.604492, -33.229498 ], [ 134.077148, -32.842674 ], [ 134.274902, -32.620870 ], [ 133.000488, -32.008076 ], [ 132.297363, -31.989442 ], [ 131.330566, -31.503629 ], [ 129.528809, -31.597253 ], [ 127.111816, -32.287133 ], [ 126.145020, -32.212801 ], [ 125.090332, -32.731841 ], [ 124.233398, -32.953368 ], [ 124.035645, -33.486435 ], [ 123.662109, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.189941, -33.998027 ], [ 121.311035, -33.815666 ], [ 120.585938, -33.925130 ], [ 119.904785, -33.979809 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.470335 ], [ 118.498535, -34.741612 ], [ 118.037109, -35.065973 ], [ 117.290039, -35.029996 ], [ 116.630859, -35.029996 ], [ 115.576172, -34.379713 ], [ 115.026855, -34.198173 ], [ 115.048828, -33.632916 ], [ 115.554199, -33.486435 ], [ 115.708008, -33.266250 ], [ 115.686035, -32.898038 ], [ 115.795898, -32.212801 ], [ 115.686035, -31.615966 ], [ 115.158691, -30.600094 ], [ 115.004883, -30.031055 ], [ 115.048828, -29.458731 ], [ 114.653320, -28.806174 ], [ 114.609375, -28.516969 ], [ 114.169922, -28.110749 ], [ 114.060059, -27.332735 ], [ 113.488770, -26.549223 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.549223 ], [ 113.444824, -25.621716 ], [ 113.928223, -25.918526 ], [ 114.235840, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.730469, -25.005973 ], [ 113.620605, -24.686952 ], [ 113.400879, -24.387127 ], [ 113.510742, -23.805450 ], [ 113.708496, -23.563987 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.759500 ], [ 114.235840, -22.512557 ], [ 114.653320, -21.820708 ], [ 115.466309, -21.493964 ], [ 115.949707, -21.063997 ], [ 116.718750, -20.694462 ], [ 117.158203, -20.632784 ], [ 117.443848, -20.756114 ], [ 118.234863, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.816895, -19.973349 ], [ 120.849609, -19.683970 ], [ 121.398926, -19.248922 ], [ 121.662598, -18.708692 ], [ 122.233887, -18.208480 ], [ 122.321777, -17.266728 ], [ 123.024902, -16.404470 ], [ 123.442383, -17.266728 ], [ 123.859863, -17.077790 ], [ 123.508301, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.387207, -15.559544 ], [ 124.936523, -15.072124 ], [ 125.178223, -14.689881 ], [ 125.661621, -14.519780 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.349548 ], [ 126.145020, -14.093957 ], [ 127.067871, -13.816744 ], [ 127.814941, -14.285677 ], [ 128.364258, -14.881087 ], [ 128.979492, -14.881087 ], [ 129.616699, -14.966013 ], [ 129.418945, -14.413400 ], [ 129.880371, -13.624633 ], [ 130.341797, -13.368243 ], [ 130.187988, -13.111580 ], [ 130.627441, -12.533115 ], [ 131.220703, -12.189704 ], [ 131.726074, -12.297068 ], [ 132.583008, -12.125264 ], [ 132.561035, -11.609193 ], [ 131.835938, -11.264612 ], [ 132.363281, -11.135287 ], [ 133.022461, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.307617, -12.254128 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.060809 ], [ 136.494141, -11.867351 ], [ 136.955566, -12.361466 ], [ 136.691895, -12.897489 ], [ 136.296387, -13.282719 ], [ 135.966797, -13.325485 ], [ 136.076660, -13.731381 ], [ 135.791016, -14.221789 ], [ 135.439453, -14.711135 ], [ 135.505371, -15.008464 ], [ 136.296387, -15.559544 ], [ 137.065430, -15.876809 ], [ 137.592773, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.108887, -17.056785 ], [ 139.262695, -17.371610 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.371610 ], [ 141.064453, -16.825574 ], [ 141.284180, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.050906 ], [ 141.569824, -14.562318 ], [ 141.635742, -14.264383 ], [ 141.525879, -13.710035 ], [ 141.657715, -12.940322 ], [ 141.833496, -12.747516 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.888853 ], [ 142.119141, -11.329253 ], [ 142.141113, -11.049038 ], [ 142.514648, -10.660608 ] ] ], [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.790990 ], [ 134.143066, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.461426, -3.359889 ], [ 136.296387, -2.306506 ], [ 137.438965, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.196777, -2.043024 ], [ 139.921875, -2.416276 ], [ 140.998535, -2.591889 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.283203, -4.368320 ], [ 145.832520, -4.872048 ], [ 145.986328, -5.462896 ], [ 147.656250, -6.075011 ], [ 147.897949, -6.620957 ], [ 146.975098, -6.730076 ], [ 147.194824, -7.384258 ], [ 148.095703, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.080400 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.687398 ], [ 149.743652, -9.882275 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.029297, -10.660608 ], [ 149.787598, -10.401378 ], [ 147.919922, -10.141932 ], [ 147.128906, -9.492408 ], [ 146.579590, -8.950193 ], [ 146.052246, -8.059230 ], [ 144.755859, -7.623887 ], [ 143.898926, -7.906912 ], [ 143.283691, -8.254983 ], [ 143.415527, -8.993600 ], [ 142.624512, -9.318990 ], [ 142.075195, -9.167179 ], [ 141.042480, -9.123792 ], [ 140.141602, -8.298470 ], [ 139.130859, -8.102739 ], [ 138.889160, -8.385431 ], [ 137.614746, -8.407168 ], [ 138.032227, -7.602108 ], [ 138.669434, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.397273 ], [ 135.988770, -4.543570 ], [ 135.175781, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.374023, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.758789, -3.754634 ], [ 132.758789, -3.316018 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.791504, -2.482133 ], [ 133.703613, -2.218684 ], [ 132.231445, -2.218684 ], [ 131.835938, -1.625758 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.944781 ], [ 131.879883, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 117.971191, 1.757537 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.790990 ], [ 117.487793, 0.109863 ], [ 117.487793, 0.000000 ], [ 117.531738, -0.812961 ], [ 116.564941, -1.493971 ], [ 116.542969, -2.482133 ], [ 116.147461, -4.017699 ], [ 115.993652, -3.666928 ], [ 114.873047, -4.105369 ], [ 114.477539, -3.491489 ], [ 113.752441, -3.447625 ], [ 113.269043, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.052754 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.603794 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.028320, 0.000000 ], [ 108.962402, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.445801, 1.757537 ], [ 110.192871, 1.757537 ], [ 110.390625, 1.669686 ], [ 110.786133, 1.757537 ], [ 117.971191, 1.757537 ] ] ], [ [ [ 102.062988, 1.757537 ], [ 102.502441, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.842773, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.076597 ], [ 104.545898, -1.779499 ], [ 104.897461, -2.350415 ], [ 105.622559, -2.438229 ], [ 106.105957, -3.052754 ], [ 105.864258, -4.302591 ], [ 105.820312, -5.856475 ], [ 104.721680, -5.878332 ], [ 103.864746, -5.047171 ], [ 102.590332, -4.214943 ], [ 102.150879, -3.623071 ], [ 101.403809, -2.811371 ], [ 100.898438, -2.043024 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.635254, 1.757537 ], [ 102.062988, 1.757537 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.373533 ], [ 120.190430, 0.241699 ], [ 120.146484, 0.000000 ], [ 120.036621, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.486816, -0.966751 ], [ 123.332520, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.911267 ], [ 122.453613, -3.184394 ], [ 122.277832, -3.535352 ], [ 123.178711, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.629395, -5.637853 ], [ 122.233887, -5.287887 ], [ 122.717285, -4.455951 ], [ 121.750488, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.193030 ], [ 120.893555, -3.601142 ], [ 120.981445, -2.635789 ], [ 120.300293, -2.943041 ], [ 120.388184, -4.105369 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.681584 ], [ 119.377441, -5.375398 ], [ 119.663086, -4.455951 ], [ 119.509277, -3.491489 ], [ 119.069824, -3.491489 ], [ 118.762207, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.333496, -1.362176 ], [ 119.772949, 0.000000 ], [ 120.036621, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.662598, 1.010690 ], [ 122.937012, 0.878872 ], [ 124.079590, 0.922812 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 106.062012, -5.900189 ], [ 107.270508, -5.965754 ], [ 108.083496, -6.337137 ], [ 108.479004, -6.424484 ], [ 108.632812, -6.773716 ], [ 110.544434, -6.882800 ], [ 110.764160, -6.468151 ], [ 112.609863, -6.948239 ], [ 112.983398, -7.602108 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.363693 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.341953 ], [ 112.565918, -8.385431 ], [ 111.533203, -8.298470 ], [ 110.588379, -8.124491 ], [ 109.423828, -7.732765 ], [ 108.698730, -7.645665 ], [ 108.281250, -7.776309 ], [ 106.457520, -7.362467 ], [ 106.281738, -6.926427 ], [ 105.358887, -6.860985 ], [ 106.062012, -5.900189 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.336426, -4.324501 ], [ 152.314453, -4.872048 ], [ 151.984863, -5.484768 ], [ 151.457520, -5.572250 ], [ 151.303711, -5.834616 ], [ 150.249023, -6.315299 ], [ 149.721680, -6.315299 ], [ 148.886719, -6.031311 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.304199, -5.594118 ], [ 149.853516, -5.506640 ], [ 150.007324, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.249023, -5.528511 ], [ 150.798340, -5.462896 ], [ 151.083984, -5.112830 ], [ 151.655273, -4.762573 ], [ 151.545410, -4.171115 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 126.958008, -8.276727 ], [ 127.331543, -8.407168 ], [ 126.979980, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.090332, -9.384032 ], [ 124.431152, -10.141932 ], [ 123.574219, -10.358151 ], [ 123.464355, -10.250060 ], [ 123.552246, -9.903921 ], [ 123.991699, -9.297307 ], [ 124.980469, -8.885072 ], [ 125.090332, -8.667918 ], [ 125.947266, -8.428904 ], [ 126.650391, -8.407168 ], [ 126.958008, -8.276727 ] ] ], [ [ [ 127.990723, 1.757537 ], [ 128.012695, 1.625758 ], [ 128.605957, 1.537901 ], [ 128.693848, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.122559, 0.351560 ], [ 127.968750, -0.263671 ], [ 128.386230, -0.790990 ], [ 128.100586, -0.900842 ], [ 127.705078, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.757537 ], [ 127.990723, 1.757537 ] ] ], [ [ [ 161.323242, -10.206813 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.487812 ], [ 162.399902, -10.833306 ], [ 161.696777, -10.811724 ], [ 161.323242, -10.206813 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.096636 ], [ 130.847168, -3.864255 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.902832, -3.403758 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 122.915039, -8.102739 ], [ 122.761230, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.926758, -8.819939 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.233237 ], [ 121.333008, -8.537565 ], [ 122.014160, -8.472372 ], [ 122.915039, -8.102739 ] ] ], [ [ [ 119.904785, -9.362353 ], [ 120.432129, -9.665738 ], [ 120.783691, -9.968851 ], [ 120.717773, -10.250060 ], [ 120.300293, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.904785, -9.362353 ] ] ], [ [ [ 159.697266, -9.253936 ], [ 160.356445, -9.405710 ], [ 160.686035, -9.600750 ], [ 160.861816, -9.882275 ], [ 160.466309, -9.903921 ], [ 159.851074, -9.795678 ], [ 159.631348, -9.644077 ], [ 159.697266, -9.253936 ] ] ], [ [ [ 160.927734, -8.320212 ], [ 161.279297, -9.123792 ], [ 161.674805, -9.600750 ], [ 161.520996, -9.795678 ], [ 160.795898, -8.928487 ], [ 160.576172, -8.320212 ], [ 160.927734, -8.320212 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.256836, -8.363693 ], [ 118.872070, -8.276727 ], [ 119.135742, -8.711359 ], [ 117.290039, -9.037003 ], [ 116.740723, -9.037003 ], [ 117.092285, -8.450639 ], [ 117.641602, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 151.479492, -2.789425 ], [ 152.248535, -3.250209 ], [ 152.644043, -3.666928 ], [ 153.017578, -3.973861 ], [ 153.149414, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.644043, -4.171115 ], [ 152.402344, -3.798484 ], [ 151.391602, -3.030812 ], [ 150.666504, -2.745531 ], [ 150.952148, -2.504085 ] ] ], [ [ [ 154.643555, -5.047171 ], [ 154.753418, -5.331644 ], [ 155.061035, -5.572250 ], [ 155.544434, -6.206090 ], [ 156.027832, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.610352, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.047171 ] ] ], [ [ [ 127.001953, -3.140516 ], [ 127.243652, -3.469557 ], [ 126.870117, -3.798484 ], [ 126.188965, -3.601142 ], [ 125.991211, -3.184394 ], [ 127.001953, -3.140516 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.341953 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.124491 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.427837 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 104.194336, 1.757537 ], [ 104.260254, 1.625758 ], [ 104.238281, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.832031, 1.757537 ], [ 104.194336, 1.757537 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.736328, -5.747174 ], [ 134.736328, -6.206090 ], [ 134.208984, -6.904614 ], [ 134.121094, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 156.555176, -6.599131 ], [ 157.148438, -7.013668 ], [ 157.543945, -7.340675 ], [ 157.346191, -7.406048 ], [ 156.906738, -7.188101 ], [ 156.489258, -6.773716 ], [ 156.555176, -6.599131 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.497092 ], [ 173.254395, -41.327326 ], [ 173.957520, -40.930115 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.771312 ], [ 173.232422, -42.972502 ], [ 172.705078, -43.373112 ], [ 173.078613, -43.850374 ], [ 172.309570, -43.866218 ], [ 171.452637, -44.245199 ], [ 171.188965, -44.902578 ], [ 170.617676, -45.905300 ], [ 169.343262, -46.649436 ], [ 168.420410, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.684570, -46.225453 ], [ 166.508789, -45.859412 ], [ 167.058105, -45.104546 ], [ 168.310547, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.672852, -43.548548 ], [ 170.529785, -43.036776 ], [ 171.123047, -42.520700 ], [ 171.562500, -41.771312 ], [ 171.958008, -41.508577 ], [ 172.089844, -40.963308 ], [ 172.792969, -40.497092 ] ] ], [ [ [ 173.012695, -34.452218 ], [ 173.562012, -35.012002 ], [ 174.331055, -35.263562 ], [ 174.616699, -36.155618 ], [ 175.341797, -37.212832 ], [ 175.363770, -36.527295 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.561997 ], [ 176.770020, -37.874853 ], [ 177.451172, -37.961523 ], [ 178.022461, -37.579413 ], [ 178.527832, -37.701207 ], [ 178.286133, -38.582526 ], [ 177.978516, -39.164141 ], [ 177.209473, -39.147103 ], [ 176.945801, -39.453161 ], [ 177.033691, -39.876019 ], [ 176.022949, -41.294317 ], [ 175.231934, -41.689322 ], [ 175.078125, -41.426253 ], [ 174.660645, -41.277806 ], [ 175.231934, -40.463666 ], [ 174.902344, -39.909736 ], [ 173.825684, -39.504041 ], [ 173.847656, -39.147103 ], [ 174.572754, -38.805470 ], [ 174.748535, -38.030786 ], [ 174.704590, -37.387617 ], [ 174.287109, -36.703660 ], [ 174.331055, -36.527295 ], [ 173.847656, -36.120128 ], [ 173.056641, -35.245619 ], [ 172.639160, -34.524661 ], [ 173.012695, -34.452218 ] ] ], [ [ [ 164.025879, -20.097206 ], [ 164.465332, -20.117840 ], [ 165.014648, -20.468189 ], [ 166.596680, -21.698265 ], [ 167.124023, -22.167058 ], [ 166.750488, -22.411029 ], [ 166.201172, -22.126355 ], [ 165.476074, -21.677848 ], [ 164.838867, -21.145992 ], [ 164.179688, -20.447602 ], [ 164.025879, -20.097206 ] ] ], [ [ [ 178.374023, -17.350638 ], [ 178.725586, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.934570, -18.291950 ], [ 177.385254, -18.166730 ], [ 177.297363, -17.727759 ], [ 177.670898, -17.392579 ], [ 178.132324, -17.497389 ], [ 178.374023, -17.350638 ] ] ], [ [ [ 180.197754, -16.024696 ], [ 180.087891, -16.509833 ], [ 180.000000, -16.551962 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.099121, -16.425548 ], [ 179.406738, -16.383391 ], [ 180.000000, -16.066929 ], [ 180.197754, -16.024696 ] ] ], [ [ [ 166.640625, -14.626109 ], [ 167.102051, -14.944785 ], [ 167.277832, -15.749963 ], [ 166.992188, -15.623037 ], [ 166.794434, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.640625, -14.626109 ] ] ], [ [ [ 167.211914, -15.897942 ], [ 167.849121, -16.467695 ], [ 167.519531, -16.594081 ], [ 167.189941, -16.151369 ], [ 167.211914, -15.897942 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.790990 ], [ 134.143066, -1.142502 ], [ 134.252930, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.625758 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.944781 ], [ 131.879883, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.428075 ], [ 124.431152, 0.417477 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.373533 ], [ 120.190430, 0.241699 ], [ 120.146484, 0.000000 ], [ 120.036621, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.486816, -0.966751 ], [ 123.332520, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.838379, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.333496, -1.362176 ], [ 119.772949, 0.000000 ], [ 120.036621, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.662598, 1.010690 ], [ 122.937012, 0.878872 ], [ 124.079590, 0.922812 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 117.136230, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.397273 ], [ 119.113770, 5.025283 ], [ 118.432617, 4.959615 ], [ 118.630371, 4.477856 ], [ 117.883301, 4.127285 ], [ 117.312012, 3.228271 ], [ 118.059082, 2.284551 ], [ 117.883301, 1.823423 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.790990 ], [ 117.487793, 0.109863 ], [ 117.487793, 0.000000 ], [ 117.531738, -0.812961 ], [ 116.564941, -1.493971 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.083008, -1.603794 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.028320, 0.000000 ], [ 108.962402, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 1.999106 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.845384 ], [ 111.379395, 2.701635 ], [ 111.796875, 2.877208 ], [ 113.005371, 3.096636 ], [ 113.708496, 3.886177 ], [ 114.213867, 4.521666 ], [ 114.609375, 4.893941 ], [ 115.444336, 5.441022 ], [ 116.213379, 6.140555 ], [ 116.718750, 6.926427 ], [ 117.136230, 6.926427 ] ] ], [ [ [ 95.295410, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.492676, 5.244128 ], [ 98.371582, 4.258768 ], [ 99.140625, 3.579213 ], [ 99.689941, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.667480, 2.086941 ], [ 102.502441, 1.406109 ], [ 103.073730, 0.549308 ], [ 103.842773, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.076597 ], [ 104.523926, -1.757537 ], [ 100.744629, -1.757537 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.032659 ], [ 98.613281, 1.823423 ], [ 97.690430, 2.460181 ], [ 97.185059, 3.316018 ], [ 96.416016, 3.864255 ], [ 95.383301, 4.959615 ], [ 95.295410, 5.484768 ] ] ], [ [ [ 138.339844, -1.713612 ], [ 138.471680, -1.757537 ], [ 137.329102, -1.757537 ], [ 137.438965, -1.713612 ], [ 138.339844, -1.713612 ] ] ], [ [ [ 181.757812, 67.204032 ], [ 181.757812, 65.403445 ], [ 181.647949, 65.394298 ], [ 181.098633, 65.739656 ], [ 181.318359, 66.107170 ], [ 180.109863, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.605038 ], [ 178.308105, 64.072200 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.494629, 62.573106 ], [ 179.230957, 62.298581 ], [ 177.363281, 62.522458 ], [ 174.572754, 61.773123 ], [ 173.671875, 61.648162 ], [ 172.155762, 60.951777 ], [ 170.705566, 60.337823 ], [ 170.332031, 59.877912 ], [ 168.903809, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.849609, 60.163376 ], [ 164.882812, 59.734253 ], [ 163.542480, 59.866883 ], [ 163.212891, 59.209688 ], [ 162.026367, 58.240164 ], [ 162.048340, 57.833055 ], [ 163.190918, 57.610107 ], [ 163.059082, 56.157788 ], [ 162.136230, 56.121060 ], [ 161.696777, 55.279115 ], [ 162.114258, 54.851315 ], [ 160.378418, 54.342149 ], [ 160.026855, 53.199452 ], [ 158.532715, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.796875, 51.013755 ], [ 156.423340, 51.699800 ], [ 155.983887, 53.159947 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.764768 ], [ 156.752930, 57.362090 ], [ 156.818848, 57.833055 ], [ 158.356934, 58.054632 ], [ 160.158691, 59.310768 ], [ 161.872559, 60.337823 ], [ 163.674316, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.461567 ], [ 162.663574, 61.637726 ], [ 160.114746, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.730957, 61.438767 ], [ 154.226074, 59.756395 ], [ 155.039062, 59.142135 ], [ 152.819824, 58.881942 ], [ 151.259766, 58.779591 ], [ 151.347656, 59.500880 ], [ 149.787598, 59.656642 ], [ 148.557129, 59.164668 ], [ 145.480957, 59.333189 ], [ 142.207031, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.131836, 54.724620 ], [ 136.713867, 54.597528 ], [ 137.197266, 53.981935 ], [ 138.164062, 53.748711 ], [ 138.801270, 54.252389 ], [ 139.899902, 54.188155 ], [ 141.350098, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.603027, 51.234407 ], [ 140.515137, 50.050085 ], [ 140.053711, 48.443778 ], [ 138.559570, 46.995241 ], [ 138.229980, 46.301406 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.912598, 42.795401 ], [ 132.275391, 43.277205 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.212245 ], [ 130.407715, 42.277309 ], [ 129.968262, 41.934977 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.880295 ], [ 129.199219, 40.663973 ], [ 129.001465, 40.480381 ], [ 128.627930, 40.195659 ], [ 127.968750, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.507324, 39.317300 ], [ 127.397461, 39.215231 ], [ 127.792969, 39.044786 ], [ 128.342285, 38.616870 ], [ 129.221191, 37.439974 ], [ 129.462891, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.885931 ], [ 127.397461, 34.470335 ], [ 126.496582, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.562500, 35.675147 ], [ 126.123047, 36.721274 ], [ 126.870117, 36.897194 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.573730, 37.753344 ], [ 125.266113, 37.666429 ], [ 125.244141, 37.857507 ], [ 124.980469, 37.944198 ], [ 124.716797, 38.099983 ], [ 124.980469, 38.548165 ], [ 125.222168, 38.668356 ], [ 125.134277, 38.839708 ], [ 125.397949, 39.385264 ], [ 125.332031, 39.554883 ], [ 124.738770, 39.656456 ], [ 124.277344, 39.926588 ], [ 122.871094, 39.639538 ], [ 122.124023, 39.164141 ], [ 121.047363, 38.891033 ], [ 121.596680, 39.368279 ], [ 121.376953, 39.740986 ], [ 122.167969, 40.413496 ], [ 121.640625, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.641113, 39.892880 ], [ 119.025879, 39.249271 ], [ 118.037109, 39.198205 ], [ 117.531738, 38.736946 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.892196 ], [ 118.916016, 37.439974 ], [ 119.707031, 37.160317 ], [ 120.827637, 37.874853 ], [ 121.706543, 37.474858 ], [ 122.365723, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.113281, 36.650793 ], [ 120.629883, 36.102376 ], [ 119.663086, 35.603719 ], [ 119.157715, 34.903953 ], [ 120.234375, 34.361576 ], [ 120.629883, 33.376412 ], [ 121.223145, 32.454156 ], [ 121.904297, 31.690782 ], [ 121.882324, 30.939924 ], [ 121.267090, 30.675715 ], [ 121.508789, 30.145127 ], [ 122.102051, 29.840644 ], [ 121.948242, 29.017748 ], [ 121.684570, 28.226970 ], [ 121.135254, 28.130128 ], [ 120.388184, 27.059126 ], [ 119.597168, 25.740529 ], [ 118.652344, 24.547123 ], [ 117.290039, 23.624395 ], [ 115.883789, 22.776182 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.818359, 22.553147 ], [ 113.247070, 22.044913 ], [ 111.840820, 21.555284 ], [ 110.786133, 21.391705 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.002471 ], [ 109.863281, 21.391705 ], [ 108.522949, 21.718680 ], [ 108.061523, 21.555284 ], [ 106.721191, 20.694462 ], [ 105.886230, 19.746024 ], [ 105.666504, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.281250, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.335938, 13.432367 ], [ 109.204102, 11.673755 ], [ 108.369141, 11.005904 ], [ 107.226562, 10.358151 ], [ 106.413574, 9.535749 ], [ 105.161133, 8.602747 ], [ 104.787598, 9.232249 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.095703, 11.156845 ], [ 102.590332, 12.189704 ], [ 101.689453, 12.640338 ], [ 100.832520, 12.618897 ], [ 100.986328, 13.410994 ], [ 100.107422, 13.410994 ], [ 100.019531, 12.297068 ], [ 99.162598, 9.968851 ], [ 99.228516, 9.232249 ], [ 99.865723, 9.210560 ], [ 100.283203, 8.298470 ], [ 100.458984, 7.427837 ], [ 101.008301, 6.860985 ], [ 101.623535, 6.730076 ], [ 102.150879, 6.227934 ], [ 102.370605, 6.118708 ], [ 102.963867, 5.528511 ], [ 103.381348, 4.850154 ], [ 103.447266, 4.171115 ], [ 103.337402, 3.732708 ], [ 103.425293, 3.381824 ], [ 103.513184, 2.789425 ], [ 103.864746, 2.504085 ], [ 104.260254, 1.625758 ], [ 104.238281, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.955187 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.700684, 3.930020 ], [ 100.568848, 4.762573 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.031311 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.839170 ], [ 99.514160, 7.340675 ], [ 98.503418, 8.385431 ], [ 98.349609, 7.798079 ], [ 98.151855, 8.341953 ], [ 98.261719, 8.971897 ], [ 98.547363, 9.925566 ], [ 98.459473, 10.682201 ], [ 98.767090, 11.436955 ], [ 98.437500, 12.039321 ], [ 98.503418, 13.111580 ], [ 98.107910, 13.645987 ], [ 97.778320, 14.838612 ], [ 97.602539, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.361328, 15.707663 ], [ 94.812012, 15.792254 ], [ 94.196777, 16.045813 ], [ 94.526367, 17.266728 ], [ 94.328613, 18.208480 ], [ 93.537598, 19.373341 ], [ 93.669434, 19.725342 ], [ 93.076172, 19.849394 ], [ 92.373047, 20.673905 ], [ 92.087402, 21.186973 ], [ 92.021484, 21.698265 ], [ 91.845703, 22.187405 ], [ 91.428223, 22.755921 ], [ 90.505371, 22.796439 ], [ 90.593262, 22.390714 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.963425 ], [ 89.033203, 22.044913 ], [ 88.879395, 21.698265 ], [ 88.242188, 21.698265 ], [ 88.242188, 67.204032 ], [ 181.757812, 67.204032 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.012695, 1.625758 ], [ 128.605957, 1.537901 ], [ 128.693848, 1.120534 ], [ 128.627930, 0.263671 ], [ 128.122559, 0.351560 ], [ 127.968750, -0.263671 ], [ 128.386230, -0.790990 ], [ 128.100586, -0.900842 ], [ 127.705078, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.801461 ], [ 127.924805, 2.174771 ] ] ], [ [ [ 141.372070, 41.376809 ], [ 141.921387, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.169114 ], [ 140.976562, 37.142803 ], [ 140.603027, 36.350527 ], [ 140.778809, 35.835628 ], [ 140.251465, 35.137879 ], [ 138.977051, 34.669359 ], [ 137.219238, 34.597042 ], [ 135.791016, 33.468108 ], [ 135.131836, 33.852170 ], [ 135.087891, 34.597042 ], [ 133.352051, 34.379713 ], [ 132.165527, 33.906896 ], [ 130.979004, 33.888658 ], [ 132.011719, 33.155948 ], [ 131.330566, 31.447410 ], [ 130.693359, 31.034108 ], [ 130.209961, 31.409912 ], [ 130.451660, 32.324276 ], [ 129.814453, 32.602362 ], [ 129.418945, 33.302986 ], [ 130.363770, 33.596319 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.741612 ], [ 132.626953, 35.424868 ], [ 134.604492, 35.728677 ], [ 135.681152, 35.532226 ], [ 136.735840, 37.300275 ], [ 137.395020, 36.826875 ], [ 139.438477, 38.220920 ], [ 140.053711, 39.436193 ], [ 139.877930, 40.563895 ], [ 140.317383, 41.195190 ], [ 141.372070, 41.376809 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.261719, 52.736292 ], [ 143.239746, 51.754240 ], [ 143.657227, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.857403 ], [ 143.525391, 46.830134 ], [ 143.503418, 46.134170 ], [ 142.756348, 46.739861 ], [ 142.097168, 45.966425 ], [ 141.899414, 46.800059 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.141113, 49.610710 ], [ 142.185059, 50.944584 ], [ 141.591797, 51.930718 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.151855, 44.512176 ], [ 143.920898, 44.166445 ], [ 144.624023, 43.961191 ], [ 145.327148, 44.386692 ], [ 145.546875, 43.261206 ], [ 144.052734, 42.988576 ], [ 143.195801, 42.000325 ], [ 141.613770, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.965820, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.317383, 43.325178 ], [ 141.372070, 43.389082 ], [ 141.679688, 44.777936 ], [ 141.965332, 45.552525 ] ] ], [ [ [ 125.419922, 9.752370 ], [ 126.232910, 9.275622 ], [ 126.474609, 7.754537 ], [ 126.540527, 7.188101 ], [ 126.188965, 6.271618 ], [ 125.837402, 7.297088 ], [ 125.375977, 6.795535 ], [ 125.683594, 6.053161 ], [ 125.397949, 5.572250 ], [ 124.211426, 6.162401 ], [ 123.947754, 6.882800 ], [ 124.255371, 7.362467 ], [ 123.618164, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.827148, 7.449624 ], [ 122.080078, 6.904614 ], [ 121.926270, 7.188101 ], [ 122.321777, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.689639 ], [ 123.837891, 8.233237 ], [ 124.606934, 8.515836 ], [ 124.760742, 8.950193 ], [ 125.463867, 8.993600 ], [ 125.419922, 9.752370 ] ] ], [ [ [ 121.333008, 18.500447 ], [ 121.948242, 18.208480 ], [ 122.255859, 18.479609 ], [ 122.343750, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.519531, 17.098792 ], [ 122.255859, 16.256867 ], [ 121.662598, 15.940202 ], [ 121.508789, 15.114553 ], [ 121.728516, 14.328260 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.328260 ], [ 123.947754, 13.774066 ], [ 123.859863, 13.239945 ], [ 124.189453, 13.004558 ], [ 124.079590, 12.533115 ], [ 123.288574, 13.025966 ], [ 122.937012, 13.560562 ], [ 122.673340, 13.175771 ], [ 122.036133, 13.774066 ], [ 121.135254, 13.645987 ], [ 120.629883, 13.859414 ], [ 120.673828, 14.264383 ], [ 121.003418, 14.519780 ], [ 120.695801, 14.753635 ], [ 120.563965, 14.392118 ], [ 120.080566, 14.966013 ], [ 119.926758, 15.411319 ], [ 119.882812, 16.362310 ], [ 120.278320, 16.024696 ], [ 120.388184, 17.602139 ], [ 120.717773, 18.500447 ], [ 121.333008, 18.500447 ] ] ], [ [ [ 121.486816, 25.284438 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.387127 ], [ 121.179199, 22.796439 ], [ 120.739746, 21.963425 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.695801, 24.547123 ], [ 121.486816, 25.284438 ] ] ], [ [ [ 110.214844, 20.097206 ], [ 110.786133, 20.076570 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.248922 ], [ 110.346680, 18.667063 ], [ 109.467773, 18.187607 ], [ 108.654785, 18.500447 ], [ 108.632812, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.214844, 20.097206 ] ] ], [ [ [ 133.901367, 34.361576 ], [ 134.648438, 34.143635 ], [ 134.758301, 33.797409 ], [ 134.208984, 33.192731 ], [ 133.791504, 33.523079 ], [ 133.286133, 33.284620 ], [ 133.022461, 32.694866 ], [ 132.363281, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.934570, 34.052659 ], [ 133.483887, 33.943360 ], [ 133.901367, 34.361576 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.552622 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.180176, 8.363693 ], [ 117.663574, 9.058702 ], [ 118.388672, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.277344, 12.554564 ], [ 125.222168, 12.533115 ], [ 125.507812, 12.168226 ], [ 125.793457, 11.049038 ], [ 125.002441, 11.307708 ], [ 125.024414, 10.984335 ], [ 125.288086, 10.358151 ], [ 124.804688, 10.141932 ], [ 124.760742, 10.833306 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.892578, 11.415418 ], [ 124.870605, 11.802834 ], [ 124.277344, 12.554564 ] ] ], [ [ [ 124.079590, 11.221510 ], [ 123.991699, 10.271681 ], [ 123.618164, 9.947209 ], [ 123.310547, 9.318990 ], [ 123.002930, 9.015302 ], [ 122.387695, 9.709057 ], [ 122.849121, 10.250060 ], [ 122.958984, 10.876465 ], [ 123.508301, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.079590, 11.221510 ] ] ], [ [ [ 121.882324, 11.888853 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.112793, 11.156845 ], [ 122.629395, 10.746969 ], [ 122.014160, 10.444598 ], [ 121.970215, 10.898042 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.888853 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.530762, 13.068777 ], [ 121.267090, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.136230, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.397273 ], [ 119.113770, 5.025283 ], [ 118.432617, 4.959615 ], [ 118.630371, 4.477856 ], [ 117.883301, 4.127285 ], [ 117.026367, 4.302591 ], [ 115.861816, 4.302591 ], [ 115.510254, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.631348, 1.428075 ], [ 113.796387, 1.208406 ], [ 112.851562, 1.493971 ], [ 112.390137, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.966751 ], [ 110.522461, 0.769020 ], [ 109.841309, 1.340210 ], [ 109.665527, 1.999106 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.845384 ], [ 111.379395, 2.701635 ], [ 111.796875, 2.877208 ], [ 113.005371, 3.096636 ], [ 113.708496, 3.886177 ], [ 114.213867, 4.521666 ], [ 114.653320, 3.995781 ], [ 114.873047, 4.346411 ], [ 115.356445, 4.324501 ], [ 115.444336, 5.441022 ], [ 116.213379, 6.140555 ], [ 116.718750, 6.926427 ], [ 117.136230, 6.926427 ] ] ], [ [ [ 181.757812, 67.204032 ], [ 181.757812, 65.403445 ], [ 181.647949, 65.394298 ], [ 181.098633, 65.739656 ], [ 181.318359, 66.107170 ], [ 180.109863, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.605038 ], [ 178.308105, 64.072200 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.494629, 62.573106 ], [ 179.230957, 62.298581 ], [ 177.363281, 62.522458 ], [ 174.572754, 61.773123 ], [ 173.671875, 61.648162 ], [ 172.155762, 60.951777 ], [ 170.705566, 60.337823 ], [ 170.332031, 59.877912 ], [ 168.903809, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.849609, 60.163376 ], [ 164.882812, 59.734253 ], [ 163.542480, 59.866883 ], [ 163.212891, 59.209688 ], [ 162.026367, 58.240164 ], [ 162.048340, 57.833055 ], [ 163.190918, 57.610107 ], [ 163.059082, 56.157788 ], [ 162.136230, 56.121060 ], [ 161.696777, 55.279115 ], [ 162.114258, 54.851315 ], [ 160.378418, 54.342149 ], [ 160.026855, 53.199452 ], [ 158.532715, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.796875, 51.013755 ], [ 156.423340, 51.699800 ], [ 155.983887, 53.159947 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.764768 ], [ 156.752930, 57.362090 ], [ 156.818848, 57.833055 ], [ 158.356934, 58.054632 ], [ 160.158691, 59.310768 ], [ 161.872559, 60.337823 ], [ 163.674316, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.461567 ], [ 162.663574, 61.637726 ], [ 160.114746, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.730957, 61.438767 ], [ 154.226074, 59.756395 ], [ 155.039062, 59.142135 ], [ 152.819824, 58.881942 ], [ 151.259766, 58.779591 ], [ 151.347656, 59.500880 ], [ 149.787598, 59.656642 ], [ 148.557129, 59.164668 ], [ 145.480957, 59.333189 ], [ 142.207031, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.131836, 54.724620 ], [ 136.713867, 54.597528 ], [ 137.197266, 53.981935 ], [ 138.164062, 53.748711 ], [ 138.801270, 54.252389 ], [ 139.899902, 54.188155 ], [ 141.350098, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.603027, 51.234407 ], [ 140.515137, 50.050085 ], [ 140.053711, 48.443778 ], [ 138.559570, 46.995241 ], [ 138.229980, 46.301406 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.912598, 42.795401 ], [ 132.275391, 43.277205 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.212245 ], [ 130.407715, 42.277309 ], [ 129.968262, 41.934977 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.880295 ], [ 129.199219, 40.663973 ], [ 129.001465, 40.480381 ], [ 128.627930, 40.195659 ], [ 127.968750, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.507324, 39.317300 ], [ 127.397461, 39.215231 ], [ 127.792969, 39.044786 ], [ 128.342285, 38.616870 ], [ 129.221191, 37.439974 ], [ 129.462891, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.885931 ], [ 127.397461, 34.470335 ], [ 126.496582, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.562500, 35.675147 ], [ 126.123047, 36.721274 ], [ 126.870117, 36.897194 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.573730, 37.753344 ], [ 125.266113, 37.666429 ], [ 125.244141, 37.857507 ], [ 124.980469, 37.944198 ], [ 124.716797, 38.099983 ], [ 124.980469, 38.548165 ], [ 125.222168, 38.668356 ], [ 125.134277, 38.839708 ], [ 125.397949, 39.385264 ], [ 125.332031, 39.554883 ], [ 124.738770, 39.656456 ], [ 124.277344, 39.926588 ], [ 122.871094, 39.639538 ], [ 122.124023, 39.164141 ], [ 121.047363, 38.891033 ], [ 121.596680, 39.368279 ], [ 121.376953, 39.740986 ], [ 122.167969, 40.413496 ], [ 121.640625, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.641113, 39.892880 ], [ 119.025879, 39.249271 ], [ 118.037109, 39.198205 ], [ 117.531738, 38.736946 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.892196 ], [ 118.916016, 37.439974 ], [ 119.707031, 37.160317 ], [ 120.827637, 37.874853 ], [ 121.706543, 37.474858 ], [ 122.365723, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.113281, 36.650793 ], [ 120.629883, 36.102376 ], [ 119.663086, 35.603719 ], [ 119.157715, 34.903953 ], [ 120.234375, 34.361576 ], [ 120.629883, 33.376412 ], [ 121.223145, 32.454156 ], [ 121.904297, 31.690782 ], [ 121.882324, 30.939924 ], [ 121.267090, 30.675715 ], [ 121.508789, 30.145127 ], [ 122.102051, 29.840644 ], [ 121.948242, 29.017748 ], [ 121.684570, 28.226970 ], [ 121.135254, 28.130128 ], [ 120.388184, 27.059126 ], [ 119.597168, 25.740529 ], [ 118.652344, 24.547123 ], [ 117.290039, 23.624395 ], [ 115.883789, 22.776182 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.818359, 22.553147 ], [ 113.247070, 22.044913 ], [ 111.840820, 21.555284 ], [ 110.786133, 21.391705 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.002471 ], [ 109.863281, 21.391705 ], [ 108.522949, 21.718680 ], [ 108.061523, 21.555284 ], [ 106.721191, 20.694462 ], [ 105.886230, 19.746024 ], [ 105.666504, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.281250, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.335938, 13.432367 ], [ 109.204102, 11.673755 ], [ 108.369141, 11.005904 ], [ 107.226562, 10.358151 ], [ 106.413574, 9.535749 ], [ 105.161133, 8.602747 ], [ 104.787598, 9.232249 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.095703, 11.156845 ], [ 102.590332, 12.189704 ], [ 101.689453, 12.640338 ], [ 100.832520, 12.618897 ], [ 100.986328, 13.410994 ], [ 100.107422, 13.410994 ], [ 100.019531, 12.297068 ], [ 99.162598, 9.968851 ], [ 99.228516, 9.232249 ], [ 99.865723, 9.210560 ], [ 100.283203, 8.298470 ], [ 100.458984, 7.427837 ], [ 101.008301, 6.860985 ], [ 101.623535, 6.730076 ], [ 102.150879, 6.227934 ], [ 102.370605, 6.118708 ], [ 102.963867, 5.528511 ], [ 103.381348, 4.850154 ], [ 103.447266, 4.171115 ], [ 103.337402, 3.732708 ], [ 103.425293, 3.381824 ], [ 103.513184, 2.789425 ], [ 103.864746, 2.504085 ], [ 104.260254, 1.625758 ], [ 104.238281, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.955187 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.700684, 3.930020 ], [ 100.568848, 4.762573 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.031311 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.839170 ], [ 99.514160, 7.340675 ], [ 98.503418, 8.385431 ], [ 98.349609, 7.798079 ], [ 98.151855, 8.341953 ], [ 98.261719, 8.971897 ], [ 98.547363, 9.925566 ], [ 98.459473, 10.682201 ], [ 98.767090, 11.436955 ], [ 98.437500, 12.039321 ], [ 98.503418, 13.111580 ], [ 98.107910, 13.645987 ], [ 97.778320, 14.838612 ], [ 97.602539, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.361328, 15.707663 ], [ 94.812012, 15.792254 ], [ 94.196777, 16.045813 ], [ 94.526367, 17.266728 ], [ 94.328613, 18.208480 ], [ 93.537598, 19.373341 ], [ 93.669434, 19.725342 ], [ 93.076172, 19.849394 ], [ 92.373047, 20.673905 ], [ 92.087402, 21.186973 ], [ 92.021484, 21.698265 ], [ 91.845703, 22.187405 ], [ 91.428223, 22.755921 ], [ 90.505371, 22.796439 ], [ 90.593262, 22.390714 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.963425 ], [ 89.033203, 22.044913 ], [ 88.879395, 21.698265 ], [ 88.242188, 21.698265 ], [ 88.242188, 67.204032 ], [ 181.757812, 67.204032 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.261719, 52.736292 ], [ 143.239746, 51.754240 ], [ 143.657227, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.857403 ], [ 143.525391, 46.830134 ], [ 143.503418, 46.134170 ], [ 142.756348, 46.739861 ], [ 142.097168, 45.966425 ], [ 141.899414, 46.800059 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.141113, 49.610710 ], [ 142.185059, 50.944584 ], [ 141.591797, 51.930718 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 121.486816, 25.284438 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.387127 ], [ 121.179199, 22.796439 ], [ 120.739746, 21.963425 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.695801, 24.547123 ], [ 121.486816, 25.284438 ] ] ], [ [ [ 110.214844, 20.097206 ], [ 110.786133, 20.076570 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.248922 ], [ 110.346680, 18.667063 ], [ 109.467773, 18.187607 ], [ 108.654785, 18.500447 ], [ 108.632812, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.214844, 20.097206 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.790990 ], [ 134.143066, -1.142502 ], [ 134.252930, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.625758 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.944781 ], [ 131.879883, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.428075 ], [ 124.431152, 0.417477 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.373533 ], [ 120.190430, 0.241699 ], [ 120.146484, 0.000000 ], [ 120.036621, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.486816, -0.966751 ], [ 123.332520, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.838379, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.333496, -1.362176 ], [ 119.772949, 0.000000 ], [ 120.036621, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.662598, 1.010690 ], [ 122.937012, 0.878872 ], [ 124.079590, 0.922812 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 117.026367, 4.302591 ], [ 117.883301, 4.127285 ], [ 117.312012, 3.228271 ], [ 118.059082, 2.284551 ], [ 117.883301, 1.823423 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.790990 ], [ 117.487793, 0.109863 ], [ 117.487793, 0.000000 ], [ 117.531738, -0.812961 ], [ 116.564941, -1.493971 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.083008, -1.603794 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.028320, 0.000000 ], [ 108.962402, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 1.999106 ], [ 109.841309, 1.340210 ], [ 110.522461, 0.769020 ], [ 111.159668, 0.966751 ], [ 111.796875, 0.900842 ], [ 112.390137, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.796387, 1.208406 ], [ 114.631348, 1.428075 ], [ 115.136719, 2.811371 ], [ 115.510254, 3.162456 ], [ 115.861816, 4.302591 ], [ 117.026367, 4.302591 ] ] ], [ [ [ 95.295410, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.492676, 5.244128 ], [ 98.371582, 4.258768 ], [ 99.140625, 3.579213 ], [ 99.689941, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.667480, 2.086941 ], [ 102.502441, 1.406109 ], [ 103.073730, 0.549308 ], [ 103.842773, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.076597 ], [ 104.523926, -1.757537 ], [ 100.744629, -1.757537 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.032659 ], [ 98.613281, 1.823423 ], [ 97.690430, 2.460181 ], [ 97.185059, 3.316018 ], [ 96.416016, 3.864255 ], [ 95.383301, 4.959615 ], [ 95.295410, 5.484768 ] ] ], [ [ [ 138.339844, -1.713612 ], [ 138.471680, -1.757537 ], [ 137.329102, -1.757537 ], [ 137.438965, -1.713612 ], [ 138.339844, -1.713612 ] ] ], [ [ [ 141.372070, 41.376809 ], [ 141.921387, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.169114 ], [ 140.976562, 37.142803 ], [ 140.603027, 36.350527 ], [ 140.778809, 35.835628 ], [ 140.251465, 35.137879 ], [ 138.977051, 34.669359 ], [ 137.219238, 34.597042 ], [ 135.791016, 33.468108 ], [ 135.131836, 33.852170 ], [ 135.087891, 34.597042 ], [ 133.352051, 34.379713 ], [ 132.165527, 33.906896 ], [ 130.979004, 33.888658 ], [ 132.011719, 33.155948 ], [ 131.330566, 31.447410 ], [ 130.693359, 31.034108 ], [ 130.209961, 31.409912 ], [ 130.451660, 32.324276 ], [ 129.814453, 32.602362 ], [ 129.418945, 33.302986 ], [ 130.363770, 33.596319 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.741612 ], [ 132.626953, 35.424868 ], [ 134.604492, 35.728677 ], [ 135.681152, 35.532226 ], [ 136.735840, 37.300275 ], [ 137.395020, 36.826875 ], [ 139.438477, 38.220920 ], [ 140.053711, 39.436193 ], [ 139.877930, 40.563895 ], [ 140.317383, 41.195190 ], [ 141.372070, 41.376809 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.012695, 1.625758 ], [ 128.605957, 1.537901 ], [ 128.693848, 1.120534 ], [ 128.627930, 0.263671 ], [ 128.122559, 0.351560 ], [ 127.968750, -0.263671 ], [ 128.386230, -0.790990 ], [ 128.100586, -0.900842 ], [ 127.705078, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.801461 ], [ 127.924805, 2.174771 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.151855, 44.512176 ], [ 143.920898, 44.166445 ], [ 144.624023, 43.961191 ], [ 145.327148, 44.386692 ], [ 145.546875, 43.261206 ], [ 144.052734, 42.988576 ], [ 143.195801, 42.000325 ], [ 141.613770, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.965820, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.317383, 43.325178 ], [ 141.372070, 43.389082 ], [ 141.679688, 44.777936 ], [ 141.965332, 45.552525 ] ] ], [ [ [ 121.333008, 18.500447 ], [ 121.948242, 18.208480 ], [ 122.255859, 18.479609 ], [ 122.343750, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.519531, 17.098792 ], [ 122.255859, 16.256867 ], [ 121.662598, 15.940202 ], [ 121.508789, 15.114553 ], [ 121.728516, 14.328260 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.328260 ], [ 123.947754, 13.774066 ], [ 123.859863, 13.239945 ], [ 124.189453, 13.004558 ], [ 124.079590, 12.533115 ], [ 123.288574, 13.025966 ], [ 122.937012, 13.560562 ], [ 122.673340, 13.175771 ], [ 122.036133, 13.774066 ], [ 121.135254, 13.645987 ], [ 120.629883, 13.859414 ], [ 120.673828, 14.264383 ], [ 121.003418, 14.519780 ], [ 120.695801, 14.753635 ], [ 120.563965, 14.392118 ], [ 120.080566, 14.966013 ], [ 119.926758, 15.411319 ], [ 119.882812, 16.362310 ], [ 120.278320, 16.024696 ], [ 120.388184, 17.602139 ], [ 120.717773, 18.500447 ], [ 121.333008, 18.500447 ] ] ], [ [ [ 115.444336, 5.441022 ], [ 115.356445, 4.324501 ], [ 114.873047, 4.346411 ], [ 114.653320, 3.995781 ], [ 114.213867, 4.521666 ], [ 114.609375, 4.893941 ], [ 115.444336, 5.441022 ] ] ], [ [ [ 125.419922, 9.752370 ], [ 126.232910, 9.275622 ], [ 126.474609, 7.754537 ], [ 126.540527, 7.188101 ], [ 126.188965, 6.271618 ], [ 125.837402, 7.297088 ], [ 125.375977, 6.795535 ], [ 125.683594, 6.053161 ], [ 125.397949, 5.572250 ], [ 124.211426, 6.162401 ], [ 123.947754, 6.882800 ], [ 124.255371, 7.362467 ], [ 123.618164, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.827148, 7.449624 ], [ 122.080078, 6.904614 ], [ 121.926270, 7.188101 ], [ 122.321777, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.689639 ], [ 123.837891, 8.233237 ], [ 124.606934, 8.515836 ], [ 124.760742, 8.950193 ], [ 125.463867, 8.993600 ], [ 125.419922, 9.752370 ] ] ], [ [ [ 133.901367, 34.361576 ], [ 134.648438, 34.143635 ], [ 134.758301, 33.797409 ], [ 134.208984, 33.192731 ], [ 133.791504, 33.523079 ], [ 133.286133, 33.284620 ], [ 133.022461, 32.694866 ], [ 132.363281, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.934570, 34.052659 ], [ 133.483887, 33.943360 ], [ 133.901367, 34.361576 ] ] ], [ [ [ 124.277344, 12.554564 ], [ 125.222168, 12.533115 ], [ 125.507812, 12.168226 ], [ 125.793457, 11.049038 ], [ 125.002441, 11.307708 ], [ 125.024414, 10.984335 ], [ 125.288086, 10.358151 ], [ 124.804688, 10.141932 ], [ 124.760742, 10.833306 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.892578, 11.415418 ], [ 124.870605, 11.802834 ], [ 124.277344, 12.554564 ] ] ], [ [ [ 124.079590, 11.221510 ], [ 123.991699, 10.271681 ], [ 123.618164, 9.947209 ], [ 123.310547, 9.318990 ], [ 123.002930, 9.015302 ], [ 122.387695, 9.709057 ], [ 122.849121, 10.250060 ], [ 122.958984, 10.876465 ], [ 123.508301, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.079590, 11.221510 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.552622 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.180176, 8.363693 ], [ 117.663574, 9.058702 ], [ 118.388672, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.888853 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.112793, 11.156845 ], [ 122.629395, 10.746969 ], [ 122.014160, 10.444598 ], [ 121.970215, 10.898042 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.888853 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.530762, 13.068777 ], [ 121.267090, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ] ] } } ] } ] } , @@ -241,7 +255,11 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.097656, 0.878872 ], [ -50.701904, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.383301, -0.076904 ], [ -48.614502, -0.241699 ], [ -48.581543, -1.241358 ], [ -47.823486, -0.582265 ], [ -46.560059, -0.944781 ], [ -45.000000, -1.515936 ], [ -44.901123, -1.548884 ], [ -44.417725, -2.141835 ], [ -44.582520, -2.690661 ], [ -44.121094, -2.569939 ], [ -44.121094, -23.221155 ], [ -44.648438, -23.352343 ], [ -45.351562, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.647705, -24.886436 ], [ -48.493652, -25.878994 ], [ -48.636475, -26.627818 ], [ -48.471680, -27.176469 ], [ -48.658447, -28.188244 ], [ -48.889160, -28.671311 ], [ -49.581299, -29.228890 ], [ -50.690918, -30.987028 ], [ -51.569824, -31.774878 ], [ -52.250977, -32.249974 ], [ -52.712402, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.646240, -33.201924 ], [ -53.206787, -32.731841 ], [ -53.789062, -32.045333 ], [ -54.569092, -31.494262 ], [ -55.601807, -30.855079 ], [ -55.975342, -30.883369 ], [ -56.975098, -30.107118 ], [ -57.623291, -30.221102 ], [ -57.875977, -31.015279 ], [ -58.139648, -32.045333 ], [ -58.128662, -33.045508 ], [ -58.348389, -33.266250 ], [ -58.491211, -34.434098 ], [ -57.227783, -35.290469 ], [ -57.359619, -35.978006 ], [ -56.733398, -36.412442 ], [ -56.788330, -36.905980 ], [ -57.744141, -38.186387 ], [ -59.227295, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.831150 ], [ -62.127686, -39.427707 ], [ -62.325439, -40.170479 ], [ -62.149658, -40.680638 ], [ -62.666016, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.764648, -41.170384 ], [ -64.259033, -40.979898 ], [ -64.731445, -40.805494 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.039062, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.674316, -39.943436 ], [ -73.212891, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.586426, -37.160317 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.514343 ], [ -71.861572, -33.906896 ], [ -71.433105, -32.417066 ], [ -71.663818, -30.921076 ], [ -71.367188, -30.097613 ], [ -71.488037, -28.863918 ], [ -70.905762, -27.644606 ], [ -70.718994, -25.710837 ], [ -70.400391, -23.634460 ], [ -70.092773, -21.391705 ], [ -70.158691, -19.756364 ], [ -70.367432, -18.344098 ], [ -71.378174, -17.780074 ], [ -71.466064, -17.361125 ], [ -73.443604, -16.362310 ], [ -75.234375, -15.262989 ], [ -76.003418, -14.647368 ], [ -76.420898, -13.827412 ], [ -76.256104, -13.539201 ], [ -77.102051, -12.221918 ], [ -78.090820, -10.379765 ], [ -79.035645, -8.385431 ], [ -79.442139, -7.928675 ], [ -79.760742, -7.199001 ], [ -80.540771, -6.544560 ], [ -81.243896, -6.140555 ], [ -80.925293, -5.692516 ], [ -81.408691, -4.740675 ], [ -81.101074, -4.039618 ], [ -80.299072, -3.403758 ], [ -79.771729, -2.657738 ], [ -79.980469, -2.218684 ], [ -80.364990, -2.690661 ], [ -80.969238, -2.251617 ], [ -80.760498, -1.966167 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.911827 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.090332, 0.769020 ], [ -79.804688, 0.878872 ], [ -50.097656, 0.878872 ] ], [ [ -60.040283, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.259521, -20.519644 ], [ -62.292480, -21.053744 ], [ -62.687988, -22.248429 ], [ -60.842285, -23.885838 ], [ -60.029297, -24.036431 ], [ -58.809814, -24.776760 ], [ -57.777100, -25.165173 ], [ -57.634277, -25.601902 ], [ -58.612061, -27.127591 ], [ -57.612305, -27.401032 ], [ -56.480713, -27.547242 ], [ -55.689697, -27.391278 ], [ -54.788818, -26.627818 ], [ -54.624023, -25.740529 ], [ -54.426270, -25.165173 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.026397 ], [ -54.645996, -23.845650 ], [ -55.030518, -24.006326 ], [ -55.404053, -23.956136 ], [ -55.513916, -23.574057 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.360236 ], [ -56.469727, -22.085640 ], [ -56.876221, -22.278931 ], [ -57.930908, -22.095820 ], [ -57.864990, -20.735566 ], [ -58.161621, -20.179724 ], [ -58.183594, -19.870060 ], [ -59.117432, -19.362976 ], [ -60.040283, -19.342245 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.224854, 0.878872 ], [ -69.246826, 0.604237 ], [ -69.455566, 0.703107 ], [ -70.015869, 0.538322 ], [ -70.015869, -0.186767 ], [ -69.576416, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.559866 ], [ -69.895020, -4.302591 ], [ -70.389404, -3.765597 ], [ -70.686035, -3.743671 ], [ -70.048828, -2.723583 ], [ -70.806885, -2.262595 ], [ -71.411133, -2.339438 ], [ -71.773682, -2.174771 ], [ -72.322998, -2.438229 ], [ -73.070068, -2.306506 ], [ -73.663330, -1.263325 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.054932 ], [ -75.377197, -0.153808 ], [ -75.651855, 0.000000 ], [ -75.794678, 0.087891 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.263671 ], [ -77.420654, 0.395505 ], [ -77.662354, 0.823946 ], [ -77.849121, 0.812961 ], [ -77.969971, 0.878872 ], [ -69.224854, 0.878872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.489502, 0.878872 ], [ -65.544434, 0.790990 ], [ -66.324463, 0.725078 ], [ -66.489258, 0.878872 ], [ -65.489502, 0.878872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.097656, 0.878872 ], [ -50.701904, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.383301, -0.076904 ], [ -48.614502, -0.241699 ], [ -48.581543, -1.241358 ], [ -47.823486, -0.582265 ], [ -46.560059, -0.944781 ], [ -45.000000, -1.515936 ], [ -44.901123, -1.548884 ], [ -44.417725, -2.141835 ], [ -44.582520, -2.690661 ], [ -44.121094, -2.569939 ], [ -44.121094, -23.221155 ], [ -44.648438, -23.352343 ], [ -45.351562, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.647705, -24.886436 ], [ -48.493652, -25.878994 ], [ -48.636475, -26.627818 ], [ -48.471680, -27.176469 ], [ -48.658447, -28.188244 ], [ -48.889160, -28.671311 ], [ -49.581299, -29.228890 ], [ -50.690918, -30.987028 ], [ -51.569824, -31.774878 ], [ -52.250977, -32.249974 ], [ -52.712402, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.646240, -33.201924 ], [ -53.206787, -32.731841 ], [ -53.789062, -32.045333 ], [ -54.569092, -31.494262 ], [ -55.601807, -30.855079 ], [ -55.975342, -30.883369 ], [ -56.975098, -30.107118 ], [ -57.623291, -30.221102 ], [ -57.875977, -31.015279 ], [ -58.139648, -32.045333 ], [ -58.128662, -33.045508 ], [ -58.348389, -33.266250 ], [ -58.491211, -34.434098 ], [ -57.227783, -35.290469 ], [ -57.359619, -35.978006 ], [ -56.733398, -36.412442 ], [ -56.788330, -36.905980 ], [ -57.744141, -38.186387 ], [ -59.227295, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.831150 ], [ -62.127686, -39.427707 ], [ -62.325439, -40.170479 ], [ -62.149658, -40.680638 ], [ -62.666016, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.764648, -41.170384 ], [ -64.259033, -40.979898 ], [ -64.731445, -40.805494 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.039062, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.674316, -39.943436 ], [ -73.212891, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.586426, -37.160317 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.514343 ], [ -71.861572, -33.906896 ], [ -71.433105, -32.417066 ], [ -71.663818, -30.921076 ], [ -71.367188, -30.097613 ], [ -71.488037, -28.863918 ], [ -70.905762, -27.644606 ], [ -70.718994, -25.710837 ], [ -70.400391, -23.634460 ], [ -70.092773, -21.391705 ], [ -70.158691, -19.756364 ], [ -70.367432, -18.344098 ], [ -71.378174, -17.780074 ], [ -71.466064, -17.361125 ], [ -73.443604, -16.362310 ], [ -75.234375, -15.262989 ], [ -76.003418, -14.647368 ], [ -76.420898, -13.827412 ], [ -76.256104, -13.539201 ], [ -77.102051, -12.221918 ], [ -78.090820, -10.379765 ], [ -79.035645, -8.385431 ], [ -79.442139, -7.928675 ], [ -79.760742, -7.199001 ], [ -80.540771, -6.544560 ], [ -81.243896, -6.140555 ], [ -80.925293, -5.692516 ], [ -81.408691, -4.740675 ], [ -81.101074, -4.039618 ], [ -80.299072, -3.403758 ], [ -79.771729, -2.657738 ], [ -79.980469, -2.218684 ], [ -80.364990, -2.690661 ], [ -80.969238, -2.251617 ], [ -80.760498, -1.966167 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.911827 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.090332, 0.769020 ], [ -79.804688, 0.878872 ], [ -77.969971, 0.878872 ], [ -77.849121, 0.812961 ], [ -77.662354, 0.823946 ], [ -77.420654, 0.395505 ], [ -76.574707, 0.263671 ], [ -76.289062, 0.417477 ], [ -75.794678, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.153808 ], [ -75.102539, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.263325 ], [ -73.070068, -2.306506 ], [ -72.322998, -2.438229 ], [ -71.773682, -2.174771 ], [ -71.411133, -2.339438 ], [ -70.806885, -2.262595 ], [ -70.048828, -2.723583 ], [ -70.686035, -3.743671 ], [ -70.389404, -3.765597 ], [ -69.895020, -4.302591 ], [ -69.444580, -1.559866 ], [ -69.422607, -1.120534 ], [ -69.576416, -0.549308 ], [ -70.015869, -0.186767 ], [ -70.015869, 0.538322 ], [ -69.455566, 0.703107 ], [ -69.246826, 0.604237 ], [ -69.224854, 0.878872 ], [ -66.489258, 0.878872 ], [ -66.324463, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.489502, 0.878872 ], [ -50.097656, 0.878872 ] ], [ [ -60.040283, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.259521, -20.519644 ], [ -62.292480, -21.053744 ], [ -62.687988, -22.248429 ], [ -60.842285, -23.885838 ], [ -60.029297, -24.036431 ], [ -58.809814, -24.776760 ], [ -57.777100, -25.165173 ], [ -57.634277, -25.601902 ], [ -58.612061, -27.127591 ], [ -57.612305, -27.401032 ], [ -56.480713, -27.547242 ], [ -55.689697, -27.391278 ], [ -54.788818, -26.627818 ], [ -54.624023, -25.740529 ], [ -54.426270, -25.165173 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.026397 ], [ -54.645996, -23.845650 ], [ -55.030518, -24.006326 ], [ -55.404053, -23.956136 ], [ -55.513916, -23.574057 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.360236 ], [ -56.469727, -22.085640 ], [ -56.876221, -22.278931 ], [ -57.930908, -22.095820 ], [ -57.864990, -20.735566 ], [ -58.161621, -20.179724 ], [ -58.183594, -19.870060 ], [ -59.117432, -19.362976 ], [ -60.040283, -19.342245 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.975098, -30.107118 ], [ -55.975342, -30.883369 ], [ -55.601807, -30.855079 ], [ -54.569092, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.206787, -32.731841 ], [ -53.646240, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.800049, -34.397845 ], [ -54.931641, -34.957995 ], [ -55.667725, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.434098 ], [ -57.821045, -34.461277 ], [ -58.425293, -33.906896 ], [ -58.348389, -33.266250 ], [ -58.128662, -33.045508 ], [ -58.139648, -32.045333 ], [ -57.875977, -31.015279 ], [ -57.623291, -30.221102 ], [ -56.975098, -30.107118 ] ] ], [ [ [ -60.040283, -19.342245 ], [ -59.117432, -19.362976 ], [ -58.183594, -19.870060 ], [ -58.161621, -20.179724 ], [ -57.864990, -20.735566 ], [ -57.930908, -22.095820 ], [ -56.876221, -22.278931 ], [ -56.469727, -22.085640 ], [ -55.799561, -22.360236 ], [ -55.612793, -22.654572 ], [ -55.513916, -23.574057 ], [ -55.404053, -23.956136 ], [ -55.030518, -24.006326 ], [ -54.645996, -23.845650 ], [ -54.294434, -24.026397 ], [ -54.294434, -24.567108 ], [ -54.426270, -25.165173 ], [ -54.624023, -25.740529 ], [ -54.788818, -26.627818 ], [ -55.689697, -27.391278 ], [ -56.480713, -27.547242 ], [ -57.612305, -27.401032 ], [ -58.612061, -27.127591 ], [ -57.634277, -25.601902 ], [ -57.777100, -25.165173 ], [ -58.809814, -24.776760 ], [ -60.029297, -24.036431 ], [ -60.842285, -23.885838 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.053744 ], [ -62.259521, -20.519644 ], [ -61.787109, -19.632240 ], [ -60.040283, -19.342245 ] ] ] ] } } ] } @@ -249,15 +267,21 @@ , { "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, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.055664, 21.545066 ], [ -86.813965, 21.330315 ], [ -86.846924, 20.848545 ], [ -87.385254, 20.251890 ], [ -87.615967, 19.642588 ], [ -87.440186, 19.466592 ], [ -87.835693, 18.260653 ], [ -88.088379, 18.510866 ], [ -88.297119, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.344098 ], [ -88.121338, 18.072757 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.297119, 17.130292 ], [ -88.242188, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.267414 ], [ -88.725586, 16.235772 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.516846, 15.855674 ], [ -88.121338, 15.686510 ], [ -87.901611, 15.866242 ], [ -87.615967, 15.876809 ], [ -87.517090, 15.792254 ], [ -87.363281, 15.845105 ], [ -86.901855, 15.760536 ], [ -86.440430, 15.781682 ], [ -86.121826, 15.887376 ], [ -86.000977, 16.003576 ], [ -85.682373, 15.950766 ], [ -85.440674, 15.887376 ], [ -85.177002, 15.908508 ], [ -84.979248, 15.993015 ], [ -84.528809, 15.855674 ], [ -84.364014, 15.834536 ], [ -84.056396, 15.644197 ], [ -83.770752, 15.421910 ], [ -83.408203, 15.273587 ], [ -83.144531, 14.997852 ], [ -83.232422, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.177490, 14.306969 ], [ -83.408203, 13.966054 ], [ -83.518066, 13.571242 ], [ -83.551025, 13.122280 ], [ -83.496094, 12.865360 ], [ -83.474121, 12.415119 ], [ -83.627930, 12.318536 ], [ -83.715820, 11.888853 ], [ -83.649902, 11.630716 ], [ -83.858643, 11.372339 ], [ -83.803711, 11.102947 ], [ -83.649902, 10.941192 ], [ -83.891602, 10.725381 ], [ -84.188232, 10.790141 ], [ -84.353027, 10.995120 ], [ -84.671631, 11.081385 ], [ -84.902344, 10.951978 ], [ -85.561523, 11.210734 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.802834 ], [ -86.748047, 12.146746 ], [ -87.165527, 12.458033 ], [ -87.670898, 12.908198 ], [ -87.561035, 13.058075 ], [ -87.396240, 12.908198 ], [ -87.319336, 12.983148 ], [ -87.484131, 13.293411 ], [ -87.791748, 13.378932 ], [ -87.901611, 13.143678 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.252930, 13.453737 ], [ -89.813232, 13.517838 ], [ -90.000000, 13.656663 ], [ -90.098877, 13.731381 ], [ -90.615234, 13.912740 ], [ -90.878906, 13.923404 ], [ -90.878906, 19.217803 ], [ -90.769043, 19.280036 ], [ -90.538330, 19.870060 ], [ -90.450439, 20.704739 ], [ -90.274658, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.258661 ], [ -88.538818, 21.493964 ], [ -87.659912, 21.453069 ], [ -87.055664, 21.545066 ] ] ], [ [ [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.114502, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.322754, 40.979898 ], [ -72.235107, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.430224 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.495563 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.779781 ], [ -75.058594, 38.401949 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.256566 ], [ -75.717773, 37.935533 ], [ -76.234131, 38.315801 ], [ -76.343994, 39.147103 ], [ -76.541748, 38.719805 ], [ -76.333008, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.550105 ], [ -76.365967, 34.804783 ], [ -77.398682, 34.506557 ], [ -78.057861, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.057617, 33.495598 ], [ -79.200439, 33.155948 ], [ -80.299072, 32.509762 ], [ -80.859375, 32.036020 ], [ -81.331787, 31.438037 ], [ -81.485596, 30.732393 ], [ -81.309814, 30.031055 ], [ -80.980225, 29.180941 ], [ -80.529785, 28.468691 ], [ -80.529785, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.819672 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.075648 ], [ -81.166992, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.705322, 25.869109 ], [ -82.705078, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.545926 ], [ -82.924805, 29.094577 ], [ -83.704834, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.630771 ], [ -85.286865, 29.688053 ], [ -85.770264, 30.154627 ], [ -86.396484, 30.401307 ], [ -87.528076, 30.268556 ], [ -88.417969, 30.382353 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.154627 ], [ -89.417725, 29.888281 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.200123 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.142566 ], [ -90.878906, 41.640078 ], [ -69.960938, 41.640078 ] ] ], [ [ [ -78.189697, 25.204941 ], [ -77.893066, 25.165173 ], [ -77.541504, 24.337087 ], [ -77.530518, 23.755182 ], [ -77.783203, 23.704895 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.189697, 25.204941 ] ] ], [ [ [ -78.508301, 26.873081 ], [ -77.849121, 26.833875 ], [ -77.816162, 26.578702 ], [ -78.903809, 26.421390 ], [ -78.980713, 26.784847 ], [ -78.508301, 26.873081 ] ] ], [ [ [ -77.783203, 27.039557 ], [ -77.003174, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.354736, 26.007424 ], [ -77.343750, 26.529565 ], [ -77.783203, 26.922070 ], [ -77.783203, 27.039557 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.055664, 21.545066 ], [ -86.813965, 21.330315 ], [ -86.846924, 20.848545 ], [ -87.385254, 20.251890 ], [ -87.615967, 19.642588 ], [ -87.440186, 19.466592 ], [ -87.835693, 18.260653 ], [ -88.088379, 18.510866 ], [ -88.297119, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.344098 ], [ -88.121338, 18.072757 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.297119, 17.130292 ], [ -88.242188, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.267414 ], [ -88.725586, 16.235772 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.516846, 15.855674 ], [ -88.121338, 15.686510 ], [ -87.901611, 15.866242 ], [ -87.615967, 15.876809 ], [ -87.517090, 15.792254 ], [ -87.363281, 15.845105 ], [ -86.901855, 15.760536 ], [ -86.440430, 15.781682 ], [ -86.121826, 15.887376 ], [ -86.000977, 16.003576 ], [ -85.682373, 15.950766 ], [ -85.440674, 15.887376 ], [ -85.177002, 15.908508 ], [ -84.979248, 15.993015 ], [ -84.528809, 15.855674 ], [ -84.364014, 15.834536 ], [ -84.056396, 15.644197 ], [ -83.770752, 15.421910 ], [ -83.408203, 15.273587 ], [ -83.144531, 14.997852 ], [ -83.232422, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.177490, 14.306969 ], [ -83.408203, 13.966054 ], [ -83.518066, 13.571242 ], [ -83.551025, 13.122280 ], [ -83.496094, 12.865360 ], [ -83.474121, 12.415119 ], [ -83.627930, 12.318536 ], [ -83.715820, 11.888853 ], [ -83.649902, 11.630716 ], [ -83.858643, 11.372339 ], [ -83.803711, 11.102947 ], [ -83.649902, 10.941192 ], [ -83.397217, 10.390572 ], [ -83.012695, 9.990491 ], [ -82.540283, 9.568251 ], [ -82.935791, 9.470736 ], [ -82.924805, 9.069551 ], [ -82.716064, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.825928, 8.624472 ], [ -82.913818, 8.418036 ], [ -82.968750, 8.222364 ], [ -83.507080, 8.450639 ], [ -83.704834, 8.657057 ], [ -83.594971, 8.830795 ], [ -83.627930, 9.047853 ], [ -83.913574, 9.286465 ], [ -84.298096, 9.481572 ], [ -84.649658, 9.611582 ], [ -84.715576, 9.903921 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.795678 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.828154 ], [ -85.660400, 9.936388 ], [ -85.792236, 10.131117 ], [ -85.792236, 10.433793 ], [ -85.660400, 10.757763 ], [ -85.935059, 10.898042 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.802834 ], [ -86.748047, 12.146746 ], [ -87.165527, 12.458033 ], [ -87.670898, 12.908198 ], [ -87.561035, 13.058075 ], [ -87.396240, 12.908198 ], [ -87.319336, 12.983148 ], [ -87.484131, 13.293411 ], [ -87.791748, 13.378932 ], [ -87.901611, 13.143678 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.252930, 13.453737 ], [ -89.813232, 13.517838 ], [ -90.000000, 13.656663 ], [ -90.098877, 13.731381 ], [ -90.615234, 13.912740 ], [ -90.878906, 13.923404 ], [ -90.878906, 19.217803 ], [ -90.769043, 19.280036 ], [ -90.538330, 19.870060 ], [ -90.450439, 20.704739 ], [ -90.274658, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.258661 ], [ -88.538818, 21.493964 ], [ -87.659912, 21.453069 ], [ -87.055664, 21.545066 ] ] ], [ [ [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.114502, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.322754, 40.979898 ], [ -72.235107, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.430224 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.495563 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.779781 ], [ -75.058594, 38.401949 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.256566 ], [ -75.717773, 37.935533 ], [ -76.234131, 38.315801 ], [ -76.343994, 39.147103 ], [ -76.541748, 38.719805 ], [ -76.333008, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.550105 ], [ -76.365967, 34.804783 ], [ -77.398682, 34.506557 ], [ -78.057861, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.057617, 33.495598 ], [ -79.200439, 33.155948 ], [ -80.299072, 32.509762 ], [ -80.859375, 32.036020 ], [ -81.331787, 31.438037 ], [ -81.485596, 30.732393 ], [ -81.309814, 30.031055 ], [ -80.980225, 29.180941 ], [ -80.529785, 28.468691 ], [ -80.529785, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.819672 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.075648 ], [ -81.166992, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.705322, 25.869109 ], [ -82.705078, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.545926 ], [ -82.924805, 29.094577 ], [ -83.704834, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.630771 ], [ -85.286865, 29.688053 ], [ -85.770264, 30.154627 ], [ -86.396484, 30.401307 ], [ -87.528076, 30.268556 ], [ -88.417969, 30.382353 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.154627 ], [ -89.417725, 29.888281 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.200123 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.142566 ], [ -90.878906, 41.640078 ], [ -69.960938, 41.640078 ] ] ], [ [ [ -78.189697, 25.204941 ], [ -77.893066, 25.165173 ], [ -77.541504, 24.337087 ], [ -77.530518, 23.755182 ], [ -77.783203, 23.704895 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.189697, 25.204941 ] ] ], [ [ [ -78.508301, 26.873081 ], [ -77.849121, 26.833875 ], [ -77.816162, 26.578702 ], [ -78.903809, 26.421390 ], [ -78.980713, 26.784847 ], [ -78.508301, 26.873081 ] ] ], [ [ [ -77.783203, 27.039557 ], [ -77.003174, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.354736, 26.007424 ], [ -77.343750, 26.529565 ], [ -77.783203, 26.922070 ], [ -77.783203, 27.039557 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.611582 ], [ -79.024658, 9.546583 ], [ -79.057617, 9.449062 ], [ -78.497314, 9.416548 ], [ -78.057861, 9.243093 ], [ -77.728271, 8.950193 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.928675 ], [ -77.431641, 7.634776 ], [ -77.750244, 7.710992 ], [ -77.882080, 7.220800 ], [ -78.211670, 7.514981 ], [ -78.431396, 8.048352 ], [ -78.178711, 8.320212 ], [ -78.431396, 8.385431 ], [ -78.618164, 8.711359 ], [ -79.123535, 8.993600 ], [ -79.552002, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.167236, 8.331083 ], [ -80.375977, 8.298470 ], [ -80.474854, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.416942 ], [ -80.419922, 7.275292 ], [ -80.881348, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.700105 ], [ -81.716309, 8.102739 ], [ -82.133789, 8.178868 ], [ -82.386475, 8.287599 ], [ -82.814941, 8.287599 ], [ -82.847900, 8.070107 ], [ -82.968750, 8.222364 ], [ -82.913818, 8.418036 ], [ -82.825928, 8.624472 ], [ -82.869873, 8.809082 ], [ -82.716064, 8.928487 ], [ -82.924805, 9.069551 ], [ -82.935791, 9.470736 ], [ -82.540283, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.993600 ], [ -81.804199, 8.950193 ], [ -81.716309, 9.026153 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.852507 ], [ -80.518799, 9.112945 ], [ -79.914551, 9.308149 ], [ -79.573975, 9.611582 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -82.265625, 23.190863 ], [ -81.397705, 23.120154 ], [ -80.617676, 23.099944 ], [ -79.672852, 22.766051 ], [ -79.277344, 22.400872 ], [ -78.343506, 22.512557 ], [ -77.991943, 22.278931 ], [ -76.519775, 21.207459 ], [ -76.190186, 21.217701 ], [ -75.596924, 21.012727 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.300537, 20.045611 ], [ -74.959717, 19.921713 ], [ -75.629883, 19.870060 ], [ -76.322021, 19.952696 ], [ -77.750244, 19.849394 ], [ -77.080078, 20.416717 ], [ -77.486572, 20.673905 ], [ -78.134766, 20.735566 ], [ -78.486328, 21.022983 ], [ -78.717041, 21.596151 ], [ -79.288330, 21.555284 ], [ -80.211182, 21.830907 ], [ -80.518799, 22.034730 ], [ -81.815186, 22.187405 ], [ -82.166748, 22.390714 ], [ -81.793213, 22.634293 ], [ -82.770996, 22.684984 ], [ -83.496094, 22.167058 ], [ -83.902588, 22.156883 ], [ -84.045410, 21.912471 ], [ -84.550781, 21.800308 ], [ -84.968262, 21.892084 ], [ -84.440918, 22.207749 ], [ -84.232178, 22.563293 ], [ -83.781738, 22.786311 ], [ -83.265381, 22.978624 ], [ -82.507324, 23.079732 ], [ -82.265625, 23.190863 ] ] ], [ [ [ -85.561523, 11.210734 ], [ -84.902344, 10.951978 ], [ -84.671631, 11.081385 ], [ -84.353027, 10.995120 ], [ -84.188232, 10.790141 ], [ -83.891602, 10.725381 ], [ -83.649902, 10.941192 ], [ -83.397217, 10.390572 ], [ -83.012695, 9.990491 ], [ -82.540283, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.993600 ], [ -81.804199, 8.950193 ], [ -81.716309, 9.026153 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.852507 ], [ -80.518799, 9.112945 ], [ -79.914551, 9.308149 ], [ -79.573975, 9.611582 ], [ -79.024658, 9.546583 ], [ -79.057617, 9.449062 ], [ -78.497314, 9.416548 ], [ -78.057861, 9.243093 ], [ -77.728271, 8.950193 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.928675 ], [ -77.431641, 7.634776 ], [ -77.750244, 7.710992 ], [ -77.882080, 7.220800 ], [ -78.211670, 7.514981 ], [ -78.431396, 8.048352 ], [ -78.178711, 8.320212 ], [ -78.431396, 8.385431 ], [ -78.618164, 8.711359 ], [ -79.123535, 8.993600 ], [ -79.552002, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.167236, 8.331083 ], [ -80.375977, 8.298470 ], [ -80.474854, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.416942 ], [ -80.419922, 7.275292 ], [ -80.881348, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.700105 ], [ -81.716309, 8.102739 ], [ -82.133789, 8.178868 ], [ -82.386475, 8.287599 ], [ -82.814941, 8.287599 ], [ -82.847900, 8.070107 ], [ -82.968750, 8.222364 ], [ -83.507080, 8.450639 ], [ -83.704834, 8.657057 ], [ -83.594971, 8.830795 ], [ -83.627930, 9.047853 ], [ -83.913574, 9.286465 ], [ -84.298096, 9.481572 ], [ -84.649658, 9.611582 ], [ -84.715576, 9.903921 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.795678 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.828154 ], [ -85.660400, 9.936388 ], [ -85.792236, 10.131117 ], [ -85.792236, 10.433793 ], [ -85.660400, 10.757763 ], [ -85.935059, 10.898042 ], [ -85.561523, 11.210734 ] ] ], [ [ [ -77.794189, 18.521283 ], [ -76.893311, 18.396230 ], [ -76.365967, 18.156291 ], [ -76.201172, 17.884659 ], [ -76.904297, 17.863747 ], [ -77.200928, 17.696362 ], [ -77.761230, 17.863747 ], [ -78.332520, 18.229351 ], [ -78.211670, 18.448347 ], [ -77.794189, 18.521283 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.265625, 23.190863 ], [ -81.397705, 23.120154 ], [ -80.617676, 23.099944 ], [ -79.672852, 22.766051 ], [ -79.277344, 22.400872 ], [ -78.343506, 22.512557 ], [ -77.991943, 22.278931 ], [ -76.519775, 21.207459 ], [ -76.190186, 21.217701 ], [ -75.596924, 21.012727 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.300537, 20.045611 ], [ -74.959717, 19.921713 ], [ -75.629883, 19.870060 ], [ -76.322021, 19.952696 ], [ -77.750244, 19.849394 ], [ -77.080078, 20.416717 ], [ -77.486572, 20.673905 ], [ -78.134766, 20.735566 ], [ -78.486328, 21.022983 ], [ -78.717041, 21.596151 ], [ -79.288330, 21.555284 ], [ -80.211182, 21.830907 ], [ -80.518799, 22.034730 ], [ -81.815186, 22.187405 ], [ -82.166748, 22.390714 ], [ -81.793213, 22.634293 ], [ -82.770996, 22.684984 ], [ -83.496094, 22.167058 ], [ -83.902588, 22.156883 ], [ -84.045410, 21.912471 ], [ -84.550781, 21.800308 ], [ -84.968262, 21.892084 ], [ -84.440918, 22.207749 ], [ -84.232178, 22.563293 ], [ -83.781738, 22.786311 ], [ -83.265381, 22.978624 ], [ -82.507324, 23.079732 ], [ -82.265625, 23.190863 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.751709, 12.436577 ], [ -71.400146, 12.372197 ], [ -71.136475, 12.114523 ], [ -71.334229, 11.770570 ], [ -71.356201, 11.533852 ], [ -71.949463, 11.426187 ], [ -71.619873, 10.962764 ], [ -71.630859, 10.444598 ], [ -72.070312, 9.860628 ], [ -71.696777, 9.069551 ], [ -71.268311, 9.134639 ], [ -71.037598, 9.860628 ], [ -71.345215, 10.206813 ], [ -71.400146, 10.962764 ], [ -70.158691, 11.372339 ], [ -70.290527, 11.845847 ], [ -69.938965, 12.157486 ], [ -69.587402, 11.458491 ], [ -68.884277, 11.436955 ], [ -68.236084, 10.887254 ], [ -68.192139, 10.552622 ], [ -67.291260, 10.541821 ], [ -66.225586, 10.649811 ], [ -65.654297, 10.196000 ], [ -64.885254, 10.077037 ], [ -64.324951, 10.390572 ], [ -64.313965, 10.639014 ], [ -63.072510, 10.703792 ], [ -61.875000, 10.714587 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.947209 ], [ -61.589355, 9.871452 ], [ -60.831299, 9.384032 ], [ -60.666504, 8.581021 ], [ -60.150146, 8.602747 ], [ -59.754639, 8.363693 ], [ -60.545654, 7.776309 ], [ -60.633545, 7.416942 ], [ -60.292969, 7.046379 ], [ -60.545654, 6.850078 ], [ -61.160889, 6.697343 ], [ -61.138916, 6.227934 ], [ -61.413574, 5.954827 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.963135, 4.532618 ], [ -62.083740, 4.160158 ], [ -62.797852, 4.006740 ], [ -63.094482, 3.765597 ], [ -63.885498, 4.017699 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.050577 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.493109 ], [ -63.424072, 2.405299 ], [ -63.369141, 2.196727 ], [ -64.083252, 1.911267 ], [ -64.193115, 1.493971 ], [ -64.610596, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.544434, 0.790990 ], [ -66.324463, 0.725078 ], [ -66.873779, 1.252342 ], [ -67.060547, 1.131518 ], [ -67.258301, 1.713612 ], [ -67.532959, 2.032045 ], [ -67.862549, 1.691649 ], [ -69.818115, 1.713612 ], [ -69.807129, 1.087581 ], [ -69.213867, 0.988720 ], [ -69.246826, 0.604237 ], [ -69.455566, 0.703107 ], [ -70.015869, 0.538322 ], [ -70.015869, -0.186767 ], [ -69.576416, -0.549308 ], [ -69.488525, -0.878872 ], [ -74.201660, -0.878872 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.054932 ], [ -75.377197, -0.153808 ], [ -75.651855, 0.000000 ], [ -75.794678, 0.087891 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.252685 ], [ -77.420654, 0.395505 ], [ -77.662354, 0.823946 ], [ -77.849121, 0.812961 ], [ -78.848877, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.662109, 2.262595 ], [ -78.431396, 2.624814 ], [ -77.926025, 2.690661 ], [ -77.508545, 3.326986 ], [ -77.124023, 3.853293 ], [ -77.497559, 4.083453 ], [ -77.310791, 4.664030 ], [ -77.530518, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.475586, 6.686431 ], [ -77.882080, 7.220800 ], [ -77.750244, 7.710992 ], [ -77.431641, 7.634776 ], [ -77.244873, 7.928675 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.667918 ], [ -76.838379, 8.635334 ], [ -76.080322, 9.340672 ], [ -75.673828, 9.438224 ], [ -75.662842, 9.774025 ], [ -75.476074, 10.617418 ], [ -74.904785, 11.081385 ], [ -74.278564, 11.102947 ], [ -74.190674, 11.307708 ], [ -73.410645, 11.221510 ], [ -72.630615, 11.727546 ], [ -72.235107, 11.953349 ], [ -71.751709, 12.436577 ] ] ], [ [ [ -73.190918, 19.911384 ], [ -72.575684, 19.870060 ], [ -71.707764, 19.715000 ], [ -71.586914, 19.880392 ], [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.642588 ], [ -69.763184, 19.290406 ], [ -69.224854, 19.311143 ], [ -69.257812, 19.010190 ], [ -68.807373, 18.979026 ], [ -68.312988, 18.615013 ], [ -68.686523, 18.208480 ], [ -69.158936, 18.417079 ], [ -69.620361, 18.375379 ], [ -69.949951, 18.427502 ], [ -70.136719, 18.239786 ], [ -70.521240, 18.187607 ], [ -70.664062, 18.427502 ], [ -70.993652, 18.281518 ], [ -71.400146, 17.602139 ], [ -71.652832, 17.759150 ], [ -71.707764, 18.041421 ], [ -72.366943, 18.208480 ], [ -72.839355, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.916016, 18.030975 ], [ -74.454346, 18.344098 ], [ -74.366455, 18.667063 ], [ -73.443604, 18.521283 ], [ -72.696533, 18.448347 ], [ -72.333984, 18.667063 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.410645, 19.642588 ], [ -73.190918, 19.911384 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.794189, 18.521283 ], [ -76.893311, 18.396230 ], [ -76.365967, 18.156291 ], [ -76.201172, 17.884659 ], [ -76.904297, 17.863747 ], [ -77.200928, 17.696362 ], [ -77.761230, 17.863747 ], [ -78.332520, 18.229351 ], [ -78.211670, 18.448347 ], [ -77.794189, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.848877, 1.384143 ], [ -77.849121, 0.812961 ], [ -77.662354, 0.823946 ], [ -77.420654, 0.395505 ], [ -76.574707, 0.252685 ], [ -76.289062, 0.417477 ], [ -75.794678, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.153808 ], [ -75.245361, -0.878872 ], [ -80.573730, -0.878872 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.977736 ], [ -78.848877, 1.384143 ] ] ], [ [ [ -59.754639, 8.363693 ], [ -59.095459, 7.993957 ], [ -58.480225, 7.351571 ], [ -58.458252, 6.828261 ], [ -58.073730, 6.806444 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.769036 ], [ -55.843506, 5.954827 ], [ -55.030518, 6.020385 ], [ -53.953857, 5.758105 ], [ -54.481201, 4.893941 ], [ -54.393311, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.184394 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.306506 ], [ -55.096436, 2.526037 ], [ -55.568848, 2.416276 ], [ -55.975342, 2.504085 ], [ -56.074219, 2.218684 ], [ -55.909424, 2.021065 ], [ -55.997314, 1.812442 ], [ -56.535645, 1.900286 ], [ -56.777344, 1.867345 ], [ -57.337646, 1.944207 ], [ -57.656250, 1.680667 ], [ -58.106689, 1.504954 ], [ -58.425293, 1.461023 ], [ -58.535156, 1.263325 ], [ -59.029541, 1.318243 ], [ -59.644775, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.974365, 2.756504 ], [ -59.809570, 3.601142 ], [ -59.534912, 3.962901 ], [ -59.765625, 4.423090 ], [ -60.106201, 4.576425 ], [ -59.974365, 5.014339 ], [ -60.216064, 5.244128 ], [ -60.732422, 5.200365 ], [ -61.413574, 5.954827 ], [ -61.138916, 6.227934 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.850078 ], [ -60.292969, 7.046379 ], [ -60.633545, 7.416942 ], [ -60.545654, 7.776309 ], [ -59.754639, 8.363693 ] ] ], [ [ [ -67.104492, 18.521283 ], [ -66.280518, 18.510866 ], [ -65.775146, 18.427502 ], [ -65.588379, 18.229351 ], [ -65.841064, 17.978733 ], [ -66.599121, 17.978733 ], [ -67.181396, 17.947381 ], [ -67.236328, 18.375379 ], [ -67.104492, 18.521283 ] ] ], [ [ [ -61.105957, 10.887254 ], [ -60.897217, 10.854886 ], [ -60.930176, 10.109486 ], [ -61.765137, 10.001310 ], [ -61.951904, 10.087854 ], [ -61.655273, 10.368958 ], [ -61.677246, 10.757763 ], [ -61.105957, 10.887254 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.911384 ], [ -72.575684, 19.870060 ], [ -71.707764, 19.715000 ], [ -71.619873, 19.165924 ], [ -71.696777, 18.781517 ], [ -71.938477, 18.615013 ], [ -71.685791, 18.312811 ], [ -71.707764, 18.041421 ], [ -72.366943, 18.208480 ], [ -72.839355, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.916016, 18.030975 ], [ -74.454346, 18.344098 ], [ -74.366455, 18.667063 ], [ -73.443604, 18.521283 ], [ -72.696533, 18.448347 ], [ -72.333984, 18.667063 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.410645, 19.642588 ], [ -73.190918, 19.911384 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.102539, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.201660, -0.878872 ], [ -75.245361, -0.878872 ], [ -75.377197, -0.153808 ], [ -75.102539, -0.054932 ] ] ], [ [ [ -53.953857, 5.758105 ], [ -52.877197, 5.408211 ], [ -51.822510, 4.565474 ], [ -51.657715, 4.160158 ], [ -51.317139, 4.203986 ], [ -51.064453, 3.645000 ], [ -50.504150, 1.900286 ], [ -49.976807, 1.735574 ], [ -49.943848, 1.043643 ], [ -50.701904, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.383301, -0.076904 ], [ -48.614502, -0.241699 ], [ -48.592529, -0.878872 ], [ -69.488525, -0.878872 ], [ -69.576416, -0.549308 ], [ -70.015869, -0.186767 ], [ -70.015869, 0.538322 ], [ -69.455566, 0.703107 ], [ -69.246826, 0.604237 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.087581 ], [ -69.818115, 1.713612 ], [ -67.862549, 1.691649 ], [ -67.532959, 2.032045 ], [ -67.258301, 1.713612 ], [ -67.060547, 1.131518 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.610596, 1.329226 ], [ -64.193115, 1.493971 ], [ -64.083252, 1.911267 ], [ -63.369141, 2.196727 ], [ -63.424072, 2.405299 ], [ -64.270020, 2.493109 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.050577 ], [ -64.632568, 4.149201 ], [ -63.885498, 4.017699 ], [ -63.094482, 3.765597 ], [ -62.797852, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.963135, 4.532618 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.216064, 5.244128 ], [ -59.974365, 5.014339 ], [ -60.106201, 4.576425 ], [ -59.765625, 4.423090 ], [ -59.534912, 3.962901 ], [ -59.809570, 3.601142 ], [ -59.974365, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.644775, 1.790480 ], [ -59.029541, 1.318243 ], [ -58.535156, 1.263325 ], [ -58.425293, 1.461023 ], [ -58.106689, 1.504954 ], [ -57.656250, 1.680667 ], [ -57.337646, 1.944207 ], [ -56.777344, 1.867345 ], [ -56.535645, 1.900286 ], [ -55.997314, 1.812442 ], [ -55.909424, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.975342, 2.504085 ], [ -55.568848, 2.416276 ], [ -55.096436, 2.526037 ], [ -54.525146, 2.306506 ], [ -54.272461, 2.734557 ], [ -54.184570, 3.195364 ], [ -54.008789, 3.623071 ], [ -54.393311, 4.214943 ], [ -54.481201, 4.893941 ], [ -53.953857, 5.758105 ] ] ], [ [ [ -47.823486, -0.582265 ], [ -46.790771, -0.878872 ], [ -48.164062, -0.878872 ], [ -47.823486, -0.582265 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.751709, 12.436577 ], [ -71.400146, 12.372197 ], [ -71.136475, 12.114523 ], [ -71.334229, 11.770570 ], [ -71.971436, 11.609193 ], [ -72.224121, 11.102947 ], [ -72.608643, 10.822515 ], [ -72.905273, 10.444598 ], [ -73.026123, 9.730714 ], [ -73.300781, 9.145486 ], [ -72.784424, 9.080400 ], [ -72.663574, 8.624472 ], [ -72.443848, 8.407168 ], [ -72.355957, 8.004837 ], [ -72.476807, 7.634776 ], [ -72.443848, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.092773, 6.959144 ], [ -69.389648, 6.096860 ], [ -68.983154, 6.206090 ], [ -68.269043, 6.151478 ], [ -67.697754, 6.260697 ], [ -67.335205, 6.096860 ], [ -67.521973, 5.550381 ], [ -67.741699, 5.222247 ], [ -67.818604, 4.499762 ], [ -67.620850, 3.842332 ], [ -67.335205, 3.546318 ], [ -67.302246, 3.316018 ], [ -67.807617, 2.822344 ], [ -67.445068, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.873779, 1.252342 ], [ -67.060547, 1.131518 ], [ -67.258301, 1.713612 ], [ -67.532959, 2.032045 ], [ -67.862549, 1.691649 ], [ -69.818115, 1.713612 ], [ -69.807129, 1.087581 ], [ -69.213867, 0.988720 ], [ -69.246826, 0.604237 ], [ -69.455566, 0.703107 ], [ -70.015869, 0.538322 ], [ -70.015869, -0.186767 ], [ -69.576416, -0.549308 ], [ -69.488525, -0.878872 ], [ -74.201660, -0.878872 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.054932 ], [ -75.377197, -0.153808 ], [ -75.651855, 0.000000 ], [ -75.794678, 0.087891 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.252685 ], [ -77.420654, 0.395505 ], [ -77.662354, 0.823946 ], [ -77.849121, 0.812961 ], [ -78.848877, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.662109, 2.262595 ], [ -78.431396, 2.624814 ], [ -77.926025, 2.690661 ], [ -77.508545, 3.326986 ], [ -77.124023, 3.853293 ], [ -77.497559, 4.083453 ], [ -77.310791, 4.664030 ], [ -77.530518, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.475586, 6.686431 ], [ -77.882080, 7.220800 ], [ -77.750244, 7.710992 ], [ -77.431641, 7.634776 ], [ -77.244873, 7.928675 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.667918 ], [ -76.838379, 8.635334 ], [ -76.080322, 9.340672 ], [ -75.673828, 9.438224 ], [ -75.662842, 9.774025 ], [ -75.476074, 10.617418 ], [ -74.904785, 11.081385 ], [ -74.278564, 11.102947 ], [ -74.190674, 11.307708 ], [ -73.410645, 11.221510 ], [ -72.630615, 11.727546 ], [ -72.235107, 11.953349 ], [ -71.751709, 12.436577 ] ] ], [ [ [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.642588 ], [ -69.763184, 19.290406 ], [ -69.224854, 19.311143 ], [ -69.257812, 19.010190 ], [ -68.807373, 18.979026 ], [ -68.312988, 18.615013 ], [ -68.686523, 18.208480 ], [ -69.158936, 18.417079 ], [ -69.620361, 18.375379 ], [ -69.949951, 18.427502 ], [ -70.136719, 18.239786 ], [ -70.521240, 18.187607 ], [ -70.664062, 18.427502 ], [ -70.993652, 18.281518 ], [ -71.400146, 17.602139 ], [ -71.652832, 17.759150 ], [ -71.707764, 18.041421 ], [ -71.685791, 18.312811 ], [ -71.938477, 18.615013 ], [ -71.696777, 18.781517 ], [ -71.619873, 19.165924 ], [ -71.707764, 19.715000 ], [ -71.586914, 19.880392 ], [ -70.806885, 19.880392 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.938965, 12.157486 ], [ -69.587402, 11.458491 ], [ -68.884277, 11.436955 ], [ -68.236084, 10.887254 ], [ -68.192139, 10.552622 ], [ -67.291260, 10.541821 ], [ -66.225586, 10.649811 ], [ -65.654297, 10.196000 ], [ -64.885254, 10.077037 ], [ -64.324951, 10.390572 ], [ -64.313965, 10.639014 ], [ -63.072510, 10.703792 ], [ -61.875000, 10.714587 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.947209 ], [ -61.589355, 9.871452 ], [ -60.831299, 9.384032 ], [ -60.666504, 8.581021 ], [ -60.150146, 8.602747 ], [ -59.754639, 8.363693 ], [ -59.095459, 7.993957 ], [ -58.480225, 7.351571 ], [ -58.458252, 6.828261 ], [ -58.073730, 6.806444 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.769036 ], [ -55.843506, 5.954827 ], [ -55.030518, 6.020385 ], [ -53.953857, 5.758105 ], [ -54.481201, 4.893941 ], [ -54.393311, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.184394 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.306506 ], [ -55.096436, 2.526037 ], [ -55.568848, 2.416276 ], [ -55.975342, 2.504085 ], [ -56.074219, 2.218684 ], [ -55.909424, 2.021065 ], [ -55.997314, 1.812442 ], [ -56.535645, 1.900286 ], [ -56.777344, 1.867345 ], [ -57.337646, 1.944207 ], [ -57.656250, 1.680667 ], [ -58.106689, 1.504954 ], [ -58.425293, 1.461023 ], [ -58.535156, 1.263325 ], [ -59.029541, 1.318243 ], [ -59.644775, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.974365, 2.756504 ], [ -59.809570, 3.601142 ], [ -59.534912, 3.962901 ], [ -59.765625, 4.423090 ], [ -60.106201, 4.576425 ], [ -59.974365, 5.014339 ], [ -60.216064, 5.244128 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.963135, 4.532618 ], [ -62.083740, 4.160158 ], [ -62.797852, 4.006740 ], [ -63.094482, 3.765597 ], [ -63.885498, 4.017699 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.050577 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.493109 ], [ -63.424072, 2.405299 ], [ -63.369141, 2.196727 ], [ -64.083252, 1.911267 ], [ -64.193115, 1.493971 ], [ -64.610596, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.544434, 0.790990 ], [ -66.324463, 0.725078 ], [ -66.873779, 1.252342 ], [ -67.181396, 2.251617 ], [ -67.445068, 2.602864 ], [ -67.807617, 2.822344 ], [ -67.302246, 3.316018 ], [ -67.335205, 3.546318 ], [ -67.620850, 3.842332 ], [ -67.818604, 4.499762 ], [ -67.741699, 5.222247 ], [ -67.521973, 5.550381 ], [ -67.335205, 6.096860 ], [ -67.697754, 6.260697 ], [ -68.269043, 6.151478 ], [ -68.983154, 6.206090 ], [ -69.389648, 6.096860 ], [ -70.092773, 6.959144 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.443848, 7.427837 ], [ -72.476807, 7.634776 ], [ -72.355957, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.624472 ], [ -72.784424, 9.080400 ], [ -73.300781, 9.145486 ], [ -73.026123, 9.730714 ], [ -72.905273, 10.444598 ], [ -72.608643, 10.822515 ], [ -72.224121, 11.102947 ], [ -71.971436, 11.609193 ], [ -71.334229, 11.770570 ], [ -71.356201, 11.533852 ], [ -71.949463, 11.426187 ], [ -71.619873, 10.962764 ], [ -71.630859, 10.444598 ], [ -72.070312, 9.860628 ], [ -71.696777, 9.069551 ], [ -71.268311, 9.134639 ], [ -71.037598, 9.860628 ], [ -71.345215, 10.206813 ], [ -71.400146, 10.962764 ], [ -70.158691, 11.372339 ], [ -70.290527, 11.845847 ], [ -69.938965, 12.157486 ] ] ], [ [ [ -67.104492, 18.521283 ], [ -66.280518, 18.510866 ], [ -65.775146, 18.427502 ], [ -65.588379, 18.229351 ], [ -65.841064, 17.978733 ], [ -66.599121, 17.978733 ], [ -67.181396, 17.947381 ], [ -67.236328, 18.375379 ], [ -67.104492, 18.521283 ] ] ], [ [ [ -61.105957, 10.887254 ], [ -60.897217, 10.854886 ], [ -60.930176, 10.109486 ], [ -61.765137, 10.001310 ], [ -61.951904, 10.087854 ], [ -61.655273, 10.368958 ], [ -61.677246, 10.757763 ], [ -61.105957, 10.887254 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.848877, 1.384143 ], [ -77.849121, 0.812961 ], [ -77.662354, 0.823946 ], [ -77.420654, 0.395505 ], [ -76.574707, 0.252685 ], [ -76.289062, 0.417477 ], [ -75.794678, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.153808 ], [ -75.102539, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.201660, -0.878872 ], [ -80.573730, -0.878872 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.977736 ], [ -78.848877, 1.384143 ] ] ], [ [ [ -53.953857, 5.758105 ], [ -52.877197, 5.408211 ], [ -51.822510, 4.565474 ], [ -51.657715, 4.160158 ], [ -51.317139, 4.203986 ], [ -51.064453, 3.645000 ], [ -50.504150, 1.900286 ], [ -49.976807, 1.735574 ], [ -49.943848, 1.043643 ], [ -50.701904, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.383301, -0.076904 ], [ -48.614502, -0.241699 ], [ -48.592529, -0.878872 ], [ -69.488525, -0.878872 ], [ -69.576416, -0.549308 ], [ -70.015869, -0.186767 ], [ -70.015869, 0.538322 ], [ -69.455566, 0.703107 ], [ -69.246826, 0.604237 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.087581 ], [ -69.818115, 1.713612 ], [ -67.862549, 1.691649 ], [ -67.532959, 2.032045 ], [ -67.258301, 1.713612 ], [ -67.060547, 1.131518 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.610596, 1.329226 ], [ -64.193115, 1.493971 ], [ -64.083252, 1.911267 ], [ -63.369141, 2.196727 ], [ -63.424072, 2.405299 ], [ -64.270020, 2.493109 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.050577 ], [ -64.632568, 4.149201 ], [ -63.885498, 4.017699 ], [ -63.094482, 3.765597 ], [ -62.797852, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.963135, 4.532618 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.216064, 5.244128 ], [ -59.974365, 5.014339 ], [ -60.106201, 4.576425 ], [ -59.765625, 4.423090 ], [ -59.534912, 3.962901 ], [ -59.809570, 3.601142 ], [ -59.974365, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.644775, 1.790480 ], [ -59.029541, 1.318243 ], [ -58.535156, 1.263325 ], [ -58.425293, 1.461023 ], [ -58.106689, 1.504954 ], [ -57.656250, 1.680667 ], [ -57.337646, 1.944207 ], [ -56.777344, 1.867345 ], [ -56.535645, 1.900286 ], [ -55.997314, 1.812442 ], [ -55.909424, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.975342, 2.504085 ], [ -55.568848, 2.416276 ], [ -55.096436, 2.526037 ], [ -54.525146, 2.306506 ], [ -54.272461, 2.734557 ], [ -54.184570, 3.195364 ], [ -54.008789, 3.623071 ], [ -54.393311, 4.214943 ], [ -54.481201, 4.893941 ], [ -53.953857, 5.758105 ] ] ], [ [ [ -47.823486, -0.582265 ], [ -46.790771, -0.878872 ], [ -48.164062, -0.878872 ], [ -47.823486, -0.582265 ] ] ] ] } } ] } ] } , @@ -299,25 +323,31 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.326330 ], [ -3.636475, 35.398006 ], [ -2.603760, 35.173808 ], [ -2.164307, 35.164828 ], [ -1.790771, 34.524661 ], [ -1.735840, 33.916013 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.648626 ], [ -1.307373, 32.259265 ], [ -2.614746, 32.091883 ], [ -3.065186, 31.718822 ], [ -3.647461, 31.634676 ], [ -3.691406, 30.892797 ], [ -4.855957, 30.496018 ], [ -5.240479, 30.002517 ], [ -6.064453, 29.726222 ], [ -7.053223, 29.573457 ], [ -8.668213, 28.844674 ], [ -8.668213, 27.654338 ], [ -8.679199, 27.391278 ], [ -4.921875, 24.976099 ], [ -6.448975, 24.956180 ], [ -5.482178, 16.320139 ], [ -5.317383, 16.204125 ], [ -5.537109, 15.496032 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.645752, 15.135764 ], [ -11.348877, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.832275, 14.796128 ], [ -12.172852, 14.615478 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.421681 ], [ -11.546631, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.513672, 12.436577 ], [ -11.458740, 12.071553 ], [ -11.293945, 12.071553 ], [ -11.030273, 12.211180 ], [ -10.865479, 12.178965 ], [ -10.590820, 11.921103 ], [ -10.162354, 11.845847 ], [ -9.887695, 12.060809 ], [ -9.569092, 12.189704 ], [ -9.327393, 12.329269 ], [ -9.129639, 12.307802 ], [ -8.898926, 12.082296 ], [ -8.789062, 11.813588 ], [ -8.371582, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.624268, 10.811724 ], [ -8.404541, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.131117 ], [ -8.305664, 9.784851 ], [ -8.074951, 9.373193 ], [ -7.833252, 8.570158 ], [ -8.206787, 8.450639 ], [ -8.294678, 8.320212 ], [ -8.217773, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.723145, 7.710992 ], [ -8.920898, 7.307985 ], [ -9.206543, 7.307985 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.537565 ], [ -10.019531, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.352823 ], [ -10.491943, 8.711359 ], [ -10.656738, 8.971897 ], [ -10.623779, 9.264779 ], [ -10.832520, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.920166, 10.044585 ], [ -12.150879, 9.860628 ], [ -12.425537, 9.838979 ], [ -12.590332, 9.622414 ], [ -12.711182, 9.340672 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.492408 ], [ -14.073486, 9.882275 ], [ -14.326172, 10.012130 ], [ -14.578857, 10.217625 ], [ -14.688721, 10.649811 ], [ -14.842529, 10.876465 ], [ -15.128174, 11.038255 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.154376 ], [ -16.710205, 13.592600 ], [ -17.127686, 14.370834 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.912938 ], [ -16.699219, 15.623037 ], [ -16.457520, 16.130262 ], [ -16.545410, 16.667769 ], [ -16.270752, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.093267 ], [ -16.380615, 19.590844 ], [ -16.281738, 20.086889 ], [ -16.534424, 20.571082 ], [ -17.061768, 21.002471 ], [ -16.973877, 21.881890 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.674847 ], [ -16.325684, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.424805, 24.357105 ], [ -15.084229, 24.517139 ], [ -14.820557, 25.105497 ], [ -14.798584, 25.631622 ], [ -14.436035, 26.254010 ], [ -13.776855, 26.617997 ], [ -13.139648, 27.634874 ], [ -12.612305, 28.033198 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.835050 ], [ -10.393066, 29.094577 ], [ -9.558105, 29.935895 ], [ -9.810791, 31.175210 ], [ -9.437256, 32.036020 ], [ -9.294434, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.657471, 33.696923 ], [ -6.910400, 34.107256 ], [ -6.240234, 35.146863 ], [ -5.932617, 35.755428 ], [ -5.196533, 35.755428 ] ] ], [ [ [ -6.536865, 41.640078 ], [ -6.383057, 41.385052 ], [ -6.844482, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.329796 ], [ -7.020264, 40.187267 ], [ -7.064209, 39.707187 ], [ -7.492676, 39.631077 ], [ -7.097168, 39.027719 ], [ -7.371826, 38.376115 ], [ -7.031250, 38.074041 ], [ -7.163086, 37.805444 ], [ -7.536621, 37.431251 ], [ -7.448730, 37.099003 ], [ -7.855225, 36.835668 ], [ -8.382568, 36.976227 ], [ -8.898926, 36.870832 ], [ -8.745117, 37.649034 ], [ -8.843994, 38.264063 ], [ -9.283447, 38.358888 ], [ -9.525146, 38.736946 ], [ -9.448242, 39.393755 ], [ -9.041748, 39.757880 ], [ -8.975830, 40.162083 ], [ -8.767090, 40.755580 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.186922 ], [ -8.986816, 41.541478 ], [ -8.997803, 41.640078 ], [ -6.536865, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.326330 ], [ -3.636475, 35.398006 ], [ -2.603760, 35.173808 ], [ -2.164307, 35.164828 ], [ -1.790771, 34.524661 ], [ -1.735840, 33.916013 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.648626 ], [ -1.307373, 32.259265 ], [ -2.614746, 32.091883 ], [ -3.065186, 31.718822 ], [ -3.647461, 31.634676 ], [ -3.691406, 30.892797 ], [ -4.855957, 30.496018 ], [ -5.240479, 30.002517 ], [ -6.064453, 29.726222 ], [ -7.053223, 29.573457 ], [ -8.668213, 28.844674 ], [ -8.668213, 27.654338 ], [ -8.679199, 27.391278 ], [ -4.921875, 24.976099 ], [ -6.448975, 24.956180 ], [ -5.482178, 16.320139 ], [ -5.317383, 16.204125 ], [ -5.537109, 15.496032 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.645752, 15.135764 ], [ -11.348877, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.832275, 14.796128 ], [ -12.172852, 14.615478 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.421681 ], [ -11.546631, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.513672, 12.436577 ], [ -11.458740, 12.071553 ], [ -11.293945, 12.071553 ], [ -11.030273, 12.211180 ], [ -10.865479, 12.178965 ], [ -10.590820, 11.921103 ], [ -10.162354, 11.845847 ], [ -9.887695, 12.060809 ], [ -9.569092, 12.189704 ], [ -9.327393, 12.329269 ], [ -9.129639, 12.307802 ], [ -8.898926, 12.082296 ], [ -8.789062, 11.813588 ], [ -8.371582, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.624268, 10.811724 ], [ -8.404541, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.131117 ], [ -8.305664, 9.784851 ], [ -8.074951, 9.373193 ], [ -7.833252, 8.570158 ], [ -8.206787, 8.450639 ], [ -8.294678, 8.320212 ], [ -8.217773, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.723145, 7.710992 ], [ -8.920898, 7.307985 ], [ -9.206543, 7.307985 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.537565 ], [ -10.019531, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.352823 ], [ -10.491943, 8.711359 ], [ -10.656738, 8.971897 ], [ -10.623779, 9.264779 ], [ -10.832520, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.920166, 10.044585 ], [ -12.150879, 9.860628 ], [ -12.425537, 9.838979 ], [ -12.590332, 9.622414 ], [ -12.711182, 9.340672 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.492408 ], [ -14.073486, 9.882275 ], [ -14.326172, 10.012130 ], [ -14.578857, 10.217625 ], [ -14.688721, 10.649811 ], [ -14.842529, 10.876465 ], [ -15.128174, 11.038255 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.154376 ], [ -16.710205, 13.592600 ], [ -17.127686, 14.370834 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.912938 ], [ -16.699219, 15.623037 ], [ -16.457520, 16.130262 ], [ -16.545410, 16.667769 ], [ -16.270752, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.093267 ], [ -16.380615, 19.590844 ], [ -16.281738, 20.086889 ], [ -16.534424, 20.571082 ], [ -17.061768, 21.002471 ], [ -16.973877, 21.881890 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.674847 ], [ -16.325684, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.424805, 24.357105 ], [ -15.084229, 24.517139 ], [ -14.820557, 25.105497 ], [ -14.798584, 25.631622 ], [ -14.436035, 26.254010 ], [ -13.776855, 26.617997 ], [ -13.139648, 27.634874 ], [ -12.612305, 28.033198 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.835050 ], [ -10.393066, 29.094577 ], [ -9.558105, 29.935895 ], [ -9.810791, 31.175210 ], [ -9.437256, 32.036020 ], [ -9.294434, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.657471, 33.696923 ], [ -6.910400, 34.107256 ], [ -6.240234, 35.146863 ], [ -5.932617, 35.755428 ], [ -5.196533, 35.755428 ] ] ], [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.373535, 14.923554 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.878906, 13.475106 ], [ 0.878906, 10.995120 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.092166 ], [ -0.758057, 10.930405 ], [ -1.197510, 11.005904 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.390572 ], [ -2.823486, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.977051, 9.860628 ], [ -4.328613, 9.611582 ], [ -4.779053, 9.817329 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.368958 ], [ -5.471191, 10.951978 ], [ -5.196533, 11.372339 ], [ -5.218506, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.273682, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.336175 ], [ -3.098145, 13.539201 ], [ -2.966309, 13.795406 ], [ -2.186279, 14.243087 ], [ -1.999512, 14.562318 ], [ -1.065674, 14.976627 ], [ -0.516357, 15.114553 ] ] ], [ [ [ -6.536865, 41.640078 ], [ -6.383057, 41.385052 ], [ -6.844482, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.329796 ], [ -7.020264, 40.187267 ], [ -7.064209, 39.707187 ], [ -7.492676, 39.631077 ], [ -7.097168, 39.027719 ], [ -7.371826, 38.376115 ], [ -7.031250, 38.074041 ], [ -7.163086, 37.805444 ], [ -7.536621, 37.431251 ], [ -7.448730, 37.099003 ], [ -7.855225, 36.835668 ], [ -8.382568, 36.976227 ], [ -8.898926, 36.870832 ], [ -8.745117, 37.649034 ], [ -8.843994, 38.264063 ], [ -9.283447, 38.358888 ], [ -9.525146, 38.736946 ], [ -9.448242, 39.393755 ], [ -9.041748, 39.757880 ], [ -8.975830, 40.162083 ], [ -8.767090, 40.755580 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.186922 ], [ -8.986816, 41.541478 ], [ -8.997803, 41.640078 ], [ -6.536865, 41.640078 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.976099 ], [ 0.000000, 21.790107 ], [ 0.878906, 21.227942 ], [ 0.878906, 14.955399 ], [ 0.373535, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.976627 ], [ -1.999512, 14.562318 ], [ -2.186279, 14.243087 ], [ -2.966309, 13.795406 ], [ -3.098145, 13.539201 ], [ -3.526611, 13.336175 ], [ -4.010010, 13.475106 ], [ -4.273682, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.716788 ], [ -5.196533, 11.372339 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.811768, 10.217625 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.520219 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.844482, 10.141932 ], [ -7.624512, 10.141932 ], [ -7.899170, 10.293301 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.790141 ], [ -8.404541, 10.908830 ], [ -8.624268, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.371582, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.898926, 12.082296 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.329269 ], [ -9.569092, 12.189704 ], [ -9.887695, 12.060809 ], [ -10.162354, 11.845847 ], [ -10.590820, 11.921103 ], [ -10.865479, 12.178965 ], [ -11.030273, 12.211180 ], [ -11.293945, 12.071553 ], [ -11.458740, 12.071553 ], [ -11.513672, 12.436577 ], [ -11.469727, 12.758232 ], [ -11.546631, 13.143678 ], [ -11.931152, 13.421681 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.796128 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.645752, 15.135764 ], [ -10.085449, 15.326572 ], [ -9.700928, 15.262989 ], [ -9.547119, 15.485445 ], [ -5.537109, 15.496032 ], [ -5.317383, 16.204125 ], [ -5.482178, 16.320139 ], [ -6.448975, 24.956180 ], [ -4.921875, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.118164, 10.044585 ], [ -10.832520, 9.687398 ], [ -10.623779, 9.264779 ], [ -10.656738, 8.971897 ], [ -10.491943, 8.711359 ], [ -10.502930, 8.352823 ], [ -10.228271, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.537565 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.525873 ], [ -9.206543, 7.307985 ], [ -8.920898, 7.307985 ], [ -8.723145, 7.710992 ], [ -8.437500, 7.689217 ], [ -8.481445, 7.395153 ], [ -8.382568, 6.915521 ], [ -8.602295, 6.468151 ], [ -8.305664, 6.195168 ], [ -7.987061, 6.129631 ], [ -7.569580, 5.703448 ], [ -7.536621, 5.309766 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.828260 ], [ -9.909668, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.436768, 6.784626 ], [ -11.711426, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.952881, 7.798079 ], [ -13.117676, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.711182, 9.340672 ], [ -12.590332, 9.622414 ], [ -12.425537, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.044585 ], [ -11.118164, 10.044585 ] ] ], [ [ [ -4.921875, 24.976099 ], [ 0.000000, 21.790107 ], [ 0.878906, 21.227942 ], [ 0.878906, 14.955399 ], [ 0.373535, 14.923554 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.878906, 13.475106 ], [ 0.878906, 10.995120 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.092166 ], [ -0.758057, 10.930405 ], [ -1.197510, 11.005904 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.390572 ], [ -2.823486, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.977051, 9.860628 ], [ -4.328613, 9.611582 ], [ -4.779053, 9.817329 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.368958 ], [ -5.811768, 10.217625 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.520219 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.844482, 10.141932 ], [ -7.624512, 10.141932 ], [ -7.899170, 10.293301 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.790141 ], [ -8.404541, 10.908830 ], [ -8.624268, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.371582, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.898926, 12.082296 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.329269 ], [ -9.569092, 12.189704 ], [ -9.887695, 12.060809 ], [ -10.162354, 11.845847 ], [ -10.590820, 11.921103 ], [ -10.865479, 12.178965 ], [ -11.030273, 12.211180 ], [ -11.293945, 12.071553 ], [ -11.458740, 12.071553 ], [ -11.513672, 12.436577 ], [ -11.469727, 12.758232 ], [ -11.546631, 13.143678 ], [ -11.931152, 13.421681 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.796128 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.645752, 15.135764 ], [ -10.085449, 15.326572 ], [ -9.700928, 15.262989 ], [ -9.547119, 15.485445 ], [ -5.537109, 15.496032 ], [ -5.317383, 16.204125 ], [ -5.482178, 16.320139 ], [ -6.448975, 24.956180 ], [ -4.921875, 24.976099 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.537565 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.525873 ], [ -9.206543, 7.307985 ], [ -8.920898, 7.307985 ], [ -8.723145, 7.710992 ], [ -8.437500, 7.689217 ], [ -8.481445, 7.395153 ], [ -8.382568, 6.915521 ], [ -8.602295, 6.468151 ], [ -8.305664, 6.195168 ], [ -7.987061, 6.129631 ], [ -7.569580, 5.703448 ], [ -7.536621, 5.309766 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.828260 ], [ -9.909668, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.436768, 6.784626 ], [ -11.195068, 7.100893 ], [ -11.140137, 7.395153 ], [ -10.689697, 7.939556 ], [ -10.228271, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.537565 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.649811 ], [ 0.373535, 10.185187 ], [ 0.362549, 9.459899 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.406048 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 0.878906, 6.217012 ], [ 0.878906, 5.856475 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.342583 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.707828 ], [ -2.856445, 4.992450 ], [ -3.306885, 4.981505 ], [ -4.010010, 5.178482 ], [ -4.647217, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.525879, 4.707828 ], [ -7.514648, 4.335456 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.536621, 5.309766 ], [ -7.569580, 5.703448 ], [ -7.987061, 6.129631 ], [ -8.305664, 6.195168 ], [ -8.602295, 6.468151 ], [ -8.382568, 6.915521 ], [ -8.481445, 7.395153 ], [ -8.437500, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.217773, 8.124491 ], [ -8.294678, 8.320212 ], [ -8.206787, 8.450639 ], [ -7.833252, 8.570158 ], [ -8.074951, 9.373193 ], [ -8.305664, 9.784851 ], [ -8.228760, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.293301 ], [ -7.624512, 10.141932 ], [ -6.844482, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.492920, 10.412183 ], [ -6.207275, 10.520219 ], [ -6.053467, 10.098670 ], [ -5.811768, 10.217625 ], [ -5.405273, 10.368958 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.817329 ], [ -4.328613, 9.611582 ], [ -3.977051, 9.860628 ], [ -3.515625, 9.903921 ], [ -2.823486, 9.644077 ], [ -2.966309, 10.390572 ], [ -2.944336, 10.962764 ], [ -1.197510, 11.005904 ], [ -0.758057, 10.930405 ], [ -0.439453, 11.092166 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.649811 ], [ 0.373535, 10.185187 ], [ 0.362549, 9.459899 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.406048 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 0.878906, 6.217012 ], [ 0.878906, 5.856475 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.342583 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.707828 ], [ -2.856445, 4.992450 ], [ -3.306885, 4.981505 ], [ -4.010010, 5.178482 ], [ -4.647217, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.525879, 4.707828 ], [ -7.514648, 4.335456 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.536621, 5.309766 ], [ -7.569580, 5.703448 ], [ -7.987061, 6.129631 ], [ -8.305664, 6.195168 ], [ -8.602295, 6.468151 ], [ -8.382568, 6.915521 ], [ -8.481445, 7.395153 ], [ -8.437500, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.217773, 8.124491 ], [ -8.294678, 8.320212 ], [ -8.206787, 8.450639 ], [ -7.833252, 8.570158 ], [ -8.074951, 9.373193 ], [ -8.305664, 9.784851 ], [ -8.228760, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.293301 ], [ -7.624512, 10.141932 ], [ -6.844482, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.492920, 10.412183 ], [ -6.207275, 10.520219 ], [ -6.053467, 10.098670 ], [ -5.811768, 10.217625 ], [ -5.405273, 10.368958 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.817329 ], [ -4.328613, 9.611582 ], [ -3.977051, 9.860628 ], [ -3.515625, 9.903921 ], [ -2.823486, 9.644077 ], [ -2.966309, 10.390572 ], [ -2.944336, 10.962764 ], [ -1.197510, 11.005904 ], [ -0.758057, 10.930405 ], [ -0.439453, 11.092166 ] ] ], [ [ [ 0.878906, 36.421282 ], [ 0.878906, 21.227942 ], [ 0.000000, 21.790107 ], [ -4.921875, 24.976099 ], [ -8.679199, 27.391278 ], [ -8.668213, 27.586198 ], [ -8.668213, 28.844674 ], [ -7.053223, 29.573457 ], [ -6.064453, 29.726222 ], [ -5.240479, 30.002517 ], [ -4.855957, 30.496018 ], [ -3.691406, 30.892797 ], [ -3.647461, 31.634676 ], [ -3.065186, 31.718822 ], [ -2.614746, 32.091883 ], [ -1.307373, 32.259265 ], [ -1.120605, 32.648626 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.916013 ], [ -1.790771, 34.524661 ], [ -2.164307, 35.164828 ], [ -1.208496, 35.710838 ], [ -0.120850, 35.889050 ], [ 0.000000, 35.969115 ], [ 0.505371, 36.297418 ], [ 0.878906, 36.421282 ] ] ], [ [ [ 0.878906, 41.640078 ], [ 0.878906, 41.029643 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.120090 ], [ 0.000000, 39.901309 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.640335 ], [ -1.439209, 37.439974 ], [ -2.142334, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.677231 ], [ -4.998779, 36.323977 ], [ -5.372314, 35.942436 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.514893, 36.941111 ], [ -7.448730, 37.099003 ], [ -7.536621, 37.431251 ], [ -7.163086, 37.805444 ], [ -7.031250, 38.074041 ], [ -7.371826, 38.376115 ], [ -7.097168, 39.027719 ], [ -7.492676, 39.631077 ], [ -7.064209, 39.707187 ], [ -7.020264, 40.187267 ], [ -6.866455, 40.329796 ], [ -6.855469, 40.979898 ], [ -6.844482, 41.112469 ], [ -6.383057, 41.385052 ], [ -6.536865, 41.640078 ], [ 0.878906, 41.640078 ] ] ], [ [ [ -11.118164, 10.044585 ], [ -10.832520, 9.687398 ], [ -10.623779, 9.264779 ], [ -10.656738, 8.971897 ], [ -10.491943, 8.711359 ], [ -10.502930, 8.352823 ], [ -10.228271, 8.407168 ], [ -10.689697, 7.939556 ], [ -11.140137, 7.395153 ], [ -11.195068, 7.100893 ], [ -11.436768, 6.784626 ], [ -11.711426, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.952881, 7.798079 ], [ -13.117676, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.711182, 9.340672 ], [ -12.590332, 9.622414 ], [ -12.425537, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.044585 ], [ -11.118164, 10.044585 ] ] ], [ [ [ 0.878906, 10.908830 ], [ 0.878906, 10.368958 ], [ 0.769043, 10.466206 ], [ 0.878906, 10.908830 ] ] ], [ [ [ 0.878906, 14.955399 ], [ 0.878906, 13.475106 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.923554 ], [ 0.878906, 14.955399 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.021973, 11.016689 ], [ 0.878906, 10.995120 ], [ 0.878906, 6.217012 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.406048 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.678779 ], [ 0.362549, 9.459899 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.649811 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ], [ [ [ 0.878906, 14.955399 ], [ 0.878906, 13.475106 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.923554 ], [ 0.878906, 14.955399 ] ] ], [ [ [ 0.878906, 36.421282 ], [ 0.878906, 21.227942 ], [ 0.000000, 21.790107 ], [ -4.921875, 24.976099 ], [ -8.679199, 27.391278 ], [ -8.668213, 27.586198 ], [ -8.668213, 28.844674 ], [ -7.053223, 29.573457 ], [ -6.064453, 29.726222 ], [ -5.240479, 30.002517 ], [ -4.855957, 30.496018 ], [ -3.691406, 30.892797 ], [ -3.647461, 31.634676 ], [ -3.065186, 31.718822 ], [ -2.614746, 32.091883 ], [ -1.307373, 32.259265 ], [ -1.120605, 32.648626 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.916013 ], [ -1.790771, 34.524661 ], [ -2.164307, 35.164828 ], [ -1.208496, 35.710838 ], [ -0.120850, 35.889050 ], [ 0.000000, 35.969115 ], [ 0.505371, 36.297418 ], [ 0.878906, 36.421282 ] ] ], [ [ [ 0.878906, 41.640078 ], [ 0.878906, 41.029643 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.120090 ], [ 0.000000, 39.901309 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.640335 ], [ -1.439209, 37.439974 ], [ -2.142334, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.677231 ], [ -4.998779, 36.323977 ], [ -5.372314, 35.942436 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.514893, 36.941111 ], [ -7.448730, 37.099003 ], [ -7.536621, 37.431251 ], [ -7.163086, 37.805444 ], [ -7.031250, 38.074041 ], [ -7.371826, 38.376115 ], [ -7.097168, 39.027719 ], [ -7.492676, 39.631077 ], [ -7.064209, 39.707187 ], [ -7.020264, 40.187267 ], [ -6.866455, 40.329796 ], [ -6.855469, 40.979898 ], [ -6.844482, 41.112469 ], [ -6.383057, 41.385052 ], [ -6.536865, 41.640078 ], [ 0.878906, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.878906, 10.995120 ], [ 0.878906, 10.908830 ], [ 0.769043, 10.466206 ], [ 0.878906, 10.368958 ], [ 0.878906, 6.217012 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.406048 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.678779 ], [ 0.362549, 9.459899 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.649811 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, 49.972422 ], [ 0.878906, 41.029643 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.318604, 40.313043 ], [ -8.920898, 40.313043 ], [ -8.767090, 40.755580 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.186922 ], [ -8.986816, 41.541478 ], [ -9.030762, 41.877741 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.976074, 43.747289 ], [ -6.756592, 43.564472 ], [ -5.405273, 43.572432 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.452919 ], [ -1.900635, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.012224 ], [ -2.219238, 47.062638 ], [ -2.966309, 47.569114 ], [ -4.493408, 47.953145 ], [ -4.592285, 48.683708 ], [ -3.295898, 48.900838 ], [ -1.614990, 48.640169 ], [ -1.933594, 49.774170 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.681847 ], [ 0.878906, 49.972422 ] ] ], [ [ [ -2.999268, 58.636935 ], [ -4.075928, 57.551208 ], [ -3.054199, 57.686533 ], [ -1.955566, 57.686533 ], [ -2.219238, 56.866991 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.109619, 54.622978 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 0.878906, 52.869130 ], [ 0.878906, 50.958427 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.771208 ], [ -2.493896, 50.499452 ], [ -2.955322, 50.694718 ], [ -3.614502, 50.226124 ], [ -4.537354, 50.338449 ], [ -5.240479, 49.958288 ], [ -5.778809, 50.155786 ], [ -4.306641, 51.206883 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.590723 ], [ -5.262451, 51.991646 ], [ -4.218750, 52.301761 ], [ -4.768066, 52.835958 ], [ -4.581299, 53.494582 ], [ -3.087158, 53.402982 ], [ -2.944336, 53.981935 ], [ -3.625488, 54.616617 ], [ -4.844971, 54.788017 ], [ -5.075684, 55.059495 ], [ -4.713135, 55.509971 ], [ -5.042725, 55.782751 ], [ -5.581055, 55.310391 ], [ -5.646973, 56.273861 ], [ -6.152344, 56.782827 ], [ -5.789795, 57.815504 ], [ -5.009766, 58.631217 ], [ -4.207764, 58.551061 ], [ -2.999268, 58.636935 ] ] ], [ [ [ -33.969727, 66.861082 ], [ -34.200439, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.353760, 65.977798 ], [ -37.045898, 65.937514 ], [ -38.375244, 65.689953 ], [ -39.814453, 65.458261 ], [ -40.671387, 64.839597 ], [ -40.682373, 64.139369 ], [ -41.187744, 63.479957 ], [ -42.813721, 62.679186 ], [ -42.418213, 61.902752 ], [ -43.374023, 60.097718 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.878906, 60.640876 ], [ -45.878906, 66.861082 ], [ -33.969727, 66.861082 ] ] ], [ [ [ -16.171875, 66.526392 ], [ -15.853271, 66.513260 ], [ -14.501953, 66.456275 ], [ -14.743652, 65.807279 ], [ -13.612061, 65.127638 ], [ -14.908447, 64.363685 ], [ -17.797852, 63.680377 ], [ -18.654785, 63.494670 ], [ -22.763672, 63.961496 ], [ -21.774902, 64.401685 ], [ -23.950195, 64.890928 ], [ -22.181396, 65.086018 ], [ -22.225342, 65.375994 ], [ -24.323730, 65.608415 ], [ -23.653564, 66.262434 ], [ -22.137451, 66.407955 ], [ -20.577393, 65.730626 ], [ -19.050293, 66.275698 ], [ -17.797852, 65.991212 ], [ -16.204834, 66.513260 ], [ -16.171875, 66.526392 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.657959, 54.552952 ], [ -6.196289, 53.865486 ], [ -6.031494, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.558350, 51.665741 ], [ -9.975586, 51.822198 ], [ -9.162598, 52.862497 ], [ -9.689941, 53.878440 ], [ -8.327637, 54.661124 ], [ -7.569580, 55.128649 ], [ -6.734619, 55.172594 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.969727, 66.861082 ], [ -34.200439, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.353760, 65.977798 ], [ -37.045898, 65.937514 ], [ -38.375244, 65.689953 ], [ -39.814453, 65.458261 ], [ -40.671387, 64.839597 ], [ -40.682373, 64.139369 ], [ -41.187744, 63.479957 ], [ -42.813721, 62.679186 ], [ -42.418213, 61.902752 ], [ -43.374023, 60.097718 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.878906, 60.640876 ], [ -45.878906, 66.861082 ], [ -33.969727, 66.861082 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, 49.972422 ], [ 0.878906, 41.029643 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.318604, 40.313043 ], [ -8.920898, 40.313043 ], [ -8.767090, 40.755580 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.186922 ], [ -8.986816, 41.541478 ], [ -9.030762, 41.877741 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.976074, 43.747289 ], [ -6.756592, 43.564472 ], [ -5.405273, 43.572432 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.452919 ], [ -1.900635, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.012224 ], [ -2.219238, 47.062638 ], [ -2.966309, 47.569114 ], [ -4.493408, 47.953145 ], [ -4.592285, 48.683708 ], [ -3.295898, 48.900838 ], [ -1.614990, 48.640169 ], [ -1.933594, 49.774170 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.681847 ], [ 0.878906, 49.972422 ] ] ], [ [ [ -2.999268, 58.636935 ], [ -4.075928, 57.551208 ], [ -3.054199, 57.686533 ], [ -1.955566, 57.686533 ], [ -2.219238, 56.866991 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.109619, 54.622978 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 0.878906, 52.869130 ], [ 0.878906, 50.958427 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.771208 ], [ -2.493896, 50.499452 ], [ -2.955322, 50.694718 ], [ -3.614502, 50.226124 ], [ -4.537354, 50.338449 ], [ -5.240479, 49.958288 ], [ -5.778809, 50.155786 ], [ -4.306641, 51.206883 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.590723 ], [ -5.262451, 51.991646 ], [ -4.218750, 52.301761 ], [ -4.768066, 52.835958 ], [ -4.581299, 53.494582 ], [ -3.087158, 53.402982 ], [ -2.944336, 53.981935 ], [ -3.625488, 54.616617 ], [ -4.844971, 54.788017 ], [ -5.075684, 55.059495 ], [ -4.713135, 55.509971 ], [ -5.042725, 55.782751 ], [ -5.581055, 55.310391 ], [ -5.646973, 56.273861 ], [ -6.152344, 56.782827 ], [ -5.789795, 57.815504 ], [ -5.009766, 58.631217 ], [ -4.207764, 58.551061 ], [ -2.999268, 58.636935 ] ] ], [ [ [ -16.171875, 66.526392 ], [ -15.853271, 66.513260 ], [ -14.501953, 66.456275 ], [ -14.743652, 65.807279 ], [ -13.612061, 65.127638 ], [ -14.908447, 64.363685 ], [ -17.797852, 63.680377 ], [ -18.654785, 63.494670 ], [ -22.763672, 63.961496 ], [ -21.774902, 64.401685 ], [ -23.950195, 64.890928 ], [ -22.181396, 65.086018 ], [ -22.225342, 65.375994 ], [ -24.323730, 65.608415 ], [ -23.653564, 66.262434 ], [ -22.137451, 66.407955 ], [ -20.577393, 65.730626 ], [ -19.050293, 66.275698 ], [ -17.797852, 65.991212 ], [ -16.204834, 66.513260 ], [ -16.171875, 66.526392 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.657959, 54.552952 ], [ -6.196289, 53.865486 ], [ -6.031494, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.558350, 51.665741 ], [ -9.975586, 51.822198 ], [ -9.162598, 52.862497 ], [ -9.689941, 53.878440 ], [ -8.327637, 54.661124 ], [ -7.569580, 55.128649 ], [ -6.734619, 55.172594 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -18.984375, 79.335219 ], [ -19.193115, 79.171335 ], [ -19.698486, 78.750659 ], [ -19.676514, 77.638894 ], [ -18.468018, 76.985098 ], [ -20.039062, 76.942971 ], [ -21.676025, 76.626526 ], [ -19.830322, 76.098157 ], [ -19.599609, 75.247462 ], [ -20.665283, 75.154858 ], [ -19.368896, 74.295463 ], [ -21.588135, 74.223935 ], [ -20.434570, 73.815636 ], [ -20.764160, 73.462857 ], [ -22.170410, 73.308936 ], [ -23.565674, 73.305780 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.597266 ], [ -24.796143, 72.329130 ], [ -23.444824, 72.080673 ], [ -22.126465, 71.469124 ], [ -21.752930, 70.663607 ], [ -23.532715, 70.469881 ], [ -24.301758, 70.855485 ], [ -25.543213, 71.430678 ], [ -25.202637, 70.750723 ], [ -26.356201, 70.226028 ], [ -23.730469, 70.185103 ], [ -22.346191, 70.129165 ], [ -25.026855, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.122482 ], [ -31.772461, 68.118388 ], [ -32.805176, 67.734435 ], [ -34.200439, 66.679087 ], [ -34.716797, 66.513260 ], [ -35.804443, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.984375, 79.335219 ] ] ], [ [ [ -22.137451, 66.407955 ], [ -21.555176, 66.160511 ], [ -23.752441, 66.160511 ], [ -23.653564, 66.262434 ], [ -22.137451, 66.407955 ] ] ], [ [ [ -19.050293, 66.275698 ], [ -18.533936, 66.160511 ], [ -19.379883, 66.160511 ], [ -19.050293, 66.275698 ] ] ], [ [ [ -16.171875, 66.526392 ], [ -15.853271, 66.513260 ], [ -14.501953, 66.456275 ], [ -14.611816, 66.160511 ], [ -17.292480, 66.160511 ], [ -16.204834, 66.513260 ], [ -16.171875, 66.526392 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.984375, 79.335219 ], [ -19.193115, 79.171335 ], [ -19.698486, 78.750659 ], [ -19.676514, 77.638894 ], [ -18.468018, 76.985098 ], [ -20.039062, 76.942971 ], [ -21.676025, 76.626526 ], [ -19.830322, 76.098157 ], [ -19.599609, 75.247462 ], [ -20.665283, 75.154858 ], [ -19.368896, 74.295463 ], [ -21.588135, 74.223935 ], [ -20.434570, 73.815636 ], [ -20.764160, 73.462857 ], [ -22.170410, 73.308936 ], [ -23.565674, 73.305780 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.597266 ], [ -24.796143, 72.329130 ], [ -23.444824, 72.080673 ], [ -22.126465, 71.469124 ], [ -21.752930, 70.663607 ], [ -23.532715, 70.469881 ], [ -24.301758, 70.855485 ], [ -25.543213, 71.430678 ], [ -25.202637, 70.750723 ], [ -26.356201, 70.226028 ], [ -23.730469, 70.185103 ], [ -22.346191, 70.129165 ], [ -25.026855, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.122482 ], [ -31.772461, 68.118388 ], [ -32.805176, 67.734435 ], [ -34.200439, 66.679087 ], [ -34.716797, 66.513260 ], [ -35.804443, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.984375, 79.335219 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.137451, 66.407955 ], [ -21.555176, 66.160511 ], [ -23.752441, 66.160511 ], [ -23.653564, 66.262434 ], [ -22.137451, 66.407955 ] ] ], [ [ [ -19.379883, 66.160511 ], [ -19.050293, 66.275698 ], [ -18.533936, 66.160511 ], [ -19.379883, 66.160511 ] ] ], [ [ [ -17.292480, 66.160511 ], [ -16.204834, 66.513260 ], [ -16.171875, 66.526392 ], [ -15.853271, 66.513260 ], [ -14.501953, 66.456275 ], [ -14.611816, 66.160511 ], [ -17.292480, 66.160511 ] ] ] ] } } ] } ] } , @@ -341,61 +371,69 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.857422, 0.878872 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.044678, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.583252, -1.680667 ], [ 40.891113, -2.086941 ], [ 40.638428, -2.504085 ], [ 40.264893, -2.569939 ], [ 40.122070, -3.283114 ], [ 39.803467, -3.677892 ], [ 39.605713, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.770996, -3.677892 ], [ 37.705078, -3.096636 ], [ 34.068604, -1.065612 ], [ 33.903809, -0.955766 ], [ 31.871338, -1.032659 ], [ 30.772705, -1.010690 ], [ 30.421143, -1.131518 ], [ 29.827881, -1.450040 ], [ 29.586182, -1.340210 ], [ 29.289551, -1.625758 ], [ 29.256592, -2.218684 ], [ 29.113770, -2.295528 ], [ 29.025879, -2.844290 ], [ 29.278564, -3.294082 ], [ 29.344482, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.244110 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.526701 ], [ 28.454590, -9.167179 ], [ 28.674316, -9.611582 ], [ 28.498535, -10.790141 ], [ 28.377686, -11.792080 ], [ 28.641357, -11.974845 ], [ 29.344482, -12.361466 ], [ 29.619141, -12.178965 ], [ 29.696045, -13.261333 ], [ 28.937988, -13.250640 ], [ 28.520508, -12.704651 ], [ 28.157959, -12.275599 ], [ 27.388916, -12.136005 ], [ 27.169189, -11.609193 ], [ 26.553955, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.422363, -11.329253 ], [ 24.785156, -11.243062 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.917236, -10.930405 ], [ 24.016113, -11.243062 ], [ 23.906250, -11.727546 ], [ 24.082031, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.939697, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.565918, -16.899172 ], [ 23.214111, -17.528821 ], [ 24.038086, -17.298199 ], [ 24.686279, -17.350638 ], [ 25.081787, -17.581194 ], [ 25.081787, -17.664960 ], [ 24.521484, -17.884659 ], [ 24.213867, -17.895114 ], [ 23.576660, -18.281518 ], [ 23.203125, -17.874203 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.885010, -21.810508 ], [ 19.896240, -21.851302 ], [ 19.896240, -28.459033 ], [ 19.006348, -28.969701 ], [ 18.468018, -29.046566 ], [ 17.841797, -28.854296 ], [ 17.391357, -28.786918 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.216064, -27.088473 ], [ 14.996338, -26.115986 ], [ 14.743652, -25.393661 ], [ 14.414062, -23.855698 ], [ 14.392090, -22.654572 ], [ 14.260254, -22.116177 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.832031, -19.673626 ], [ 12.612305, -19.051734 ], [ 11.799316, -18.072757 ], [ 11.733398, -17.298199 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.881087 ], [ 12.172852, -14.445319 ], [ 12.502441, -13.549881 ], [ 12.744141, -13.143678 ], [ 13.315430, -12.490214 ], [ 13.634033, -12.039321 ], [ 13.743896, -11.296934 ], [ 13.688965, -10.736175 ], [ 13.392334, -10.379765 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.559294 ], [ 12.733154, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.326660, -6.096860 ], [ 12.183838, -5.790897 ], [ 11.920166, -5.036227 ], [ 11.096191, -3.984821 ], [ 10.063477, -2.975956 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.206543, 0.000000 ], [ 9.294434, 0.274657 ], [ 9.459229, 0.878872 ], [ 43.857422, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 0.878872 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.955766 ], [ 31.871338, -1.032659 ], [ 30.772705, -1.010690 ], [ 30.421143, -1.131518 ], [ 29.827881, -1.450040 ], [ 29.586182, -1.340210 ], [ 29.289551, -1.625758 ], [ 29.256592, -2.218684 ], [ 29.113770, -2.295528 ], [ 29.025879, -2.844290 ], [ 29.278564, -3.294082 ], [ 29.344482, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.244110 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.526701 ], [ 28.454590, -9.167179 ], [ 28.674316, -9.611582 ], [ 28.498535, -10.790141 ], [ 28.377686, -11.792080 ], [ 28.641357, -11.974845 ], [ 29.344482, -12.361466 ], [ 29.619141, -12.178965 ], [ 29.696045, -13.261333 ], [ 28.937988, -13.250640 ], [ 28.520508, -12.704651 ], [ 28.157959, -12.275599 ], [ 27.388916, -12.136005 ], [ 27.169189, -11.609193 ], [ 26.553955, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.422363, -11.329253 ], [ 24.785156, -11.243062 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.917236, -10.930405 ], [ 23.455811, -10.865676 ], [ 22.840576, -11.016689 ], [ 22.401123, -10.995120 ], [ 22.159424, -11.081385 ], [ 22.214355, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.807861, -8.906780 ], [ 21.950684, -8.309341 ], [ 21.752930, -7.917793 ], [ 21.730957, -7.297088 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.948239 ], [ 20.039062, -7.122696 ], [ 19.423828, -7.155400 ], [ 19.171143, -7.743651 ], [ 19.017334, -7.993957 ], [ 18.468018, -7.852499 ], [ 18.138428, -7.993957 ], [ 17.479248, -8.070107 ], [ 16.864014, -7.220800 ], [ 16.578369, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.381348, -5.867403 ], [ 13.029785, -5.987607 ], [ 12.733154, -5.965754 ], [ 12.326660, -6.096860 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.255068 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.784469 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.150391, -4.510714 ], [ 14.205322, -4.795417 ], [ 14.578857, -4.970560 ], [ 15.172119, -4.346411 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.413574, -1.746556 ], [ 16.864014, -1.230374 ], [ 17.523193, -0.747049 ], [ 17.644043, -0.428463 ], [ 17.666016, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.830811, 0.285643 ], [ 17.775879, 0.878872 ], [ 34.453125, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.903809, -0.955766 ], [ 34.068604, -1.065612 ], [ 37.705078, -3.096636 ], [ 37.770996, -3.677892 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.911117 ], [ 38.803711, -6.479067 ], [ 39.440918, -6.839170 ], [ 39.473877, -7.100893 ], [ 39.199219, -7.700105 ], [ 39.254150, -8.004837 ], [ 39.188232, -8.483239 ], [ 39.539795, -9.112945 ], [ 39.946289, -10.098670 ], [ 40.319824, -10.314919 ], [ 39.517822, -10.898042 ], [ 38.430176, -11.286161 ], [ 37.825928, -11.275387 ], [ 37.474365, -11.566144 ], [ 36.771240, -11.598432 ], [ 36.518555, -11.727546 ], [ 35.310059, -11.436955 ], [ 34.562988, -11.523088 ], [ 34.277344, -10.163560 ], [ 33.739014, -9.416548 ], [ 32.761230, -9.232249 ], [ 33.233643, -9.676569 ], [ 33.486328, -10.531020 ], [ 33.321533, -10.800933 ], [ 33.112793, -11.609193 ], [ 33.310547, -12.436577 ], [ 32.991943, -12.790375 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.976715 ], [ 30.179443, -14.796128 ], [ 30.278320, -15.506619 ], [ 29.520264, -15.644197 ], [ 28.948975, -16.045813 ], [ 28.828125, -16.393931 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.048340, -17.936929 ], [ 26.707764, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.268555, -17.738223 ], [ 25.081787, -17.664960 ], [ 25.081787, -17.581194 ], [ 24.686279, -17.350638 ], [ 24.038086, -17.298199 ], [ 23.214111, -17.528821 ], [ 22.565918, -16.899172 ], [ 21.884766, -16.077486 ], [ 21.939697, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.727546 ], [ 24.016113, -11.243062 ], [ 23.917236, -10.930405 ], [ 24.257812, -10.951978 ], [ 24.312744, -11.264612 ], [ 24.785156, -11.243062 ], [ 25.422363, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.553955, -11.921103 ], [ 27.169189, -11.609193 ], [ 27.388916, -12.136005 ], [ 28.157959, -12.275599 ], [ 28.520508, -12.704651 ], [ 28.937988, -13.250640 ], [ 29.696045, -13.261333 ], [ 29.619141, -12.178965 ], [ 29.344482, -12.361466 ], [ 28.641357, -11.974845 ], [ 28.377686, -11.792080 ], [ 28.498535, -10.790141 ], [ 28.674316, -9.611582 ], [ 28.454590, -9.167179 ], [ 28.740234, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.244110 ], [ 30.739746, -8.341953 ], [ 30.201416, -7.079088 ], [ 29.619141, -6.522730 ], [ 29.421387, -5.943900 ], [ 29.520264, -5.419148 ], [ 29.344482, -4.499762 ], [ 29.278564, -3.294082 ], [ 29.025879, -2.844290 ], [ 29.113770, -2.295528 ], [ 29.256592, -2.218684 ], [ 29.289551, -1.625758 ], [ 29.586182, -1.340210 ], [ 29.827881, -1.450040 ], [ 30.421143, -1.131518 ], [ 30.772705, -1.010690 ], [ 31.871338, -1.032659 ], [ 33.903809, -0.955766 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.381348, -5.867403 ], [ 16.325684, -5.878332 ], [ 16.578369, -6.620957 ], [ 16.864014, -7.220800 ], [ 17.479248, -8.070107 ], [ 18.138428, -7.993957 ], [ 18.468018, -7.852499 ], [ 19.017334, -7.993957 ], [ 19.171143, -7.743651 ], [ 19.423828, -7.155400 ], [ 20.039062, -7.122696 ], [ 20.093994, -6.948239 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.730957, -7.297088 ], [ 21.752930, -7.917793 ], [ 21.950684, -8.309341 ], [ 21.807861, -8.906780 ], [ 21.873779, -9.524914 ], [ 22.214355, -9.893099 ], [ 22.159424, -11.081385 ], [ 22.401123, -10.995120 ], [ 22.840576, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.917236, -10.930405 ], [ 24.016113, -11.243062 ], [ 23.906250, -11.727546 ], [ 24.082031, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.939697, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.565918, -16.899172 ], [ 23.214111, -17.528821 ], [ 24.038086, -17.298199 ], [ 24.686279, -17.350638 ], [ 25.081787, -17.581194 ], [ 25.081787, -17.664960 ], [ 24.521484, -17.884659 ], [ 24.213867, -17.895114 ], [ 23.576660, -18.281518 ], [ 23.203125, -17.874203 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.885010, -21.810508 ], [ 19.896240, -21.851302 ], [ 19.896240, -28.459033 ], [ 19.006348, -28.969701 ], [ 18.468018, -29.046566 ], [ 17.841797, -28.854296 ], [ 17.391357, -28.786918 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.216064, -27.088473 ], [ 14.996338, -26.115986 ], [ 14.743652, -25.393661 ], [ 14.414062, -23.855698 ], [ 14.392090, -22.654572 ], [ 14.260254, -22.116177 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.832031, -19.673626 ], [ 12.612305, -19.051734 ], [ 11.799316, -18.072757 ], [ 11.733398, -17.298199 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.881087 ], [ 12.172852, -14.445319 ], [ 12.502441, -13.549881 ], [ 12.744141, -13.143678 ], [ 13.315430, -12.490214 ], [ 13.634033, -12.039321 ], [ 13.743896, -11.296934 ], [ 13.688965, -10.736175 ], [ 13.392334, -10.379765 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.559294 ], [ 12.733154, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.326660, -6.096860 ], [ 12.733154, -5.965754 ], [ 13.029785, -5.987607 ], [ 13.381348, -5.867403 ] ] ], [ [ [ 17.775879, 0.878872 ], [ 17.830811, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.054932 ], [ 17.644043, -0.428463 ], [ 17.523193, -0.747049 ], [ 16.864014, -1.230374 ], [ 16.413574, -1.746556 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.853293 ], [ 15.172119, -4.346411 ], [ 14.578857, -4.970560 ], [ 14.205322, -4.795417 ], [ 14.150391, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.260498, -4.882994 ], [ 12.996826, -4.784469 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.255068 ], [ 12.436523, -5.681584 ], [ 12.183838, -5.790897 ], [ 11.920166, -5.036227 ], [ 11.096191, -3.984821 ], [ 10.063477, -2.975956 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.206543, 0.000000 ], [ 9.294434, 0.274657 ], [ 9.459229, 0.878872 ], [ 17.775879, 0.878872 ] ] ], [ [ [ 43.857422, 0.878872 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.044678, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.583252, -1.680667 ], [ 40.891113, -2.086941 ], [ 40.638428, -2.504085 ], [ 40.264893, -2.569939 ], [ 40.122070, -3.283114 ], [ 39.803467, -3.677892 ], [ 39.605713, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.770996, -3.677892 ], [ 37.705078, -3.096636 ], [ 34.068604, -1.065612 ], [ 33.903809, -0.955766 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.453125, 0.878872 ], [ 43.857422, 0.878872 ] ] ], [ [ [ 30.421143, -1.131518 ], [ 30.816650, -1.702630 ], [ 30.761719, -2.284551 ], [ 30.476074, -2.416276 ], [ 30.531006, -2.811371 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.359889 ], [ 30.509033, -3.568248 ], [ 30.113525, -4.094411 ], [ 29.750977, -4.455951 ], [ 29.344482, -4.499762 ], [ 29.278564, -3.294082 ], [ 29.025879, -2.844290 ], [ 29.113770, -2.295528 ], [ 29.256592, -2.218684 ], [ 29.289551, -1.625758 ], [ 29.586182, -1.340210 ], [ 29.827881, -1.450040 ], [ 30.421143, -1.131518 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.163560 ], [ 34.562988, -11.523088 ], [ 35.310059, -11.436955 ], [ 36.518555, -11.727546 ], [ 36.771240, -11.598432 ], [ 37.474365, -11.566144 ], [ 37.825928, -11.275387 ], [ 38.430176, -11.286161 ], [ 39.517822, -10.898042 ], [ 40.319824, -10.314919 ], [ 40.484619, -10.768556 ], [ 40.440674, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.605469, -14.200488 ], [ 40.781250, -14.689881 ], [ 40.473633, -15.411319 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.591667 ], [ 36.287842, -18.656654 ], [ 35.903320, -18.843913 ], [ 35.200195, -19.549437 ], [ 34.782715, -19.787380 ], [ 34.705811, -20.499064 ], [ 35.178223, -21.258661 ], [ 35.375977, -21.841105 ], [ 35.386963, -22.136532 ], [ 35.562744, -22.095820 ], [ 35.540771, -23.069624 ], [ 35.375977, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.463867, -24.126702 ], [ 35.046387, -24.477150 ], [ 34.222412, -24.816654 ], [ 33.013916, -25.353955 ], [ 32.574463, -25.730633 ], [ 32.662354, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.745610 ], [ 32.069092, -26.735799 ], [ 31.992188, -26.293415 ], [ 31.838379, -25.849337 ], [ 31.750488, -25.482951 ], [ 31.937256, -24.367114 ], [ 31.190186, -22.248429 ], [ 30.662842, -22.156883 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.105999 ], [ 29.432373, -22.095820 ], [ 28.015137, -22.826820 ], [ 27.125244, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.488037, -24.617057 ], [ 25.938721, -24.696934 ], [ 25.664062, -25.492868 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.730469, -25.393661 ], [ 23.312988, -25.274504 ], [ 22.829590, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.283565 ], [ 21.610107, -26.725987 ], [ 20.895996, -26.833875 ], [ 20.665283, -26.480407 ], [ 20.764160, -25.869109 ], [ 20.170898, -24.916331 ], [ 19.896240, -24.766785 ], [ 19.896240, -21.851302 ], [ 20.885010, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.203125, -17.874203 ], [ 23.576660, -18.281518 ], [ 24.213867, -17.895114 ], [ 24.521484, -17.884659 ], [ 25.081787, -17.664960 ], [ 25.268555, -17.738223 ], [ 26.378174, -17.842833 ], [ 26.707764, -17.957832 ], [ 27.048340, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.828125, -16.393931 ], [ 28.948975, -16.045813 ], [ 29.520264, -15.644197 ], [ 30.278320, -15.506619 ], [ 30.179443, -14.796128 ], [ 33.211670, -13.976715 ], [ 32.684326, -13.710035 ], [ 32.991943, -12.790375 ], [ 33.310547, -12.436577 ], [ 33.112793, -11.609193 ], [ 33.321533, -10.800933 ], [ 33.486328, -10.531020 ], [ 33.233643, -9.676569 ], [ 32.761230, -9.232249 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.903809, -0.955766 ], [ 34.068604, -1.065612 ], [ 37.705078, -3.096636 ], [ 37.770996, -3.677892 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.911117 ], [ 38.803711, -6.479067 ], [ 39.440918, -6.839170 ], [ 39.473877, -7.100893 ], [ 39.199219, -7.700105 ], [ 39.254150, -8.004837 ], [ 39.188232, -8.483239 ], [ 39.539795, -9.112945 ], [ 39.946289, -10.098670 ], [ 40.319824, -10.314919 ], [ 39.517822, -10.898042 ], [ 38.430176, -11.286161 ], [ 37.825928, -11.275387 ], [ 37.474365, -11.566144 ], [ 36.771240, -11.598432 ], [ 36.518555, -11.727546 ], [ 35.310059, -11.436955 ], [ 34.562988, -11.523088 ], [ 34.277344, -10.163560 ], [ 33.739014, -9.416548 ], [ 32.761230, -9.232249 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.765653 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.341953 ], [ 30.201416, -7.079088 ], [ 29.619141, -6.522730 ], [ 29.421387, -5.943900 ], [ 29.520264, -5.419148 ], [ 29.344482, -4.499762 ], [ 29.750977, -4.455951 ], [ 30.113525, -4.094411 ], [ 30.509033, -3.568248 ], [ 30.750732, -3.359889 ], [ 30.739746, -3.030812 ], [ 30.531006, -2.811371 ], [ 30.476074, -2.416276 ], [ 30.761719, -2.284551 ], [ 30.816650, -1.702630 ], [ 30.421143, -1.131518 ], [ 30.772705, -1.010690 ], [ 31.871338, -1.032659 ], [ 33.903809, -0.955766 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.432373, -22.095820 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.268764 ], [ 30.662842, -22.156883 ], [ 31.190186, -22.248429 ], [ 31.937256, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.849337 ], [ 31.992188, -26.293415 ], [ 32.069092, -26.735799 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.464600, -28.304381 ], [ 32.200928, -28.758028 ], [ 31.322021, -29.401320 ], [ 30.904541, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.058594, -31.137603 ], [ 28.927002, -32.175612 ], [ 28.223877, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.422119, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.784912, -33.943360 ], [ 25.169678, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.598633, -33.797409 ], [ 22.994385, -33.916013 ], [ 22.576904, -33.861293 ], [ 21.544189, -34.261757 ], [ 20.687256, -34.415973 ], [ 20.072021, -34.795762 ], [ 19.621582, -34.822823 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.998027 ], [ 18.380127, -34.134542 ], [ 18.248291, -33.870416 ], [ 18.248291, -33.284620 ], [ 17.929688, -32.611616 ], [ 18.248291, -32.426340 ], [ 18.226318, -31.662733 ], [ 17.567139, -30.722949 ], [ 17.061768, -29.878755 ], [ 16.347656, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.391357, -28.786918 ], [ 17.841797, -28.854296 ], [ 18.468018, -29.046566 ], [ 19.006348, -28.969701 ], [ 19.896240, -28.459033 ], [ 19.896240, -24.766785 ], [ 20.170898, -24.916331 ], [ 20.764160, -25.869109 ], [ 20.665283, -26.480407 ], [ 20.895996, -26.833875 ], [ 21.610107, -26.725987 ], [ 22.104492, -26.283565 ], [ 22.576904, -25.977799 ], [ 22.829590, -25.502785 ], [ 23.312988, -25.274504 ], [ 23.730469, -25.393661 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.492868 ], [ 25.938721, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.784668, -24.236947 ], [ 27.125244, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.432373, -22.095820 ] ] ], [ [ [ 45.878906, -15.792254 ], [ 45.878906, -25.373809 ], [ 45.406494, -25.601902 ], [ 45.000000, -25.423431 ], [ 44.044189, -24.986058 ], [ 43.769531, -24.457151 ], [ 43.703613, -23.574057 ], [ 43.352051, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.439941, -21.340548 ], [ 43.890381, -21.166484 ], [ 43.901367, -20.828010 ], [ 44.373779, -20.076570 ], [ 44.461670, -19.435514 ], [ 44.230957, -18.958246 ], [ 44.044189, -18.333669 ], [ 43.967285, -17.413546 ], [ 44.318848, -16.846605 ], [ 44.450684, -16.214675 ], [ 44.945068, -16.183024 ], [ 45.000000, -16.161921 ], [ 45.505371, -15.971892 ], [ 45.878906, -15.792254 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 30.344238, -8.244110 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.765653 ], [ 32.189941, -8.928487 ], [ 32.761230, -9.232249 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.163560 ], [ 34.562988, -11.523088 ], [ 35.310059, -11.436955 ], [ 36.518555, -11.727546 ], [ 36.771240, -11.598432 ], [ 37.474365, -11.566144 ], [ 37.825928, -11.275387 ], [ 38.430176, -11.286161 ], [ 39.517822, -10.898042 ], [ 40.319824, -10.314919 ], [ 40.484619, -10.768556 ], [ 40.440674, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.605469, -14.200488 ], [ 40.781250, -14.689881 ], [ 40.473633, -15.411319 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.591667 ], [ 36.287842, -18.656654 ], [ 35.903320, -18.843913 ], [ 35.200195, -19.549437 ], [ 34.782715, -19.787380 ], [ 34.705811, -20.499064 ], [ 35.178223, -21.258661 ], [ 35.375977, -21.841105 ], [ 35.386963, -22.136532 ], [ 35.562744, -22.095820 ], [ 35.540771, -23.069624 ], [ 35.375977, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.463867, -24.126702 ], [ 35.046387, -24.477150 ], [ 34.222412, -24.816654 ], [ 33.013916, -25.353955 ], [ 32.574463, -25.730633 ], [ 32.662354, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.464600, -28.304381 ], [ 32.200928, -28.758028 ], [ 31.322021, -29.401320 ], [ 30.904541, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.058594, -31.137603 ], [ 28.927002, -32.175612 ], [ 28.223877, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.422119, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.784912, -33.943360 ], [ 25.169678, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.598633, -33.797409 ], [ 22.994385, -33.916013 ], [ 22.576904, -33.861293 ], [ 21.544189, -34.261757 ], [ 20.687256, -34.415973 ], [ 20.072021, -34.795762 ], [ 19.621582, -34.822823 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.998027 ], [ 18.380127, -34.134542 ], [ 18.248291, -33.870416 ], [ 18.248291, -33.284620 ], [ 17.929688, -32.611616 ], [ 18.248291, -32.426340 ], [ 18.226318, -31.662733 ], [ 17.567139, -30.722949 ], [ 17.061768, -29.878755 ], [ 16.347656, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.391357, -28.786918 ], [ 17.841797, -28.854296 ], [ 18.468018, -29.046566 ], [ 19.006348, -28.969701 ], [ 19.896240, -28.459033 ], [ 19.896240, -21.851302 ], [ 20.885010, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.203125, -17.874203 ], [ 23.576660, -18.281518 ], [ 24.213867, -17.895114 ], [ 24.521484, -17.884659 ], [ 25.081787, -17.664960 ], [ 25.081787, -17.581194 ], [ 24.686279, -17.350638 ], [ 24.038086, -17.298199 ], [ 23.214111, -17.528821 ], [ 22.565918, -16.899172 ], [ 21.884766, -16.077486 ], [ 21.939697, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.727546 ], [ 24.016113, -11.243062 ], [ 23.917236, -10.930405 ], [ 24.257812, -10.951978 ], [ 24.312744, -11.264612 ], [ 24.785156, -11.243062 ], [ 25.422363, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.553955, -11.921103 ], [ 27.169189, -11.609193 ], [ 27.388916, -12.136005 ], [ 28.157959, -12.275599 ], [ 28.520508, -12.704651 ], [ 28.937988, -13.250640 ], [ 29.696045, -13.261333 ], [ 29.619141, -12.178965 ], [ 29.344482, -12.361466 ], [ 28.641357, -11.974845 ], [ 28.377686, -11.792080 ], [ 28.498535, -10.790141 ], [ 28.674316, -9.611582 ], [ 28.454590, -9.167179 ], [ 28.740234, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.244110 ] ] ], [ [ [ 45.878906, -15.792254 ], [ 45.878906, -25.373809 ], [ 45.406494, -25.601902 ], [ 45.000000, -25.423431 ], [ 44.044189, -24.986058 ], [ 43.769531, -24.457151 ], [ 43.703613, -23.574057 ], [ 43.352051, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.439941, -21.340548 ], [ 43.890381, -21.166484 ], [ 43.901367, -20.828010 ], [ 44.373779, -20.076570 ], [ 44.461670, -19.435514 ], [ 44.230957, -18.958246 ], [ 44.044189, -18.333669 ], [ 43.967285, -17.413546 ], [ 44.318848, -16.846605 ], [ 44.450684, -16.214675 ], [ 44.945068, -16.183024 ], [ 45.000000, -16.161921 ], [ 45.505371, -15.971892 ], [ 45.878906, -15.792254 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.878906, 22.360236 ], [ 0.000000, 21.790107 ], [ 1.823730, 20.612220 ], [ 2.065430, 20.138470 ], [ 2.680664, 19.859727 ], [ 3.153076, 19.694314 ], [ 3.164062, 19.051734 ], [ 4.273682, 19.155547 ], [ 4.273682, 16.846605 ], [ 3.724365, 16.183024 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.021729, 14.966013 ], [ 0.373535, 14.923554 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.999756, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.618897 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.450195, 11.544616 ], [ 1.241455, 11.113727 ], [ 0.900879, 10.995120 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.649811 ], [ 0.373535, 10.185187 ], [ 0.362549, 9.459899 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.406048 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.065674, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.342583 ], [ -0.878906, 5.112830 ], [ -0.878906, 22.360236 ] ] ], [ [ [ 16.029053, 41.640078 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.871988 ], [ 18.380127, 40.354917 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.808536 ], [ 17.742920, 40.279526 ], [ 16.875000, 40.438586 ], [ 16.446533, 39.791655 ], [ 17.171631, 39.427707 ], [ 17.050781, 38.899583 ], [ 16.633301, 38.839708 ], [ 16.105957, 37.987504 ], [ 15.688477, 37.909534 ], [ 15.688477, 38.212288 ], [ 15.897217, 38.754083 ], [ 16.105957, 38.959409 ], [ 15.721436, 39.546412 ], [ 15.413818, 40.044438 ], [ 14.996338, 40.170479 ], [ 14.699707, 40.605612 ], [ 14.062500, 40.788860 ], [ 13.853760, 40.979898 ], [ 13.634033, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.216797, 41.640078 ], [ 16.029053, 41.640078 ] ] ], [ [ [ 15.523682, 38.229550 ], [ 15.161133, 37.439974 ], [ 15.314941, 37.134045 ], [ 15.106201, 36.615528 ], [ 14.337158, 36.993778 ], [ 13.831787, 37.107765 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.125915 ], [ 13.743896, 38.030786 ], [ 15.523682, 38.229550 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.667969, 39.172659 ], [ 9.217529, 39.240763 ], [ 8.811035, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.393555, 40.380028 ], [ 8.162842, 40.946714 ], [ 8.712158, 40.896906 ], [ 8.843994, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 26.114502, 41.640078 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.236511 ], [ 24.488525, 41.582580 ], [ 23.697510, 41.310824 ], [ 22.950439, 41.335576 ], [ 22.763672, 41.302571 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.153842 ], [ 21.752930, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.016846, 40.838749 ], [ 20.786133, 40.979898 ], [ 20.610352, 41.087632 ], [ 20.467529, 41.516804 ], [ 20.511475, 41.640078 ], [ 26.114502, 41.640078 ] ] ], [ [ [ 9.338379, 41.640078 ], [ 9.228516, 41.385052 ], [ 8.778076, 41.582580 ], [ 8.756104, 41.640078 ], [ 9.338379, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.373535, 14.923554 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.999756, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.618897 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.450195, 11.544616 ], [ 1.241455, 11.113727 ], [ 0.900879, 10.995120 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.092166 ], [ -0.758057, 10.930405 ], [ -0.878906, 10.951978 ], [ -0.878906, 15.019075 ], [ -0.516357, 15.114553 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.514160, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.184326, 36.721274 ], [ 11.030273, 37.090240 ], [ 11.096191, 36.897194 ], [ 10.601807, 36.412442 ], [ 10.590820, 35.942436 ], [ 10.942383, 35.701917 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.325292 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.491699, 33.137551 ], [ 11.436768, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.756196 ], [ 9.953613, 31.372399 ], [ 10.052490, 30.958769 ], [ 9.975586, 30.533877 ], [ 9.481201, 30.306503 ], [ 9.810791, 29.420460 ], [ 9.865723, 28.960089 ], [ 9.689941, 28.139816 ], [ 9.755859, 27.683528 ], [ 9.635010, 27.137368 ], [ 9.722900, 26.509905 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.363882 ], [ 9.953613, 24.936257 ], [ 10.305176, 24.377121 ], [ 10.777588, 24.557116 ], [ 11.557617, 24.096619 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.565502 ], [ 5.679932, 19.601194 ], [ 4.273682, 19.155547 ], [ 3.164062, 19.051734 ], [ 3.153076, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.065430, 20.138470 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.790107 ], [ -0.878906, 22.360236 ], [ -0.878906, 35.764343 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.969115 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.606709 ], [ 3.164062, 36.782892 ], [ 4.812012, 36.862043 ], [ 5.317383, 36.712467 ], [ 6.262207, 37.107765 ], [ 7.327881, 37.116526 ], [ 7.734375, 36.888408 ], [ 8.426514, 36.941111 ], [ 9.514160, 37.352693 ] ] ], [ [ [ 2.680664, 41.640078 ], [ 2.098389, 41.228249 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.120090 ], [ 0.000000, 39.901309 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.472412, 38.289937 ], [ -0.681152, 37.640335 ], [ -0.878906, 37.588119 ], [ -0.878906, 41.640078 ], [ 2.680664, 41.640078 ] ] ], [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 44.978027, 41.253032 ], [ 43.582764, 41.095912 ], [ 42.615967, 41.582580 ], [ 41.550293, 41.533254 ], [ 41.594238, 41.640078 ], [ 45.878906, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.649811 ], [ 0.373535, 10.185187 ], [ 0.362549, 9.459899 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.406048 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.065674, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.342583 ], [ -0.878906, 5.112830 ], [ -0.878906, 10.951978 ], [ -0.758057, 10.930405 ], [ -0.439453, 11.092166 ] ] ], [ [ [ -0.878906, 22.360236 ], [ 0.000000, 21.790107 ], [ 1.823730, 20.612220 ], [ 2.065430, 20.138470 ], [ 2.680664, 19.859727 ], [ 3.153076, 19.694314 ], [ 3.164062, 19.051734 ], [ 4.273682, 19.155547 ], [ 4.273682, 16.846605 ], [ 3.724365, 16.183024 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.021729, 14.966013 ], [ 0.373535, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -0.878906, 15.019075 ], [ -0.878906, 22.360236 ] ] ], [ [ [ 16.029053, 41.640078 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.871988 ], [ 18.380127, 40.354917 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.808536 ], [ 17.742920, 40.279526 ], [ 16.875000, 40.438586 ], [ 16.446533, 39.791655 ], [ 17.171631, 39.427707 ], [ 17.050781, 38.899583 ], [ 16.633301, 38.839708 ], [ 16.105957, 37.987504 ], [ 15.688477, 37.909534 ], [ 15.688477, 38.212288 ], [ 15.897217, 38.754083 ], [ 16.105957, 38.959409 ], [ 15.721436, 39.546412 ], [ 15.413818, 40.044438 ], [ 14.996338, 40.170479 ], [ 14.699707, 40.605612 ], [ 14.062500, 40.788860 ], [ 13.853760, 40.979898 ], [ 13.634033, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.216797, 41.640078 ], [ 16.029053, 41.640078 ] ] ], [ [ [ 15.523682, 38.229550 ], [ 15.161133, 37.439974 ], [ 15.314941, 37.134045 ], [ 15.106201, 36.615528 ], [ 14.337158, 36.993778 ], [ 13.831787, 37.107765 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.125915 ], [ 13.743896, 38.030786 ], [ 15.523682, 38.229550 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.667969, 39.172659 ], [ 9.217529, 39.240763 ], [ 8.811035, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.393555, 40.380028 ], [ 8.162842, 40.946714 ], [ 8.712158, 40.896906 ], [ 8.843994, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 22.917480, 41.640078 ], [ 22.950439, 41.335576 ], [ 22.763672, 41.302571 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.153842 ], [ 21.752930, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.016846, 40.838749 ], [ 20.786133, 40.979898 ], [ 20.610352, 41.087632 ], [ 20.467529, 41.516804 ], [ 20.511475, 41.640078 ], [ 22.917480, 41.640078 ] ] ], [ [ [ 9.338379, 41.640078 ], [ 9.228516, 41.385052 ], [ 8.778076, 41.582580 ], [ 8.756104, 41.640078 ], [ 9.338379, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.491699, 33.137551 ], [ 12.667236, 32.787275 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.713355 ], [ 15.249023, 32.268555 ], [ 15.710449, 31.372399 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.760719 ], [ 19.083252, 30.268556 ], [ 19.577637, 30.524413 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.746854 ], [ 20.137939, 32.240683 ], [ 20.852051, 32.704111 ], [ 21.544189, 32.842674 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.609619, 32.184911 ], [ 23.928223, 32.017392 ], [ 24.927979, 31.896214 ], [ 25.169678, 31.569175 ], [ 24.807129, 31.090574 ], [ 24.960938, 30.656816 ], [ 24.697266, 30.040566 ], [ 25.004883, 29.238477 ], [ 25.004883, 20.004322 ], [ 23.851318, 19.993998 ], [ 23.840332, 19.580493 ], [ 19.852295, 21.493964 ], [ 15.864258, 23.412847 ], [ 14.853516, 22.857195 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.043491 ], [ 15.490723, 20.725291 ], [ 15.908203, 20.385825 ], [ 15.688477, 19.952696 ], [ 15.303955, 17.926476 ], [ 15.249023, 16.625665 ], [ 13.974609, 15.686510 ], [ 13.546143, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.346865 ], [ 14.600830, 13.325485 ], [ 14.501953, 12.854649 ], [ 14.216309, 12.801088 ], [ 14.183350, 12.479487 ], [ 13.996582, 12.458033 ], [ 13.315430, 13.549881 ], [ 13.084717, 13.592600 ], [ 12.304688, 13.036669 ], [ 11.524658, 13.325485 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.118408, 13.272026 ], [ 9.525146, 12.854649 ], [ 9.019775, 12.822514 ], [ 7.811279, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.822510, 13.111580 ], [ 6.448975, 13.496473 ], [ 5.449219, 13.859414 ], [ 4.372559, 13.742053 ], [ 4.108887, 13.528519 ], [ 3.966064, 12.951029 ], [ 3.680420, 12.554564 ], [ 3.614502, 11.662996 ], [ 2.845459, 12.232655 ], [ 2.493896, 12.232655 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.618897 ], [ 1.021729, 12.854649 ], [ 0.999756, 13.336175 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.923554 ], [ 1.021729, 14.966013 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.724365, 16.183024 ], [ 4.273682, 16.846605 ], [ 4.273682, 19.155547 ], [ 5.679932, 19.601194 ], [ 8.569336, 21.565502 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.096619 ], [ 10.777588, 24.557116 ], [ 10.305176, 24.377121 ], [ 9.953613, 24.936257 ], [ 9.909668, 25.363882 ], [ 9.316406, 26.096255 ], [ 9.722900, 26.509905 ], [ 9.635010, 27.137368 ], [ 9.755859, 27.683528 ], [ 9.689941, 28.139816 ], [ 9.865723, 28.960089 ], [ 9.810791, 29.420460 ], [ 9.481201, 30.306503 ], [ 9.975586, 30.533877 ], [ 10.052490, 30.958769 ], [ 9.953613, 31.372399 ], [ 10.634766, 31.756196 ], [ 10.942383, 32.082575 ], [ 11.436768, 32.370683 ], [ 11.491699, 33.137551 ] ] ], [ [ [ 26.455078, 41.640078 ], [ 26.608887, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.301270, 40.938415 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.411621, 40.120090 ], [ 23.906250, 39.960280 ], [ 23.345947, 39.960280 ], [ 22.818604, 40.472024 ], [ 22.631836, 40.254377 ], [ 22.851562, 39.656456 ], [ 23.345947, 39.189691 ], [ 22.972412, 38.967951 ], [ 23.532715, 38.505191 ], [ 24.027100, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.405074 ], [ 22.774658, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.489014, 36.412442 ], [ 21.676025, 36.844461 ], [ 21.291504, 37.640335 ], [ 21.126709, 38.307181 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.622615 ], [ 19.984131, 39.690281 ], [ 19.962158, 39.918163 ], [ 19.412842, 40.245992 ], [ 19.324951, 40.722283 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 20.511475, 41.640078 ], [ 20.467529, 41.516804 ], [ 20.610352, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.752930, 40.979898 ], [ 22.060547, 41.153842 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.640078 ], [ 26.455078, 41.640078 ] ] ], [ [ [ 23.697510, 35.701917 ], [ 24.246826, 35.371135 ], [ 25.026855, 35.424868 ], [ 25.773926, 35.353216 ], [ 25.740967, 35.182788 ], [ 26.290283, 35.299435 ], [ 26.169434, 35.003003 ], [ 24.730225, 34.921971 ], [ 24.741211, 35.083956 ], [ 23.521729, 35.281501 ], [ 23.697510, 35.701917 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.514160, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.184326, 36.721274 ], [ 11.030273, 37.090240 ], [ 11.096191, 36.897194 ], [ 10.601807, 36.412442 ], [ 10.590820, 35.942436 ], [ 10.942383, 35.701917 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.325292 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.491699, 33.137551 ], [ 11.436768, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.756196 ], [ 9.953613, 31.372399 ], [ 10.052490, 30.958769 ], [ 9.975586, 30.533877 ], [ 9.481201, 30.306503 ], [ 9.810791, 29.420460 ], [ 9.865723, 28.960089 ], [ 9.689941, 28.139816 ], [ 9.755859, 27.683528 ], [ 9.635010, 27.137368 ], [ 9.722900, 26.509905 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.363882 ], [ 9.953613, 24.936257 ], [ 10.305176, 24.377121 ], [ 10.777588, 24.557116 ], [ 11.557617, 24.096619 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.565502 ], [ 5.679932, 19.601194 ], [ 4.273682, 19.155547 ], [ 3.164062, 19.051734 ], [ 3.153076, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.065430, 20.138470 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.790107 ], [ -0.878906, 22.360236 ], [ -0.878906, 35.764343 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.969115 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.606709 ], [ 3.164062, 36.782892 ], [ 4.812012, 36.862043 ], [ 5.317383, 36.712467 ], [ 6.262207, 37.107765 ], [ 7.327881, 37.116526 ], [ 7.734375, 36.888408 ], [ 8.426514, 36.941111 ], [ 9.514160, 37.352693 ] ] ], [ [ [ 2.680664, 41.640078 ], [ 2.098389, 41.228249 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.120090 ], [ 0.000000, 39.901309 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.472412, 38.289937 ], [ -0.681152, 37.640335 ], [ -0.878906, 37.588119 ], [ -0.878906, 41.640078 ], [ 2.680664, 41.640078 ] ] ], [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 44.978027, 41.253032 ], [ 43.582764, 41.095912 ], [ 42.615967, 41.582580 ], [ 41.550293, 41.533254 ], [ 41.594238, 41.640078 ], [ 45.878906, 41.640078 ] ] ], [ [ [ 26.114502, 41.640078 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.236511 ], [ 24.488525, 41.582580 ], [ 23.697510, 41.310824 ], [ 22.950439, 41.335576 ], [ 22.917480, 41.640078 ], [ 26.114502, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.449219, 13.859414 ], [ 6.448975, 13.496473 ], [ 6.822510, 13.111580 ], [ 7.327881, 13.100880 ], [ 7.811279, 13.346865 ], [ 9.019775, 12.822514 ], [ 9.525146, 12.854649 ], [ 10.118408, 13.272026 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.325485 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.592600 ], [ 13.315430, 13.549881 ], [ 13.996582, 12.458033 ], [ 14.183350, 12.479487 ], [ 14.216309, 12.801088 ], [ 14.501953, 12.854649 ], [ 14.897461, 12.221918 ], [ 14.963379, 11.555380 ], [ 14.930420, 10.887254 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.633789, 9.914744 ], [ 14.172363, 10.022948 ], [ 13.952637, 9.546583 ], [ 14.545898, 8.961045 ], [ 14.985352, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.689217 ], [ 15.281982, 7.416942 ], [ 14.776611, 6.402648 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.025283 ], [ 14.479980, 4.729727 ], [ 14.952393, 4.203986 ], [ 15.040283, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.008870 ], [ 15.908203, 2.558963 ], [ 16.018066, 2.262595 ], [ 15.941162, 1.724593 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.262595 ], [ 12.952881, 2.317483 ], [ 12.359619, 2.196727 ], [ 11.755371, 2.328460 ], [ 11.282959, 2.262595 ], [ 11.282959, 1.054628 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.953857, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.492432, 4.488809 ], [ 8.503418, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.086182, 4.466904 ], [ 6.701660, 4.236856 ], [ 5.899658, 4.258768 ], [ 5.361328, 4.882994 ], [ 5.031738, 5.605052 ], [ 4.328613, 6.271618 ], [ 2.691650, 6.260697 ], [ 1.867676, 6.140555 ], [ 1.065674, 5.922045 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.406048 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.678779 ], [ 0.362549, 9.459899 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ], [ 0.900879, 10.995120 ], [ 1.241455, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.493896, 12.232655 ], [ 2.845459, 12.232655 ], [ 3.614502, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.951029 ], [ 4.108887, 13.528519 ], [ 4.372559, 13.742053 ], [ 5.449219, 13.859414 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.511475, 41.640078 ], [ 20.467529, 41.516804 ], [ 20.610352, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.838749 ], [ 21.005859, 40.580585 ], [ 20.676270, 40.430224 ], [ 20.621338, 40.111689 ], [ 20.148926, 39.622615 ], [ 19.984131, 39.690281 ], [ 19.962158, 39.918163 ], [ 19.412842, 40.245992 ], [ 19.324951, 40.722283 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 20.511475, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.864258, 23.412847 ], [ 19.852295, 21.493964 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.027344, 15.675932 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.784737 ], [ 22.302246, 13.368243 ], [ 22.038574, 12.951029 ], [ 21.939697, 12.586732 ], [ 22.291260, 12.640338 ], [ 22.500000, 12.254128 ], [ 22.510986, 11.673755 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.146066 ], [ 22.236328, 10.973550 ], [ 21.719971, 10.563422 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.069551 ], [ 18.808594, 8.982749 ], [ 18.907471, 8.624472 ], [ 18.391113, 8.276727 ], [ 17.962646, 7.885147 ], [ 16.710205, 7.504089 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.281982, 7.416942 ], [ 15.435791, 7.689217 ], [ 15.117188, 8.385431 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.961045 ], [ 13.952637, 9.546583 ], [ 14.172363, 10.022948 ], [ 14.633789, 9.914744 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.930420, 10.887254 ], [ 14.963379, 11.555380 ], [ 14.897461, 12.221918 ], [ 14.501953, 12.854649 ], [ 14.600830, 13.325485 ], [ 13.952637, 13.346865 ], [ 13.952637, 13.998037 ], [ 13.546143, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.303955, 17.926476 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.725291 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.857195 ], [ 15.864258, 23.412847 ] ] ], [ [ [ 34.573975, 35.666222 ], [ 33.903809, 35.245619 ], [ 34.002686, 34.976002 ], [ 32.980957, 34.569906 ], [ 32.486572, 34.696461 ], [ 32.255859, 35.101934 ], [ 32.728271, 35.137879 ], [ 32.805176, 35.146863 ], [ 32.947998, 35.389050 ], [ 33.673096, 35.371135 ], [ 34.573975, 35.666222 ] ] ], [ [ [ 36.002197, 34.642247 ], [ 36.452637, 34.597042 ], [ 36.617432, 34.198173 ], [ 36.068115, 33.824794 ], [ 35.826416, 33.275435 ], [ 35.551758, 33.266250 ], [ 35.463867, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.485840, 33.906896 ], [ 36.002197, 34.642247 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.491699, 33.137551 ], [ 12.667236, 32.787275 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.713355 ], [ 15.249023, 32.268555 ], [ 15.710449, 31.372399 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.760719 ], [ 19.083252, 30.268556 ], [ 19.577637, 30.524413 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.746854 ], [ 20.137939, 32.240683 ], [ 20.852051, 32.704111 ], [ 21.544189, 32.842674 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.609619, 32.184911 ], [ 23.928223, 32.017392 ], [ 24.927979, 31.896214 ], [ 25.169678, 31.569175 ], [ 24.807129, 31.090574 ], [ 24.960938, 30.656816 ], [ 24.697266, 30.040566 ], [ 25.004883, 29.238477 ], [ 25.004883, 20.004322 ], [ 23.851318, 19.993998 ], [ 23.840332, 19.580493 ], [ 19.852295, 21.493964 ], [ 15.864258, 23.412847 ], [ 14.853516, 22.857195 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.043491 ], [ 15.490723, 20.725291 ], [ 15.908203, 20.385825 ], [ 15.688477, 19.952696 ], [ 15.303955, 17.926476 ], [ 15.249023, 16.625665 ], [ 13.974609, 15.686510 ], [ 13.546143, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.346865 ], [ 14.600830, 13.325485 ], [ 14.501953, 12.854649 ], [ 14.216309, 12.801088 ], [ 14.183350, 12.479487 ], [ 13.996582, 12.458033 ], [ 13.315430, 13.549881 ], [ 13.084717, 13.592600 ], [ 12.304688, 13.036669 ], [ 11.524658, 13.325485 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.118408, 13.272026 ], [ 9.525146, 12.854649 ], [ 9.019775, 12.822514 ], [ 7.811279, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.822510, 13.111580 ], [ 6.448975, 13.496473 ], [ 5.449219, 13.859414 ], [ 4.372559, 13.742053 ], [ 4.108887, 13.528519 ], [ 3.966064, 12.951029 ], [ 3.680420, 12.554564 ], [ 3.570557, 11.329253 ], [ 3.801270, 10.736175 ], [ 3.603516, 10.325728 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.438224 ], [ 2.911377, 9.134639 ], [ 2.724609, 8.504970 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.867676, 6.140555 ], [ 1.614990, 6.828261 ], [ 1.669922, 9.123792 ], [ 1.461182, 9.329831 ], [ 1.428223, 9.828154 ], [ 0.769043, 10.466206 ], [ 0.900879, 10.995120 ], [ 1.241455, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.618897 ], [ 1.021729, 12.854649 ], [ 0.999756, 13.336175 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.923554 ], [ 1.021729, 14.966013 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.724365, 16.183024 ], [ 4.273682, 16.846605 ], [ 4.273682, 19.155547 ], [ 5.679932, 19.601194 ], [ 8.569336, 21.565502 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.096619 ], [ 10.777588, 24.557116 ], [ 10.305176, 24.377121 ], [ 9.953613, 24.936257 ], [ 9.909668, 25.363882 ], [ 9.316406, 26.096255 ], [ 9.722900, 26.509905 ], [ 9.635010, 27.137368 ], [ 9.755859, 27.683528 ], [ 9.689941, 28.139816 ], [ 9.865723, 28.960089 ], [ 9.810791, 29.420460 ], [ 9.481201, 30.306503 ], [ 9.975586, 30.533877 ], [ 10.052490, 30.958769 ], [ 9.953613, 31.372399 ], [ 10.634766, 31.756196 ], [ 10.942383, 32.082575 ], [ 11.436768, 32.370683 ], [ 11.491699, 33.137551 ] ] ], [ [ [ 26.455078, 41.640078 ], [ 26.608887, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.301270, 40.938415 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.411621, 40.120090 ], [ 23.906250, 39.960280 ], [ 23.345947, 39.960280 ], [ 22.818604, 40.472024 ], [ 22.631836, 40.254377 ], [ 22.851562, 39.656456 ], [ 23.345947, 39.189691 ], [ 22.972412, 38.967951 ], [ 23.532715, 38.505191 ], [ 24.027100, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.405074 ], [ 22.774658, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.489014, 36.412442 ], [ 21.676025, 36.844461 ], [ 21.291504, 37.640335 ], [ 21.126709, 38.307181 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.622615 ], [ 20.621338, 40.111689 ], [ 20.676270, 40.430224 ], [ 21.005859, 40.580585 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.752930, 40.979898 ], [ 22.060547, 41.153842 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.640078 ], [ 26.455078, 41.640078 ] ] ], [ [ [ 23.697510, 35.701917 ], [ 24.246826, 35.371135 ], [ 25.026855, 35.424868 ], [ 25.773926, 35.353216 ], [ 25.740967, 35.182788 ], [ 26.290283, 35.299435 ], [ 26.169434, 35.003003 ], [ 24.730225, 34.921971 ], [ 24.741211, 35.083956 ], [ 23.521729, 35.281501 ], [ 23.697510, 35.701917 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.352295, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.385498, 35.630512 ], [ 41.011963, 34.415973 ], [ 38.792725, 33.376412 ], [ 39.199219, 32.157012 ], [ 39.001465, 32.008076 ], [ 37.001953, 31.503629 ], [ 38.001709, 30.505484 ], [ 37.672119, 30.334954 ], [ 37.507324, 30.002517 ], [ 36.738281, 29.859701 ], [ 36.507568, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.958496, 29.353452 ], [ 34.925537, 29.496988 ], [ 34.266357, 31.222197 ], [ 34.562988, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.958496, 32.824211 ], [ 35.101318, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.463867, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.826416, 33.275435 ], [ 36.068115, 33.824794 ], [ 36.617432, 34.198173 ], [ 36.452637, 34.597042 ], [ 36.002197, 34.642247 ], [ 35.903320, 35.406961 ], [ 36.156006, 35.817813 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.067871, 36.624345 ], [ 38.166504, 36.897194 ], [ 38.704834, 36.712467 ], [ 39.528809, 36.712467 ], [ 40.671387, 37.090240 ], [ 41.209717, 37.072710 ], [ 42.352295, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.449219, 13.859414 ], [ 6.448975, 13.496473 ], [ 6.822510, 13.111580 ], [ 7.327881, 13.100880 ], [ 7.811279, 13.346865 ], [ 9.019775, 12.822514 ], [ 9.525146, 12.854649 ], [ 10.118408, 13.272026 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.325485 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.592600 ], [ 13.315430, 13.549881 ], [ 13.996582, 12.458033 ], [ 14.183350, 12.479487 ], [ 14.216309, 12.801088 ], [ 14.501953, 12.854649 ], [ 14.897461, 12.221918 ], [ 14.963379, 11.555380 ], [ 14.930420, 10.887254 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.633789, 9.914744 ], [ 14.172363, 10.022948 ], [ 13.952637, 9.546583 ], [ 14.545898, 8.961045 ], [ 14.985352, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.689217 ], [ 15.281982, 7.416942 ], [ 14.776611, 6.402648 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.025283 ], [ 14.479980, 4.729727 ], [ 14.952393, 4.203986 ], [ 15.040283, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.008870 ], [ 15.908203, 2.558963 ], [ 16.018066, 2.262595 ], [ 15.941162, 1.724593 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.262595 ], [ 12.952881, 2.317483 ], [ 12.359619, 2.196727 ], [ 11.755371, 2.328460 ], [ 11.282959, 2.262595 ], [ 11.282959, 1.054628 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.953857, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.492432, 4.488809 ], [ 8.503418, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.086182, 4.466904 ], [ 6.701660, 4.236856 ], [ 5.899658, 4.258768 ], [ 5.361328, 4.882994 ], [ 5.031738, 5.605052 ], [ 4.328613, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.134639 ], [ 3.218994, 9.438224 ], [ 3.702393, 10.066220 ], [ 3.603516, 10.325728 ], [ 3.801270, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.951029 ], [ 4.108887, 13.528519 ], [ 4.372559, 13.742053 ], [ 5.449219, 13.859414 ] ] ], [ [ [ 0.021973, 11.016689 ], [ 0.900879, 10.995120 ], [ 0.769043, 10.466206 ], [ 1.428223, 9.828154 ], [ 1.461182, 9.329831 ], [ 1.669922, 9.123792 ], [ 1.614990, 6.828261 ], [ 1.867676, 6.140555 ], [ 1.065674, 5.922045 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.406048 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.678779 ], [ 0.362549, 9.459899 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.166992, 41.640078 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.353271, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.517822, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.550293, 41.533254 ], [ 42.615967, 41.582580 ], [ 43.582764, 41.095912 ], [ 43.637695, 40.979898 ], [ 43.758545, 40.738933 ], [ 43.659668, 40.254377 ], [ 44.406738, 40.002372 ], [ 44.791260, 39.715638 ], [ 44.110107, 39.427707 ], [ 44.417725, 38.281313 ], [ 44.230957, 37.970185 ], [ 44.769287, 37.169072 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 45.878906, 35.764343 ], [ 45.878906, 34.903953 ], [ 45.648193, 34.750640 ], [ 45.417480, 33.970698 ], [ 45.878906, 33.339707 ], [ 45.878906, 17.287709 ], [ 45.406494, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.066162, 17.413546 ], [ 43.791504, 17.319176 ], [ 43.385010, 17.581194 ], [ 43.121338, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.351768 ], [ 42.648926, 16.772987 ], [ 42.352295, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.759033, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.946045, 19.487308 ], [ 40.253906, 20.169411 ], [ 39.803467, 20.334326 ], [ 39.144287, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.573438 ], [ 38.496094, 23.684774 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.639404, 25.829561 ], [ 36.254883, 26.568877 ], [ 35.134277, 28.062286 ], [ 34.628906, 28.052591 ], [ 34.793701, 28.603814 ], [ 34.837646, 28.960089 ], [ 34.958496, 29.353452 ], [ 36.068115, 29.200123 ], [ 36.507568, 29.506549 ], [ 36.738281, 29.859701 ], [ 37.507324, 30.002517 ], [ 37.672119, 30.334954 ], [ 38.001709, 30.505484 ], [ 37.001953, 31.503629 ], [ 39.001465, 32.008076 ], [ 39.199219, 32.157012 ], [ 38.792725, 33.376412 ], [ 41.011963, 34.415973 ], [ 41.385498, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.352295, 37.230328 ], [ 41.209717, 37.072710 ], [ 40.671387, 37.090240 ], [ 39.528809, 36.712467 ], [ 38.704834, 36.712467 ], [ 38.166504, 36.897194 ], [ 37.067871, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.156006, 35.817813 ], [ 35.782471, 36.270850 ], [ 36.166992, 36.650793 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.791691 ], [ 34.024658, 36.217687 ], [ 32.508545, 36.102376 ], [ 31.695557, 36.641978 ], [ 30.618896, 36.677231 ], [ 30.388184, 36.261992 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.649034 ], [ 26.323242, 38.203655 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.455307 ], [ 29.102783, 40.979898 ], [ 29.245605, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.167969, 41.640078 ], [ 36.166992, 41.640078 ] ] ], [ [ [ 26.499023, 31.587894 ], [ 27.454834, 31.316101 ], [ 28.454590, 31.024694 ], [ 28.916016, 30.864510 ], [ 29.685059, 31.184609 ], [ 30.091553, 31.475524 ], [ 30.981445, 31.550453 ], [ 31.684570, 31.428663 ], [ 31.959229, 30.930501 ], [ 32.189941, 31.259770 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.266357, 31.222197 ], [ 34.925537, 29.496988 ], [ 34.639893, 29.094577 ], [ 34.431152, 28.343065 ], [ 34.156494, 27.819645 ], [ 33.925781, 27.644606 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.850173 ], [ 32.321777, 29.754840 ], [ 32.739258, 28.700225 ], [ 33.354492, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.475098, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.694580, 23.926013 ], [ 35.496826, 23.755182 ], [ 35.529785, 23.099944 ], [ 36.694336, 22.207749 ], [ 36.870117, 21.993989 ], [ 25.004883, 21.993989 ], [ 25.004883, 29.238477 ], [ 24.697266, 30.040566 ], [ 24.960938, 30.656816 ], [ 24.807129, 31.090574 ], [ 25.169678, 31.569175 ], [ 26.499023, 31.587894 ] ] ], [ [ [ 28.114014, 41.640078 ], [ 28.114014, 41.623655 ], [ 28.992920, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.004775 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.356201, 40.153687 ], [ 26.048584, 40.613952 ], [ 26.059570, 40.822124 ], [ 26.301270, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.608887, 41.566142 ], [ 26.455078, 41.640078 ], [ 28.114014, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.412847 ], [ 19.852295, 21.493964 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.027344, 15.675932 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.784737 ], [ 22.302246, 13.368243 ], [ 22.038574, 12.951029 ], [ 21.939697, 12.586732 ], [ 22.291260, 12.640338 ], [ 22.500000, 12.254128 ], [ 22.510986, 11.673755 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.146066 ], [ 22.236328, 10.973550 ], [ 21.719971, 10.563422 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.069551 ], [ 18.808594, 8.982749 ], [ 18.907471, 8.624472 ], [ 18.391113, 8.276727 ], [ 17.962646, 7.885147 ], [ 16.710205, 7.504089 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.281982, 7.416942 ], [ 15.435791, 7.689217 ], [ 15.117188, 8.385431 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.961045 ], [ 13.952637, 9.546583 ], [ 14.172363, 10.022948 ], [ 14.633789, 9.914744 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.930420, 10.887254 ], [ 14.963379, 11.555380 ], [ 14.897461, 12.221918 ], [ 14.501953, 12.854649 ], [ 14.600830, 13.325485 ], [ 13.952637, 13.346865 ], [ 13.952637, 13.998037 ], [ 13.546143, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.303955, 17.926476 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.725291 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.857195 ], [ 15.864258, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.870117, 21.993989 ], [ 37.188721, 21.012727 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.485352, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.424029 ], [ 37.166748, 17.266728 ], [ 36.859131, 16.951724 ], [ 36.760254, 16.288506 ], [ 36.320801, 14.817371 ], [ 36.430664, 14.424040 ], [ 37.595215, 14.211139 ], [ 37.902832, 14.955399 ], [ 38.518066, 14.509144 ], [ 39.100342, 14.743011 ], [ 39.342041, 14.530415 ], [ 40.023193, 14.519780 ], [ 40.902100, 14.115267 ], [ 41.154785, 13.774066 ], [ 41.605225, 13.453737 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.543840 ], [ 42.000732, 12.103781 ], [ 41.660156, 11.630716 ], [ 41.737061, 11.350797 ], [ 41.759033, 11.049038 ], [ 42.319336, 11.027472 ], [ 42.561035, 11.102947 ], [ 42.780762, 10.930405 ], [ 42.561035, 10.574222 ], [ 42.934570, 10.022948 ], [ 43.297119, 9.535749 ], [ 43.681641, 9.178025 ], [ 45.000000, 8.700499 ], [ 45.878906, 8.385431 ], [ 45.878906, 5.976680 ], [ 45.000000, 5.036227 ], [ 44.967041, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.247812 ], [ 42.132568, 4.236856 ], [ 41.857910, 3.919060 ], [ 41.176758, 3.919060 ], [ 40.770264, 4.258768 ], [ 39.858398, 3.842332 ], [ 39.561768, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.671875, 3.612107 ], [ 38.441162, 3.590178 ], [ 38.122559, 3.601142 ], [ 36.859131, 4.444997 ], [ 36.156006, 4.444997 ], [ 35.815430, 4.773521 ], [ 35.815430, 5.331644 ], [ 35.299072, 5.506640 ], [ 34.002686, 4.247812 ], [ 33.387451, 3.787522 ], [ 32.684326, 3.787522 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.776559 ], [ 30.838623, 3.502455 ], [ 30.772705, 2.339438 ], [ 31.179199, 2.207705 ], [ 30.849609, 1.845384 ], [ 30.465088, 1.581830 ], [ 30.091553, 1.065612 ], [ 29.871826, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.208740 ], [ 29.586182, -0.593251 ], [ 29.586182, -0.878872 ], [ 17.336426, -0.878872 ], [ 17.523193, -0.747049 ], [ 17.644043, -0.428463 ], [ 17.666016, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.830811, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.896729, 1.735574 ], [ 18.094482, 2.361392 ], [ 18.391113, 2.899153 ], [ 18.457031, 3.502455 ], [ 17.808838, 3.557283 ], [ 17.138672, 3.721745 ], [ 16.534424, 3.195364 ], [ 16.018066, 2.262595 ], [ 15.908203, 2.558963 ], [ 15.864258, 3.008870 ], [ 15.402832, 3.337954 ], [ 15.040283, 3.853293 ], [ 14.952393, 4.203986 ], [ 14.479980, 4.729727 ], [ 14.556885, 5.025283 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.776611, 6.402648 ], [ 15.281982, 7.416942 ], [ 16.105957, 7.493196 ], [ 16.292725, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.710205, 7.504089 ], [ 17.962646, 7.885147 ], [ 18.391113, 8.276727 ], [ 18.907471, 8.624472 ], [ 18.808594, 8.982749 ], [ 19.094238, 9.069551 ], [ 20.061035, 9.015302 ], [ 21.005859, 9.470736 ], [ 21.719971, 10.563422 ], [ 22.236328, 10.973550 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.673755 ], [ 22.500000, 12.254128 ], [ 22.291260, 12.640338 ], [ 21.939697, 12.586732 ], [ 22.038574, 12.951029 ], [ 22.302246, 13.368243 ], [ 22.181396, 13.784737 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.027344, 15.675932 ], [ 23.884277, 15.612456 ], [ 23.840332, 19.580493 ], [ 23.851318, 19.993998 ], [ 25.004883, 20.004322 ], [ 25.004883, 21.993989 ], [ 36.870117, 21.993989 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.002197, 34.642247 ], [ 36.452637, 34.597042 ], [ 36.617432, 34.198173 ], [ 36.068115, 33.824794 ], [ 35.826416, 33.275435 ], [ 35.837402, 32.870360 ], [ 35.705566, 32.713355 ], [ 35.716553, 32.704111 ], [ 36.837158, 32.314991 ], [ 38.792725, 33.376412 ], [ 39.199219, 32.157012 ], [ 39.001465, 32.008076 ], [ 37.001953, 31.503629 ], [ 38.001709, 30.505484 ], [ 37.672119, 30.334954 ], [ 37.507324, 30.002517 ], [ 36.738281, 29.859701 ], [ 36.507568, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.958496, 29.353452 ], [ 34.925537, 29.496988 ], [ 34.266357, 31.222197 ], [ 34.562988, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.958496, 32.824211 ], [ 35.101318, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.485840, 33.906896 ], [ 36.002197, 34.642247 ] ], [ [ 35.189209, 32.528289 ], [ 34.980469, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.615966 ], [ 34.925537, 31.353637 ], [ 35.397949, 31.484893 ], [ 35.551758, 31.784217 ], [ 35.551758, 32.389239 ], [ 35.189209, 32.528289 ] ] ], [ [ [ 34.573975, 35.666222 ], [ 33.903809, 35.245619 ], [ 34.002686, 34.976002 ], [ 32.980957, 34.569906 ], [ 32.486572, 34.696461 ], [ 32.255859, 35.101934 ], [ 32.728271, 35.137879 ], [ 32.805176, 35.146863 ], [ 32.947998, 35.389050 ], [ 33.673096, 35.371135 ], [ 34.573975, 35.666222 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.299072, 5.506640 ], [ 35.815430, 5.331644 ], [ 35.815430, 4.773521 ], [ 36.156006, 4.444997 ], [ 36.859131, 4.444997 ], [ 38.122559, 3.601142 ], [ 38.441162, 3.590178 ], [ 38.671875, 3.612107 ], [ 38.891602, 3.502455 ], [ 39.561768, 3.425692 ], [ 39.858398, 3.842332 ], [ 40.770264, 4.258768 ], [ 41.176758, 3.919060 ], [ 41.857910, 3.919060 ], [ 40.979004, 2.778451 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.011963, -0.878872 ], [ 29.586182, -0.878872 ], [ 29.586182, -0.593251 ], [ 29.816895, -0.208740 ], [ 29.838867, 0.000000 ], [ 29.871826, 0.593251 ], [ 30.091553, 1.065612 ], [ 30.465088, 1.581830 ], [ 30.849609, 1.845384 ], [ 31.179199, 2.207705 ], [ 30.772705, 2.339438 ], [ 30.838623, 3.502455 ], [ 31.245117, 3.776559 ], [ 31.882324, 3.557283 ], [ 32.684326, 3.787522 ], [ 33.387451, 3.787522 ], [ 34.002686, 4.247812 ], [ 35.299072, 5.506640 ] ] ], [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.836090 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.176758, 14.487871 ], [ 41.737061, 13.923404 ], [ 42.593994, 12.993853 ], [ 43.077393, 12.693933 ], [ 43.319092, 12.393659 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.458491 ], [ 42.780762, 10.930405 ], [ 42.561035, 11.102947 ], [ 42.319336, 11.027472 ], [ 41.759033, 11.049038 ], [ 41.737061, 11.350797 ], [ 41.660156, 11.630716 ], [ 42.000732, 12.103781 ], [ 42.352295, 12.543840 ], [ 42.011719, 12.865360 ], [ 41.605225, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.902100, 14.115267 ], [ 40.023193, 14.519780 ], [ 39.342041, 14.530415 ], [ 39.100342, 14.743011 ], [ 38.518066, 14.509144 ], [ 37.902832, 14.955399 ], [ 37.595215, 14.211139 ], [ 36.430664, 14.424040 ], [ 36.320801, 14.817371 ], [ 36.760254, 16.288506 ], [ 36.859131, 16.951724 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.424029 ], [ 38.408203, 17.999632 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.499023, 31.587894 ], [ 27.454834, 31.316101 ], [ 28.454590, 31.024694 ], [ 28.916016, 30.864510 ], [ 29.685059, 31.184609 ], [ 30.091553, 31.475524 ], [ 30.981445, 31.550453 ], [ 31.684570, 31.428663 ], [ 31.959229, 30.930501 ], [ 32.189941, 31.259770 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.266357, 31.222197 ], [ 34.925537, 29.496988 ], [ 34.639893, 29.094577 ], [ 34.431152, 28.343065 ], [ 34.156494, 27.819645 ], [ 33.925781, 27.644606 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.850173 ], [ 32.321777, 29.754840 ], [ 32.739258, 28.700225 ], [ 33.354492, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.475098, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.694580, 23.926013 ], [ 35.496826, 23.755182 ], [ 35.529785, 23.099944 ], [ 36.694336, 22.207749 ], [ 36.870117, 21.993989 ], [ 37.188721, 21.012727 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.485352, 18.615013 ], [ 38.408203, 17.999632 ], [ 38.990479, 16.836090 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.176758, 14.487871 ], [ 41.737061, 13.923404 ], [ 42.593994, 12.993853 ], [ 43.077393, 12.693933 ], [ 43.319092, 12.393659 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.458491 ], [ 42.780762, 10.930405 ], [ 42.561035, 10.574222 ], [ 42.934570, 10.022948 ], [ 43.297119, 9.535749 ], [ 43.681641, 9.178025 ], [ 45.000000, 8.700499 ], [ 45.878906, 8.385431 ], [ 45.878906, 5.976680 ], [ 45.000000, 5.036227 ], [ 44.967041, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.247812 ], [ 42.132568, 4.236856 ], [ 41.857910, 3.919060 ], [ 41.176758, 3.919060 ], [ 40.770264, 4.258768 ], [ 39.858398, 3.842332 ], [ 39.561768, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.671875, 3.612107 ], [ 38.441162, 3.590178 ], [ 38.122559, 3.601142 ], [ 36.859131, 4.444997 ], [ 36.156006, 4.444997 ], [ 35.815430, 4.773521 ], [ 35.815430, 5.331644 ], [ 35.299072, 5.506640 ], [ 34.002686, 4.247812 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.900286 ], [ 34.672852, 1.175455 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.878872 ], [ 17.336426, -0.878872 ], [ 17.523193, -0.747049 ], [ 17.644043, -0.428463 ], [ 17.666016, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.830811, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.896729, 1.735574 ], [ 18.094482, 2.361392 ], [ 18.391113, 2.899153 ], [ 18.457031, 3.502455 ], [ 17.808838, 3.557283 ], [ 17.138672, 3.721745 ], [ 16.534424, 3.195364 ], [ 16.018066, 2.262595 ], [ 15.908203, 2.558963 ], [ 15.864258, 3.008870 ], [ 15.402832, 3.337954 ], [ 15.040283, 3.853293 ], [ 14.952393, 4.203986 ], [ 14.479980, 4.729727 ], [ 14.556885, 5.025283 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.776611, 6.402648 ], [ 15.281982, 7.416942 ], [ 16.105957, 7.493196 ], [ 16.292725, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.710205, 7.504089 ], [ 17.962646, 7.885147 ], [ 18.391113, 8.276727 ], [ 18.907471, 8.624472 ], [ 18.808594, 8.982749 ], [ 19.094238, 9.069551 ], [ 20.061035, 9.015302 ], [ 21.005859, 9.470736 ], [ 21.719971, 10.563422 ], [ 22.236328, 10.973550 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.673755 ], [ 22.500000, 12.254128 ], [ 22.291260, 12.640338 ], [ 21.939697, 12.586732 ], [ 22.038574, 12.951029 ], [ 22.302246, 13.368243 ], [ 22.181396, 13.784737 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.027344, 15.675932 ], [ 23.884277, 15.612456 ], [ 23.840332, 19.580493 ], [ 23.851318, 19.993998 ], [ 25.004883, 20.004322 ], [ 25.004883, 29.238477 ], [ 24.697266, 30.040566 ], [ 24.960938, 30.656816 ], [ 24.807129, 31.090574 ], [ 25.169678, 31.569175 ], [ 26.499023, 31.587894 ] ] ], [ [ [ 36.166992, 41.640078 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.353271, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.517822, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.550293, 41.533254 ], [ 42.615967, 41.582580 ], [ 43.582764, 41.095912 ], [ 43.637695, 40.979898 ], [ 43.758545, 40.738933 ], [ 43.659668, 40.254377 ], [ 44.406738, 40.002372 ], [ 44.791260, 39.715638 ], [ 44.110107, 39.427707 ], [ 44.417725, 38.281313 ], [ 44.230957, 37.970185 ], [ 44.769287, 37.169072 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 45.878906, 35.764343 ], [ 45.878906, 34.903953 ], [ 45.648193, 34.750640 ], [ 45.417480, 33.970698 ], [ 45.878906, 33.339707 ], [ 45.878906, 17.287709 ], [ 45.406494, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.066162, 17.413546 ], [ 43.791504, 17.319176 ], [ 43.385010, 17.581194 ], [ 43.121338, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.351768 ], [ 42.648926, 16.772987 ], [ 42.352295, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.759033, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.946045, 19.487308 ], [ 40.253906, 20.169411 ], [ 39.803467, 20.334326 ], [ 39.144287, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.573438 ], [ 38.496094, 23.684774 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.639404, 25.829561 ], [ 36.254883, 26.568877 ], [ 35.134277, 28.062286 ], [ 34.628906, 28.052591 ], [ 34.793701, 28.603814 ], [ 34.837646, 28.960089 ], [ 34.958496, 29.353452 ], [ 36.068115, 29.200123 ], [ 36.507568, 29.506549 ], [ 36.738281, 29.859701 ], [ 37.507324, 30.002517 ], [ 37.672119, 30.334954 ], [ 38.001709, 30.505484 ], [ 37.001953, 31.503629 ], [ 39.001465, 32.008076 ], [ 39.199219, 32.157012 ], [ 38.792725, 33.376412 ], [ 36.837158, 32.314991 ], [ 35.705566, 32.713355 ], [ 35.837402, 32.870360 ], [ 35.826416, 33.275435 ], [ 36.068115, 33.824794 ], [ 36.617432, 34.198173 ], [ 36.452637, 34.597042 ], [ 36.002197, 34.642247 ], [ 35.903320, 35.406961 ], [ 36.156006, 35.817813 ], [ 35.782471, 36.270850 ], [ 36.166992, 36.650793 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.791691 ], [ 34.024658, 36.217687 ], [ 32.508545, 36.102376 ], [ 31.695557, 36.641978 ], [ 30.618896, 36.677231 ], [ 30.388184, 36.261992 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.649034 ], [ 26.323242, 38.203655 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.455307 ], [ 29.102783, 40.979898 ], [ 29.245605, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.167969, 41.640078 ], [ 36.166992, 41.640078 ] ] ], [ [ [ 28.114014, 41.640078 ], [ 28.114014, 41.623655 ], [ 28.992920, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.004775 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.356201, 40.153687 ], [ 26.048584, 40.613952 ], [ 26.059570, 40.822124 ], [ 26.301270, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.608887, 41.566142 ], [ 26.455078, 41.640078 ], [ 28.114014, 41.640078 ] ] ], [ [ [ 35.189209, 32.528289 ], [ 35.551758, 32.389239 ], [ 35.551758, 31.784217 ], [ 35.397949, 31.484893 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.222168, 31.756196 ], [ 34.980469, 31.868228 ], [ 35.189209, 32.528289 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.385010, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.066162, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.219727, 17.434511 ], [ 45.406494, 17.329664 ], [ 45.878906, 17.287709 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.293411 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.693933 ], [ 44.494629, 12.715368 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.640338 ], [ 43.220215, 13.218556 ], [ 43.253174, 13.763396 ], [ 43.088379, 14.061988 ], [ 42.890625, 14.796128 ], [ 42.604980, 15.209988 ], [ 42.802734, 15.262989 ], [ 42.703857, 15.718239 ], [ 42.824707, 15.908508 ], [ 42.780762, 16.351768 ], [ 43.220215, 16.667769 ], [ 43.121338, 17.088291 ], [ 43.385010, 17.581194 ] ] ], [ [ [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 35.764343 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.230957, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.791260, 39.715638 ], [ 44.406738, 40.002372 ], [ 43.659668, 40.254377 ], [ 43.758545, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.095912 ], [ 44.978027, 41.253032 ], [ 45.219727, 41.409776 ] ] ], [ [ [ 45.878906, 34.903953 ], [ 45.878906, 33.339707 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.903953 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.815430, 5.331644 ], [ 35.815430, 4.773521 ], [ 36.156006, 4.444997 ], [ 36.859131, 4.444997 ], [ 38.122559, 3.601142 ], [ 38.441162, 3.590178 ], [ 38.671875, 3.612107 ], [ 38.891602, 3.502455 ], [ 39.561768, 3.425692 ], [ 39.858398, 3.842332 ], [ 40.770264, 4.258768 ], [ 41.176758, 3.919060 ], [ 41.857910, 3.919060 ], [ 40.979004, 2.778451 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.011963, -0.878872 ], [ 33.903809, -0.878872 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.672852, 1.175455 ], [ 35.035400, 1.900286 ], [ 34.595947, 3.052754 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.247812 ], [ 35.299072, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 5.976680 ], [ 45.878906, 2.295528 ], [ 45.560303, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.077637, -0.878872 ], [ 41.011963, -0.878872 ], [ 40.989990, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.778451 ], [ 41.857910, 3.919060 ], [ 42.132568, 4.236856 ], [ 42.769775, 4.247812 ], [ 43.659668, 4.959615 ], [ 44.967041, 5.003394 ], [ 45.000000, 5.036227 ], [ 45.878906, 5.976680 ] ] ], [ [ [ 17.138672, 3.721745 ], [ 17.808838, 3.557283 ], [ 18.457031, 3.502455 ], [ 18.391113, 2.899153 ], [ 18.094482, 2.361392 ], [ 17.896729, 1.735574 ], [ 17.775879, 0.856902 ], [ 17.830811, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.054932 ], [ 17.644043, -0.428463 ], [ 17.523193, -0.747049 ], [ 17.336426, -0.878872 ], [ 8.822021, -0.878872 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.294434, 0.263671 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.054628 ], [ 11.282959, 2.262595 ], [ 11.755371, 2.328460 ], [ 12.359619, 2.196727 ], [ 12.952881, 2.317483 ], [ 13.073730, 2.262595 ], [ 14.337158, 2.229662 ], [ 15.941162, 1.724593 ], [ 16.018066, 2.262595 ], [ 16.534424, 3.195364 ], [ 17.138672, 3.721745 ] ] ], [ [ [ 43.143311, 11.458491 ], [ 43.472900, 11.275387 ], [ 43.670654, 10.865676 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.541821 ], [ 45.560303, 10.692996 ], [ 45.878906, 10.736175 ], [ 45.878906, 8.385431 ], [ 45.000000, 8.700499 ], [ 43.681641, 9.178025 ], [ 43.297119, 9.535749 ], [ 42.934570, 10.022948 ], [ 42.561035, 10.574222 ], [ 42.780762, 10.930405 ], [ 43.143311, 11.458491 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.736084, 39.470125 ], [ 45.736084, 39.317300 ], [ 45.878906, 39.113014 ], [ 45.878906, 38.788345 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.878906, 40.204050 ], [ 45.878906, 39.732538 ], [ 45.615234, 39.901309 ], [ 45.878906, 40.204050 ] ] ], [ [ [ 45.878906, 40.229218 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.978027, 41.253032 ], [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 40.229218 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 5.976680 ], [ 45.878906, 2.295528 ], [ 45.560303, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.077637, -0.878872 ], [ 41.011963, -0.878872 ], [ 40.989990, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.778451 ], [ 41.857910, 3.919060 ], [ 42.132568, 4.236856 ], [ 42.769775, 4.247812 ], [ 43.659668, 4.959615 ], [ 44.967041, 5.003394 ], [ 45.000000, 5.036227 ], [ 45.878906, 5.976680 ] ] ], [ [ [ 17.138672, 3.721745 ], [ 17.808838, 3.557283 ], [ 18.457031, 3.502455 ], [ 18.391113, 2.899153 ], [ 18.094482, 2.361392 ], [ 17.896729, 1.735574 ], [ 17.775879, 0.856902 ], [ 17.830811, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.054932 ], [ 17.644043, -0.428463 ], [ 17.523193, -0.747049 ], [ 17.336426, -0.878872 ], [ 8.822021, -0.878872 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.294434, 0.263671 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.054628 ], [ 11.282959, 2.262595 ], [ 11.755371, 2.328460 ], [ 12.359619, 2.196727 ], [ 12.952881, 2.317483 ], [ 13.073730, 2.262595 ], [ 14.337158, 2.229662 ], [ 15.941162, 1.724593 ], [ 16.018066, 2.262595 ], [ 16.534424, 3.195364 ], [ 17.138672, 3.721745 ] ] ], [ [ [ 43.143311, 11.458491 ], [ 43.472900, 11.275387 ], [ 43.670654, 10.865676 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.541821 ], [ 45.560303, 10.692996 ], [ 45.878906, 10.736175 ], [ 45.878906, 8.385431 ], [ 45.000000, 8.700499 ], [ 43.681641, 9.178025 ], [ 43.297119, 9.535749 ], [ 42.934570, 10.022948 ], [ 42.561035, 10.574222 ], [ 42.780762, 10.930405 ], [ 43.143311, 11.458491 ] ] ], [ [ [ 43.385010, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.066162, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.219727, 17.434511 ], [ 45.406494, 17.329664 ], [ 45.878906, 17.287709 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.293411 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.693933 ], [ 44.494629, 12.715368 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.640338 ], [ 43.220215, 13.218556 ], [ 43.253174, 13.763396 ], [ 43.088379, 14.061988 ], [ 42.890625, 14.796128 ], [ 42.604980, 15.209988 ], [ 42.802734, 15.262989 ], [ 42.703857, 15.718239 ], [ 42.824707, 15.908508 ], [ 42.780762, 16.351768 ], [ 43.220215, 16.667769 ], [ 43.121338, 17.088291 ], [ 43.385010, 17.581194 ] ] ], [ [ [ 44.791260, 39.715638 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 45.878906, 38.788345 ], [ 45.878906, 35.764343 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.230957, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.791260, 39.715638 ] ] ], [ [ [ 45.878906, 34.903953 ], [ 45.878906, 33.339707 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.903953 ] ] ], [ [ [ 44.978027, 41.253032 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.878906, 40.204050 ], [ 45.615234, 39.901309 ], [ 45.878906, 39.732538 ], [ 45.878906, 39.113014 ], [ 45.736084, 39.317300 ], [ 45.736084, 39.470125 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.406738, 40.002372 ], [ 43.659668, 40.254377 ], [ 43.758545, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.095912 ], [ 44.978027, 41.253032 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.075439, 53.507651 ], [ 6.910400, 53.481508 ], [ 7.097168, 53.140181 ], [ 6.844482, 52.227799 ], [ 6.591797, 51.849353 ], [ 5.987549, 51.849353 ], [ 6.163330, 50.805935 ], [ 6.042480, 50.127622 ], [ 6.240234, 49.901711 ], [ 6.185303, 49.460984 ], [ 5.899658, 49.439557 ], [ 5.679932, 49.525208 ], [ 4.801025, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.592529, 50.380502 ], [ 3.120117, 50.778155 ], [ 2.658691, 50.798991 ], [ 2.515869, 51.144894 ], [ 3.317871, 51.344339 ], [ 3.834229, 51.618017 ], [ 4.702148, 53.094024 ], [ 6.075439, 53.507651 ] ] ], [ [ [ 23.554688, 66.861082 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.394761 ], [ 23.906250, 66.004618 ], [ 22.181396, 65.721594 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.411177 ], [ 19.775391, 63.607217 ], [ 17.852783, 62.749696 ], [ 17.116699, 61.338809 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.874756, 58.955674 ], [ 16.831055, 58.716894 ], [ 16.446533, 57.040730 ], [ 15.886230, 56.102683 ], [ 14.666748, 56.200593 ], [ 14.106445, 55.404070 ], [ 12.941895, 55.360381 ], [ 12.623291, 56.304349 ], [ 11.788330, 57.439037 ], [ 11.030273, 58.853542 ], [ 10.360107, 59.467408 ], [ 8.382568, 58.315260 ], [ 7.053223, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.306396, 59.662192 ], [ 4.998779, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.558350, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.359619, 65.879215 ], [ 13.128662, 66.513260 ], [ 13.557129, 66.861082 ], [ 23.554688, 66.861082 ] ] ], [ [ [ -0.878906, 54.572062 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 1.680908, 52.736292 ], [ 1.560059, 52.099757 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.771208 ], [ -0.878906, 50.757310 ], [ -0.878906, 54.572062 ] ] ], [ [ [ 25.169678, 57.967331 ], [ 25.609131, 57.844751 ], [ 26.466064, 57.474497 ], [ 27.290039, 57.474497 ], [ 27.773438, 57.243394 ], [ 27.861328, 56.758746 ], [ 28.179932, 56.170023 ], [ 27.103271, 55.782751 ], [ 26.499023, 55.615589 ], [ 25.532227, 56.096556 ], [ 25.004883, 56.163906 ], [ 24.862061, 56.371335 ], [ 23.884277, 56.273861 ], [ 22.203369, 56.334812 ], [ 21.060791, 56.029087 ], [ 21.093750, 56.782827 ], [ 21.588135, 57.409461 ], [ 22.521973, 57.751076 ], [ 23.323975, 57.004850 ], [ 24.125977, 57.022794 ], [ 24.312744, 57.792089 ], [ 25.169678, 57.967331 ] ] ], [ [ [ 12.370605, 56.108810 ], [ 12.689209, 55.609384 ], [ 12.095947, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.909424, 55.776573 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 10.579834, 57.727619 ], [ 10.546875, 57.213660 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.607885 ], [ 10.909424, 56.456420 ], [ 10.667725, 56.078167 ], [ 10.371094, 56.188368 ], [ 9.645996, 55.466399 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.516192 ], [ 8.085938, 56.541315 ], [ 8.261719, 56.806893 ], [ 8.547363, 57.106419 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.444949 ], [ 10.579834, 57.727619 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 54.572062 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 1.680908, 52.736292 ], [ 1.560059, 52.099757 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.771208 ], [ -0.878906, 50.757310 ], [ -0.878906, 54.572062 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.108810 ], [ 12.689209, 55.609384 ], [ 12.095947, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.909424, 55.776573 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 10.579834, 57.727619 ], [ 10.546875, 57.213660 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.607885 ], [ 10.909424, 56.456420 ], [ 10.667725, 56.078167 ], [ 10.371094, 56.188368 ], [ 9.645996, 55.466399 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.516192 ], [ 8.085938, 56.541315 ], [ 8.261719, 56.806893 ], [ 8.547363, 57.106419 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.444949 ], [ 10.579834, 57.727619 ] ] ], [ [ [ 23.554688, 66.861082 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.394761 ], [ 23.906250, 66.004618 ], [ 22.181396, 65.721594 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.411177 ], [ 19.775391, 63.607217 ], [ 17.852783, 62.749696 ], [ 17.116699, 61.338809 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.874756, 58.955674 ], [ 16.831055, 58.716894 ], [ 16.446533, 57.040730 ], [ 15.886230, 56.102683 ], [ 14.666748, 56.200593 ], [ 14.106445, 55.404070 ], [ 12.941895, 55.360381 ], [ 12.623291, 56.304349 ], [ 11.788330, 57.439037 ], [ 11.030273, 58.853542 ], [ 10.360107, 59.467408 ], [ 8.382568, 58.315260 ], [ 7.053223, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.306396, 59.662192 ], [ 4.998779, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.558350, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.359619, 65.879215 ], [ 13.128662, 66.513260 ], [ 13.557129, 66.861082 ], [ 23.554688, 66.861082 ] ] ], [ [ [ 25.169678, 57.967331 ], [ 25.609131, 57.844751 ], [ 26.466064, 57.474497 ], [ 27.290039, 57.474497 ], [ 27.773438, 57.243394 ], [ 27.861328, 56.758746 ], [ 28.179932, 56.170023 ], [ 27.103271, 55.782751 ], [ 26.499023, 55.615589 ], [ 25.532227, 56.096556 ], [ 25.004883, 56.163906 ], [ 24.862061, 56.371335 ], [ 23.884277, 56.273861 ], [ 22.203369, 56.334812 ], [ 21.060791, 56.029087 ], [ 21.093750, 56.782827 ], [ 21.588135, 57.409461 ], [ 22.521973, 57.751076 ], [ 23.323975, 57.004850 ], [ 24.125977, 57.022794 ], [ 24.312744, 57.792089 ], [ 25.169678, 57.967331 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.393311, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.376809 ], [ 8.778076, 41.582580 ], [ 8.547363, 42.252918 ], [ 8.745117, 42.625876 ], [ 9.393311, 43.012681 ] ] ], [ [ [ 9.920654, 54.983918 ], [ 9.942627, 54.597528 ], [ 10.953369, 54.361358 ], [ 10.942383, 54.007769 ], [ 11.953125, 54.194583 ], [ 12.524414, 54.470038 ], [ 13.645020, 54.072283 ], [ 14.117432, 53.755207 ], [ 14.359131, 53.245495 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.623060 ], [ 14.688721, 52.086257 ], [ 14.611816, 51.747439 ], [ 15.018311, 51.103522 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.694718 ], [ 16.182861, 50.422519 ], [ 16.721191, 50.212064 ], [ 16.875000, 50.471491 ], [ 17.556152, 50.359480 ], [ 17.655029, 50.050085 ], [ 18.391113, 49.986552 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.310799 ], [ 18.171387, 49.267805 ], [ 18.105469, 49.045070 ], [ 17.918701, 48.994636 ], [ 17.885742, 48.900838 ], [ 17.545166, 48.799627 ], [ 17.105713, 48.814099 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.260010, 49.037868 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.552978 ], [ 13.601074, 48.879167 ], [ 13.249512, 48.414619 ], [ 12.886963, 48.290503 ], [ 13.029785, 47.635784 ], [ 12.930908, 47.465236 ], [ 12.623291, 47.672786 ], [ 12.139893, 47.702368 ], [ 11.425781, 47.524620 ], [ 10.546875, 47.569114 ], [ 10.404053, 47.301585 ], [ 9.898682, 47.576526 ], [ 9.591064, 47.524620 ], [ 9.635010, 47.346267 ], [ 9.481201, 47.100045 ], [ 9.931641, 46.920255 ], [ 10.447998, 46.890232 ], [ 10.360107, 46.483265 ], [ 9.920654, 46.316584 ], [ 9.184570, 46.437857 ], [ 8.964844, 46.035109 ], [ 8.492432, 46.004593 ], [ 8.316650, 46.164614 ], [ 7.756348, 45.821143 ], [ 7.272949, 45.775186 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.706179 ], [ 7.097168, 45.328979 ], [ 6.756592, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.691708 ], [ 6.525879, 43.125043 ], [ 4.559326, 43.397065 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.823730, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.382373 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.944584 ], [ 2.515869, 51.144894 ], [ 2.658691, 50.798991 ], [ 3.120117, 50.778155 ], [ 3.592529, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.679932, 49.525208 ], [ 5.899658, 49.439557 ], [ 6.185303, 49.460984 ], [ 6.240234, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.163330, 50.805935 ], [ 5.987549, 51.849353 ], [ 6.591797, 51.849353 ], [ 6.844482, 52.227799 ], [ 7.097168, 53.140181 ], [ 6.910400, 53.481508 ], [ 7.097168, 53.690201 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.569336, 54.393352 ], [ 8.525391, 54.965002 ], [ 9.283447, 54.832336 ], [ 9.920654, 54.983918 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.393311, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.376809 ], [ 8.778076, 41.582580 ], [ 8.547363, 42.252918 ], [ 8.745117, 42.625876 ], [ 9.393311, 43.012681 ] ] ], [ [ [ 6.075439, 53.507651 ], [ 6.910400, 53.481508 ], [ 7.097168, 53.140181 ], [ 6.844482, 52.227799 ], [ 6.591797, 51.849353 ], [ 5.987549, 51.849353 ], [ 6.163330, 50.805935 ], [ 6.042480, 50.127622 ], [ 6.240234, 49.901711 ], [ 6.185303, 49.460984 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.470703, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.525391, 47.827908 ], [ 9.591064, 47.524620 ], [ 9.635010, 47.346267 ], [ 9.481201, 47.100045 ], [ 9.931641, 46.920255 ], [ 10.447998, 46.890232 ], [ 10.360107, 46.483265 ], [ 9.920654, 46.316584 ], [ 9.184570, 46.437857 ], [ 8.964844, 46.035109 ], [ 8.492432, 46.004593 ], [ 8.316650, 46.164614 ], [ 7.756348, 45.821143 ], [ 7.272949, 45.775186 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.706179 ], [ 7.097168, 45.328979 ], [ 6.756592, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.691708 ], [ 6.525879, 43.125043 ], [ 4.559326, 43.397065 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.823730, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.382373 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.944584 ], [ 3.317871, 51.344339 ], [ 3.834229, 51.618017 ], [ 4.702148, 53.094024 ], [ 6.075439, 53.507651 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.788818, 40.313043 ], [ 8.393555, 40.313043 ], [ 8.393555, 40.380028 ], [ 8.162842, 40.946714 ], [ 8.712158, 40.896906 ], [ 8.843994, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 15.260010, 49.037868 ], [ 16.029053, 48.734455 ], [ 16.501465, 48.785152 ], [ 16.962891, 48.596592 ], [ 16.885986, 48.465637 ], [ 16.984863, 48.122101 ], [ 17.490234, 47.864774 ], [ 17.863770, 47.754098 ], [ 18.698730, 47.879513 ], [ 18.775635, 48.078079 ], [ 19.171143, 48.107431 ], [ 19.665527, 48.268569 ], [ 19.775391, 48.202710 ], [ 20.236816, 48.327039 ], [ 20.478516, 48.560250 ], [ 20.808105, 48.625647 ], [ 21.873779, 48.319734 ], [ 22.082520, 48.421910 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.879513 ], [ 22.104492, 47.672786 ], [ 21.632080, 46.995241 ], [ 21.027832, 46.316584 ], [ 20.225830, 46.126556 ], [ 19.599609, 46.172223 ], [ 18.830566, 45.905300 ], [ 18.457031, 45.759859 ], [ 17.633057, 45.951150 ], [ 16.885986, 46.377254 ], [ 16.567383, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.677490, 45.836454 ], [ 15.325928, 45.729191 ], [ 15.325928, 45.452424 ], [ 14.941406, 45.467836 ], [ 14.600830, 45.637087 ], [ 14.414062, 45.467836 ], [ 13.721924, 45.498647 ], [ 13.941650, 45.590978 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.598290 ], [ 12.590332, 44.087585 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.951320 ], [ 15.930176, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.871988 ], [ 18.380127, 40.354917 ], [ 18.402100, 40.313043 ], [ 17.556152, 40.313043 ], [ 16.875000, 40.438586 ], [ 16.787109, 40.313043 ], [ 14.897461, 40.313043 ], [ 14.699707, 40.605612 ], [ 14.062500, 40.788860 ], [ 13.853760, 40.979898 ], [ 13.634033, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.705729 ], [ 11.195068, 42.350425 ], [ 10.513916, 42.932296 ], [ 10.206299, 43.921637 ], [ 9.700928, 44.032321 ], [ 8.887939, 44.363133 ], [ 8.426514, 44.229457 ], [ 7.855225, 43.763160 ], [ 7.437744, 43.691708 ], [ 7.547607, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.756592, 45.026950 ], [ 7.097168, 45.328979 ], [ 6.800537, 45.706179 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.821143 ], [ 8.316650, 46.164614 ], [ 8.492432, 46.004593 ], [ 8.964844, 46.035109 ], [ 9.184570, 46.437857 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.483265 ], [ 10.447998, 46.890232 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.100045 ], [ 9.635010, 47.346267 ], [ 9.591064, 47.524620 ], [ 9.898682, 47.576526 ], [ 10.404053, 47.301585 ], [ 10.546875, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.702368 ], [ 12.623291, 47.672786 ], [ 12.930908, 47.465236 ], [ 13.029785, 47.635784 ], [ 12.886963, 48.290503 ], [ 13.249512, 48.414619 ], [ 13.601074, 48.879167 ], [ 14.337158, 48.552978 ], [ 14.897461, 48.965794 ], [ 15.260010, 49.037868 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.788818, 40.313043 ], [ 8.393555, 40.313043 ], [ 8.393555, 40.380028 ], [ 8.162842, 40.946714 ], [ 8.712158, 40.896906 ], [ 8.843994, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 9.920654, 54.983918 ], [ 9.942627, 54.597528 ], [ 10.953369, 54.361358 ], [ 10.942383, 54.007769 ], [ 11.953125, 54.194583 ], [ 12.524414, 54.470038 ], [ 13.645020, 54.072283 ], [ 14.117432, 53.755207 ], [ 14.359131, 53.245495 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.623060 ], [ 14.688721, 52.086257 ], [ 14.611816, 51.747439 ], [ 15.018311, 51.103522 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.694718 ], [ 16.182861, 50.422519 ], [ 16.721191, 50.212064 ], [ 16.875000, 50.471491 ], [ 17.556152, 50.359480 ], [ 17.655029, 50.050085 ], [ 18.391113, 49.986552 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.310799 ], [ 18.171387, 49.267805 ], [ 18.105469, 49.045070 ], [ 17.918701, 48.994636 ], [ 17.885742, 48.900838 ], [ 17.545166, 48.799627 ], [ 17.105713, 48.814099 ], [ 16.885986, 48.465637 ], [ 16.984863, 48.122101 ], [ 17.490234, 47.864774 ], [ 17.863770, 47.754098 ], [ 18.698730, 47.879513 ], [ 18.775635, 48.078079 ], [ 19.171143, 48.107431 ], [ 19.665527, 48.268569 ], [ 19.775391, 48.202710 ], [ 20.236816, 48.327039 ], [ 20.478516, 48.560250 ], [ 20.808105, 48.625647 ], [ 21.873779, 48.319734 ], [ 22.082520, 48.421910 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.879513 ], [ 22.104492, 47.672786 ], [ 21.632080, 46.995241 ], [ 21.027832, 46.316584 ], [ 20.225830, 46.126556 ], [ 19.599609, 46.172223 ], [ 18.830566, 45.905300 ], [ 18.457031, 45.759859 ], [ 17.633057, 45.951150 ], [ 16.885986, 46.377254 ], [ 16.567383, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.677490, 45.836454 ], [ 15.325928, 45.729191 ], [ 15.325928, 45.452424 ], [ 14.941406, 45.467836 ], [ 14.600830, 45.637087 ], [ 14.414062, 45.467836 ], [ 13.721924, 45.498647 ], [ 13.941650, 45.590978 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.598290 ], [ 12.590332, 44.087585 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.951320 ], [ 15.930176, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.871988 ], [ 18.380127, 40.354917 ], [ 18.402100, 40.313043 ], [ 17.556152, 40.313043 ], [ 16.875000, 40.438586 ], [ 16.787109, 40.313043 ], [ 14.897461, 40.313043 ], [ 14.699707, 40.605612 ], [ 14.062500, 40.788860 ], [ 13.853760, 40.979898 ], [ 13.634033, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.705729 ], [ 11.195068, 42.350425 ], [ 10.513916, 42.932296 ], [ 10.206299, 43.921637 ], [ 9.700928, 44.032321 ], [ 8.887939, 44.363133 ], [ 8.426514, 44.229457 ], [ 7.855225, 43.763160 ], [ 7.437744, 43.691708 ], [ 7.547607, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.756592, 45.026950 ], [ 7.097168, 45.328979 ], [ 6.800537, 45.706179 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.821143 ], [ 8.316650, 46.164614 ], [ 8.492432, 46.004593 ], [ 8.964844, 46.035109 ], [ 9.184570, 46.437857 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.483265 ], [ 10.447998, 46.890232 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.100045 ], [ 9.635010, 47.346267 ], [ 9.591064, 47.524620 ], [ 8.525391, 47.827908 ], [ 8.316650, 47.613570 ], [ 7.470703, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.016257 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.460984 ], [ 6.240234, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.163330, 50.805935 ], [ 5.987549, 51.849353 ], [ 6.591797, 51.849353 ], [ 6.844482, 52.227799 ], [ 7.097168, 53.140181 ], [ 6.910400, 53.481508 ], [ 7.097168, 53.690201 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.569336, 54.393352 ], [ 8.525391, 54.965002 ], [ 9.283447, 54.832336 ], [ 9.920654, 54.983918 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.379150, 42.317939 ], [ 22.884521, 42.000325 ], [ 22.950439, 41.335576 ], [ 22.763672, 41.302571 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.145570 ], [ 21.752930, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.016846, 40.838749 ], [ 20.786133, 40.979898 ], [ 20.610352, 41.087632 ], [ 20.467529, 41.516804 ], [ 20.588379, 41.853196 ], [ 20.720215, 41.845013 ], [ 20.764160, 42.049293 ], [ 21.357422, 42.204107 ], [ 21.917725, 42.301690 ], [ 22.379150, 42.317939 ] ] ], [ [ [ 16.567383, 46.505954 ], [ 16.885986, 46.377254 ], [ 17.633057, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.905300 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.855869 ], [ 19.368896, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.456787, 43.564472 ], [ 19.215088, 43.524655 ], [ 19.489746, 43.349150 ], [ 19.632568, 43.213183 ], [ 19.962158, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.072021, 42.585444 ], [ 19.808350, 42.496403 ], [ 19.742432, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.951320 ], [ 18.885498, 42.277309 ], [ 18.446045, 42.480200 ], [ 17.512207, 42.851806 ], [ 16.929932, 43.205176 ], [ 16.018066, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.380859, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.908447, 45.073521 ], [ 14.260254, 45.236218 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.677979, 45.483244 ], [ 13.721924, 45.498647 ], [ 14.414062, 45.467836 ], [ 14.600830, 45.637087 ], [ 14.941406, 45.467836 ], [ 15.325928, 45.452424 ], [ 15.325928, 45.729191 ], [ 15.677490, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.567383, 46.505954 ] ] ], [ [ [ 19.324951, 49.567978 ], [ 19.830322, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.325122 ], [ 21.610107, 49.468124 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.821333 ], [ 22.082520, 48.421910 ], [ 21.873779, 48.319734 ], [ 20.808105, 48.625647 ], [ 20.478516, 48.560250 ], [ 20.236816, 48.327039 ], [ 19.775391, 48.202710 ], [ 19.665527, 48.268569 ], [ 19.171143, 48.107431 ], [ 18.775635, 48.078079 ], [ 18.698730, 47.879513 ], [ 17.863770, 47.754098 ], [ 17.490234, 47.864774 ], [ 16.984863, 48.122101 ], [ 16.885986, 48.465637 ], [ 17.105713, 48.814099 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.900838 ], [ 17.918701, 48.994636 ], [ 18.105469, 49.045070 ], [ 18.171387, 49.267805 ], [ 18.402100, 49.310799 ], [ 18.555908, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.432413 ], [ 19.324951, 49.567978 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.567383, 46.505954 ], [ 16.885986, 46.377254 ], [ 17.633057, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.905300 ], [ 19.599609, 46.172223 ], [ 20.225830, 46.126556 ], [ 20.764160, 45.736860 ], [ 20.874023, 45.413876 ], [ 21.489258, 45.182037 ], [ 21.566162, 44.770137 ], [ 22.148438, 44.480830 ], [ 22.456055, 44.699898 ], [ 22.708740, 44.574817 ], [ 22.478027, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.609863, 42.900113 ], [ 22.434082, 42.577355 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.317939 ], [ 22.884521, 42.000325 ], [ 22.950439, 41.335576 ], [ 22.763672, 41.302571 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.145570 ], [ 21.752930, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.016846, 40.838749 ], [ 20.786133, 40.979898 ], [ 20.610352, 41.087632 ], [ 20.467529, 41.516804 ], [ 20.588379, 41.853196 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.317939 ], [ 20.072021, 42.585444 ], [ 19.808350, 42.496403 ], [ 19.742432, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.951320 ], [ 18.885498, 42.277309 ], [ 18.446045, 42.480200 ], [ 17.512207, 42.851806 ], [ 16.929932, 43.205176 ], [ 16.018066, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.380859, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.908447, 45.073521 ], [ 14.260254, 45.236218 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.677979, 45.483244 ], [ 13.721924, 45.498647 ], [ 14.414062, 45.467836 ], [ 14.600830, 45.637087 ], [ 14.941406, 45.467836 ], [ 15.325928, 45.452424 ], [ 15.325928, 45.729191 ], [ 15.677490, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.567383, 46.505954 ] ] ], [ [ [ 45.878906, 66.861082 ], [ 45.878906, 42.057450 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.714732 ], [ 43.934326, 42.553080 ], [ 43.758545, 42.738944 ], [ 42.396240, 43.221190 ], [ 40.924072, 43.381098 ], [ 40.078125, 43.548548 ], [ 39.957275, 43.436966 ], [ 38.682861, 44.276671 ], [ 37.540283, 44.653024 ], [ 36.672363, 45.243953 ], [ 37.408447, 45.406164 ], [ 38.232422, 46.240652 ], [ 37.672119, 46.634351 ], [ 39.144287, 47.040182 ], [ 39.122314, 47.264320 ], [ 38.221436, 47.100045 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.902344, 48.231991 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.303636 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.922935 ], [ 38.012695, 49.915862 ], [ 37.397461, 50.380502 ], [ 36.628418, 50.226124 ], [ 35.354004, 50.576260 ], [ 35.375977, 50.771208 ], [ 35.024414, 51.206883 ], [ 34.222412, 51.255040 ], [ 34.145508, 51.563412 ], [ 34.398193, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.234528 ], [ 32.409668, 52.288323 ], [ 32.156982, 52.059246 ], [ 31.783447, 52.099757 ], [ 31.541748, 52.742943 ], [ 31.311035, 53.074228 ], [ 31.497803, 53.166534 ], [ 32.310791, 53.133590 ], [ 32.695312, 53.350551 ], [ 32.409668, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.794434, 53.975474 ], [ 31.387939, 54.156001 ], [ 30.761719, 54.813348 ], [ 30.970459, 55.078367 ], [ 30.871582, 55.547281 ], [ 29.893799, 55.788929 ], [ 29.377441, 55.671389 ], [ 29.234619, 55.918430 ], [ 28.179932, 56.170023 ], [ 27.861328, 56.758746 ], [ 27.773438, 57.243394 ], [ 27.290039, 57.474497 ], [ 26.466064, 57.474497 ], [ 25.609131, 57.844751 ], [ 25.169678, 57.967331 ], [ 24.312744, 57.792089 ], [ 24.433594, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.345947, 59.187185 ], [ 24.609375, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.472989 ], [ 29.113770, 60.026441 ], [ 28.070068, 60.500525 ], [ 26.257324, 60.424699 ], [ 24.499512, 60.059358 ], [ 22.873535, 59.844815 ], [ 22.291260, 60.392148 ], [ 21.324463, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.060791, 62.608508 ], [ 21.533203, 63.189064 ], [ 22.445068, 63.816440 ], [ 24.730225, 64.900250 ], [ 25.400391, 65.109148 ], [ 25.290527, 65.535721 ], [ 23.906250, 66.004618 ], [ 23.565674, 66.394761 ], [ 23.565674, 66.513260 ], [ 23.554688, 66.861082 ], [ 41.121826, 66.861082 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.189697, 66.631198 ], [ 33.453369, 66.513260 ], [ 34.815674, 65.901653 ], [ 34.881592, 65.435435 ], [ 34.947510, 64.415921 ], [ 36.232910, 64.110602 ], [ 37.012939, 63.850354 ], [ 37.144775, 64.335150 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.141497 ], [ 39.594727, 64.520097 ], [ 40.440674, 64.764759 ], [ 39.759521, 65.494741 ], [ 42.099609, 66.473823 ], [ 43.022461, 66.416748 ], [ 43.956299, 66.067090 ], [ 44.329834, 66.513260 ], [ 44.538574, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.878906, 66.861082 ] ] ], [ [ [ 19.324951, 49.567978 ], [ 19.830322, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.325122 ], [ 21.610107, 49.468124 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.821333 ], [ 22.082520, 48.421910 ], [ 21.873779, 48.319734 ], [ 20.808105, 48.625647 ], [ 20.478516, 48.560250 ], [ 20.236816, 48.327039 ], [ 19.775391, 48.202710 ], [ 19.665527, 48.268569 ], [ 19.171143, 48.107431 ], [ 18.775635, 48.078079 ], [ 18.698730, 47.879513 ], [ 17.863770, 47.754098 ], [ 17.490234, 47.864774 ], [ 16.984863, 48.122101 ], [ 16.885986, 48.465637 ], [ 17.105713, 48.814099 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.900838 ], [ 17.918701, 48.994636 ], [ 18.105469, 49.045070 ], [ 18.171387, 49.267805 ], [ 18.402100, 49.310799 ], [ 18.555908, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.432413 ], [ 19.324951, 49.567978 ] ] ], [ [ [ 21.269531, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.763672, 54.857640 ], [ 22.653809, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.895996, 54.310114 ], [ 19.665527, 54.425322 ], [ 19.885254, 54.863963 ], [ 21.269531, 55.191412 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.599609, 46.172223 ], [ 20.225830, 46.126556 ], [ 20.764160, 45.736860 ], [ 20.874023, 45.413876 ], [ 21.489258, 45.182037 ], [ 21.566162, 44.770137 ], [ 22.148438, 44.480830 ], [ 22.456055, 44.699898 ], [ 22.708740, 44.574817 ], [ 22.478027, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.609863, 42.900113 ], [ 22.434082, 42.577355 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.317939 ], [ 21.917725, 42.301690 ], [ 21.357422, 42.204107 ], [ 20.764160, 42.049293 ], [ 20.720215, 41.845013 ], [ 20.588379, 41.853196 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.317939 ], [ 20.072021, 42.585444 ], [ 20.258789, 42.811522 ], [ 20.335693, 42.900113 ], [ 19.962158, 43.109004 ], [ 19.632568, 43.213183 ], [ 19.489746, 43.349150 ], [ 19.215088, 43.524655 ], [ 19.456787, 43.564472 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.855869 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.905300 ], [ 19.599609, 46.172223 ] ] ], [ [ [ 45.878906, 66.861082 ], [ 45.878906, 42.057450 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.714732 ], [ 43.934326, 42.553080 ], [ 43.758545, 42.738944 ], [ 42.396240, 43.221190 ], [ 40.924072, 43.381098 ], [ 40.078125, 43.548548 ], [ 39.957275, 43.436966 ], [ 38.682861, 44.276671 ], [ 37.540283, 44.653024 ], [ 36.672363, 45.243953 ], [ 37.408447, 45.406164 ], [ 38.232422, 46.240652 ], [ 37.672119, 46.634351 ], [ 39.144287, 47.040182 ], [ 39.122314, 47.264320 ], [ 38.221436, 47.100045 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.902344, 48.231991 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.303636 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.922935 ], [ 38.012695, 49.915862 ], [ 37.397461, 50.380502 ], [ 36.628418, 50.226124 ], [ 35.354004, 50.576260 ], [ 35.375977, 50.771208 ], [ 35.024414, 51.206883 ], [ 34.222412, 51.255040 ], [ 34.145508, 51.563412 ], [ 34.398193, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.234528 ], [ 32.409668, 52.288323 ], [ 32.156982, 52.059246 ], [ 31.783447, 52.099757 ], [ 31.541748, 52.742943 ], [ 31.311035, 53.074228 ], [ 31.497803, 53.166534 ], [ 32.310791, 53.133590 ], [ 32.695312, 53.350551 ], [ 32.409668, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.794434, 53.975474 ], [ 31.387939, 54.156001 ], [ 30.761719, 54.813348 ], [ 30.970459, 55.078367 ], [ 30.871582, 55.547281 ], [ 29.893799, 55.788929 ], [ 29.377441, 55.671389 ], [ 29.234619, 55.918430 ], [ 28.179932, 56.170023 ], [ 27.861328, 56.758746 ], [ 27.773438, 57.243394 ], [ 27.290039, 57.474497 ], [ 27.718506, 57.792089 ], [ 27.421875, 58.722599 ], [ 28.135986, 59.299552 ], [ 27.982178, 59.472989 ], [ 29.113770, 60.026441 ], [ 28.070068, 60.500525 ], [ 26.257324, 60.424699 ], [ 24.499512, 60.059358 ], [ 22.873535, 59.844815 ], [ 22.291260, 60.392148 ], [ 21.324463, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.060791, 62.608508 ], [ 21.533203, 63.189064 ], [ 22.445068, 63.816440 ], [ 24.730225, 64.900250 ], [ 25.400391, 65.109148 ], [ 25.290527, 65.535721 ], [ 23.906250, 66.004618 ], [ 23.565674, 66.394761 ], [ 23.565674, 66.513260 ], [ 23.554688, 66.861082 ], [ 41.121826, 66.861082 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.189697, 66.631198 ], [ 33.453369, 66.513260 ], [ 34.815674, 65.901653 ], [ 34.881592, 65.435435 ], [ 34.947510, 64.415921 ], [ 36.232910, 64.110602 ], [ 37.012939, 63.850354 ], [ 37.144775, 64.335150 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.141497 ], [ 39.594727, 64.520097 ], [ 40.440674, 64.764759 ], [ 39.759521, 65.494741 ], [ 42.099609, 66.473823 ], [ 43.022461, 66.416748 ], [ 43.956299, 66.067090 ], [ 44.329834, 66.513260 ], [ 44.538574, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.878906, 66.861082 ] ] ], [ [ [ 21.269531, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.763672, 54.857640 ], [ 22.653809, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.895996, 54.310114 ], [ 19.665527, 54.425322 ], [ 19.885254, 54.863963 ], [ 21.269531, 55.191412 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.619873, 48.217353 ], [ 26.927490, 48.122101 ], [ 27.235107, 47.827908 ], [ 27.553711, 47.405785 ], [ 28.125000, 46.807580 ], [ 28.157959, 46.369674 ], [ 28.059082, 45.943511 ], [ 28.234863, 45.490946 ], [ 28.685303, 45.305803 ], [ 29.146729, 45.460131 ], [ 29.608154, 45.290347 ], [ 29.630127, 45.034715 ], [ 29.146729, 44.816916 ], [ 28.839111, 44.910359 ], [ 28.564453, 43.707594 ], [ 27.971191, 43.810747 ], [ 27.246094, 44.174325 ], [ 26.070557, 43.945372 ], [ 25.565186, 43.683764 ], [ 24.104004, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.950439, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.478027, 44.410240 ], [ 22.708740, 44.574817 ], [ 22.456055, 44.699898 ], [ 22.148438, 44.480830 ], [ 21.566162, 44.770137 ], [ 21.489258, 45.182037 ], [ 20.874023, 45.413876 ], [ 20.764160, 45.736860 ], [ 20.225830, 46.126556 ], [ 21.027832, 46.316584 ], [ 21.632080, 46.995241 ], [ 22.104492, 47.672786 ], [ 22.708740, 47.879513 ], [ 23.148193, 48.092757 ], [ 23.763428, 47.982568 ], [ 24.400635, 47.982568 ], [ 24.873047, 47.739323 ], [ 25.213623, 47.886881 ], [ 25.949707, 47.982568 ], [ 26.202393, 48.217353 ], [ 26.619873, 48.217353 ] ] ], [ [ [ 24.862061, 56.371335 ], [ 25.004883, 56.163906 ], [ 25.532227, 56.096556 ], [ 26.499023, 55.615589 ], [ 27.103271, 55.782751 ], [ 28.179932, 56.170023 ], [ 29.234619, 55.918430 ], [ 29.377441, 55.671389 ], [ 29.893799, 55.788929 ], [ 30.871582, 55.547281 ], [ 30.970459, 55.078367 ], [ 30.761719, 54.813348 ], [ 31.387939, 54.156001 ], [ 31.794434, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.409668, 53.618579 ], [ 32.695312, 53.350551 ], [ 32.310791, 53.133590 ], [ 31.497803, 53.166534 ], [ 31.311035, 53.074228 ], [ 31.541748, 52.742943 ], [ 31.783447, 52.099757 ], [ 30.926514, 52.038977 ], [ 30.618896, 51.822198 ], [ 30.552979, 51.316881 ], [ 30.157471, 51.412912 ], [ 29.256592, 51.364921 ], [ 28.992920, 51.604372 ], [ 28.619385, 51.426614 ], [ 28.245850, 51.570241 ], [ 27.454834, 51.590723 ], [ 26.334229, 51.828988 ], [ 25.334473, 51.910391 ], [ 24.554443, 51.890054 ], [ 24.005127, 51.618017 ], [ 23.532715, 51.577070 ], [ 24.027100, 50.701677 ], [ 23.928223, 50.422519 ], [ 23.422852, 50.310392 ], [ 22.521973, 49.475263 ], [ 22.774658, 49.023461 ], [ 22.554932, 49.088258 ], [ 21.610107, 49.468124 ], [ 20.885010, 49.325122 ], [ 20.412598, 49.432413 ], [ 19.830322, 49.217597 ], [ 19.324951, 49.567978 ], [ 18.907471, 49.432413 ], [ 18.391113, 49.986552 ], [ 17.655029, 50.050085 ], [ 17.556152, 50.359480 ], [ 16.875000, 50.471491 ], [ 16.721191, 50.212064 ], [ 16.182861, 50.422519 ], [ 16.237793, 50.694718 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.103522 ], [ 14.611816, 51.747439 ], [ 14.688721, 52.086257 ], [ 14.436035, 52.623060 ], [ 14.073486, 52.981723 ], [ 14.359131, 53.245495 ], [ 14.117432, 53.755207 ], [ 14.809570, 54.052939 ], [ 16.369629, 54.514704 ], [ 17.622070, 54.851315 ], [ 18.621826, 54.680183 ], [ 18.698730, 54.438103 ], [ 19.665527, 54.425322 ], [ 20.895996, 54.310114 ], [ 22.730713, 54.329338 ], [ 22.653809, 54.584797 ], [ 22.763672, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.060791, 56.029087 ], [ 22.203369, 56.334812 ], [ 23.884277, 56.273861 ], [ 24.862061, 56.371335 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.862061, 56.371335 ], [ 25.004883, 56.163906 ], [ 25.532227, 56.096556 ], [ 26.499023, 55.615589 ], [ 27.103271, 55.782751 ], [ 28.179932, 56.170023 ], [ 29.234619, 55.918430 ], [ 29.377441, 55.671389 ], [ 29.893799, 55.788929 ], [ 30.871582, 55.547281 ], [ 30.970459, 55.078367 ], [ 30.761719, 54.813348 ], [ 31.387939, 54.156001 ], [ 31.794434, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.409668, 53.618579 ], [ 32.695312, 53.350551 ], [ 32.310791, 53.133590 ], [ 31.497803, 53.166534 ], [ 31.311035, 53.074228 ], [ 31.541748, 52.742943 ], [ 31.783447, 52.099757 ], [ 30.926514, 52.038977 ], [ 30.618896, 51.822198 ], [ 30.552979, 51.316881 ], [ 30.157471, 51.412912 ], [ 29.256592, 51.364921 ], [ 28.992920, 51.604372 ], [ 28.619385, 51.426614 ], [ 28.245850, 51.570241 ], [ 27.454834, 51.590723 ], [ 26.334229, 51.828988 ], [ 25.334473, 51.910391 ], [ 24.554443, 51.890054 ], [ 24.005127, 51.618017 ], [ 23.532715, 51.577070 ], [ 24.027100, 50.701677 ], [ 23.928223, 50.422519 ], [ 23.422852, 50.310392 ], [ 22.521973, 49.475263 ], [ 22.774658, 49.023461 ], [ 22.554932, 49.088258 ], [ 21.610107, 49.468124 ], [ 20.885010, 49.325122 ], [ 20.412598, 49.432413 ], [ 19.830322, 49.217597 ], [ 19.324951, 49.567978 ], [ 18.907471, 49.432413 ], [ 18.391113, 49.986552 ], [ 17.655029, 50.050085 ], [ 17.556152, 50.359480 ], [ 16.875000, 50.471491 ], [ 16.721191, 50.212064 ], [ 16.182861, 50.422519 ], [ 16.237793, 50.694718 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.103522 ], [ 14.611816, 51.747439 ], [ 14.688721, 52.086257 ], [ 14.436035, 52.623060 ], [ 14.073486, 52.981723 ], [ 14.359131, 53.245495 ], [ 14.117432, 53.755207 ], [ 14.809570, 54.052939 ], [ 16.369629, 54.514704 ], [ 17.622070, 54.851315 ], [ 18.621826, 54.680183 ], [ 18.698730, 54.438103 ], [ 19.665527, 54.425322 ], [ 20.895996, 54.310114 ], [ 22.730713, 54.329338 ], [ 22.653809, 54.584797 ], [ 22.763672, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.060791, 56.029087 ], [ 22.203369, 56.334812 ], [ 23.884277, 56.273861 ], [ 24.862061, 56.371335 ] ] ], [ [ [ 25.861816, 59.612212 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.472989 ], [ 28.135986, 59.299552 ], [ 27.421875, 58.722599 ], [ 27.718506, 57.792089 ], [ 27.290039, 57.474497 ], [ 26.466064, 57.474497 ], [ 25.609131, 57.844751 ], [ 25.169678, 57.967331 ], [ 24.312744, 57.792089 ], [ 24.433594, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.345947, 59.187185 ], [ 24.609375, 59.467408 ], [ 25.861816, 59.612212 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.950439, 43.826601 ], [ 23.334961, 43.897892 ], [ 24.104004, 43.739352 ], [ 25.565186, 43.683764 ], [ 26.070557, 43.945372 ], [ 27.246094, 44.174325 ], [ 27.971191, 43.810747 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.674561, 42.577355 ], [ 27.993164, 42.008489 ], [ 27.136230, 42.138968 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.236511 ], [ 24.488525, 41.582580 ], [ 23.697510, 41.310824 ], [ 22.950439, 41.335576 ], [ 22.884521, 42.000325 ], [ 22.379150, 42.317939 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.577355 ], [ 22.609863, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.653809, 44.237328 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.398193, 51.767840 ], [ 34.145508, 51.563412 ], [ 34.222412, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.771208 ], [ 35.354004, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.397461, 50.380502 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.922935 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.303636 ], [ 39.671631, 48.785152 ], [ 39.902344, 48.231991 ], [ 39.737549, 47.901614 ], [ 38.770752, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.100045 ], [ 37.430420, 47.017716 ], [ 36.760254, 46.694667 ], [ 35.826416, 46.641894 ], [ 34.958496, 46.271037 ], [ 35.024414, 45.652448 ], [ 35.507812, 45.406164 ], [ 36.529541, 45.467836 ], [ 36.331787, 45.112300 ], [ 35.244141, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.332520, 44.566991 ], [ 33.552246, 45.034715 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.750488, 46.331758 ], [ 31.673584, 46.702202 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.035109 ], [ 29.608154, 45.290347 ], [ 29.630127, 45.034715 ], [ 29.146729, 44.816916 ], [ 28.839111, 44.910359 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.674561, 42.577355 ], [ 27.993164, 42.008489 ], [ 27.136230, 42.138968 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.236511 ], [ 24.488525, 41.582580 ], [ 23.697510, 41.310824 ], [ 22.950439, 41.335576 ], [ 22.884521, 42.000325 ], [ 22.379150, 42.317939 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.577355 ], [ 22.609863, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.653809, 44.237328 ], [ 22.478027, 44.410240 ], [ 22.708740, 44.574817 ], [ 22.456055, 44.699898 ], [ 22.148438, 44.480830 ], [ 21.566162, 44.770137 ], [ 21.489258, 45.182037 ], [ 20.874023, 45.413876 ], [ 20.764160, 45.736860 ], [ 20.225830, 46.126556 ], [ 21.027832, 46.316584 ], [ 21.632080, 46.995241 ], [ 22.104492, 47.672786 ], [ 22.708740, 47.879513 ], [ 22.642822, 48.151428 ], [ 22.082520, 48.421910 ], [ 22.280273, 48.821333 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.023461 ], [ 22.521973, 49.475263 ], [ 23.422852, 50.310392 ], [ 23.928223, 50.422519 ], [ 24.027100, 50.701677 ], [ 23.532715, 51.577070 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.890054 ], [ 25.334473, 51.910391 ], [ 26.334229, 51.828988 ], [ 27.454834, 51.590723 ], [ 28.245850, 51.570241 ], [ 28.619385, 51.426614 ], [ 28.992920, 51.604372 ], [ 29.256592, 51.364921 ], [ 30.157471, 51.412912 ], [ 30.552979, 51.316881 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.038977 ], [ 31.783447, 52.099757 ], [ 32.156982, 52.059246 ], [ 32.409668, 52.288323 ], [ 32.717285, 52.234528 ], [ 33.750000, 52.335339 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.878906, 42.884015 ], [ 0.000000, 42.666281 ], [ 0.340576, 42.577355 ], [ 0.703125, 42.795401 ], [ 1.823730, 42.342305 ], [ 2.988281, 42.472097 ], [ 3.043213, 41.894100 ], [ 2.098389, 41.228249 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.680638 ], [ 0.318604, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.884015 ] ] ], [ [ [ 40.078125, 43.548548 ], [ 40.924072, 43.381098 ], [ 42.396240, 43.221190 ], [ 43.758545, 42.738944 ], [ 43.934326, 42.553080 ], [ 44.538574, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.472412, 42.504503 ], [ 45.780029, 42.090070 ], [ 45.878906, 42.057450 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.269550 ], [ 44.978027, 41.244772 ], [ 43.582764, 41.087632 ], [ 42.615967, 41.582580 ], [ 41.550293, 41.533254 ], [ 41.704102, 41.959490 ], [ 41.451416, 42.642041 ], [ 40.880127, 43.012681 ], [ 40.319824, 43.125043 ], [ 39.957275, 43.436966 ], [ 40.078125, 43.548548 ] ] ], [ [ [ 33.750000, 52.335339 ], [ 34.398193, 51.767840 ], [ 34.145508, 51.563412 ], [ 34.222412, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.771208 ], [ 35.354004, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.397461, 50.380502 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.922935 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.303636 ], [ 39.671631, 48.785152 ], [ 39.902344, 48.231991 ], [ 39.737549, 47.901614 ], [ 38.770752, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.100045 ], [ 37.430420, 47.017716 ], [ 36.760254, 46.694667 ], [ 35.826416, 46.641894 ], [ 34.958496, 46.271037 ], [ 35.024414, 45.652448 ], [ 35.507812, 45.406164 ], [ 36.529541, 45.467836 ], [ 36.331787, 45.112300 ], [ 35.244141, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.332520, 44.566991 ], [ 33.552246, 45.034715 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.750488, 46.331758 ], [ 31.673584, 46.702202 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.035109 ], [ 29.608154, 45.290347 ], [ 29.146729, 45.460131 ], [ 28.685303, 45.305803 ], [ 28.234863, 45.490946 ], [ 28.059082, 45.943511 ], [ 28.157959, 46.369674 ], [ 28.125000, 46.807580 ], [ 27.553711, 47.405785 ], [ 27.235107, 47.827908 ], [ 26.927490, 48.122101 ], [ 26.619873, 48.217353 ], [ 26.202393, 48.217353 ], [ 25.949707, 47.982568 ], [ 25.213623, 47.886881 ], [ 24.873047, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.763428, 47.982568 ], [ 23.148193, 48.092757 ], [ 22.708740, 47.879513 ], [ 22.642822, 48.151428 ], [ 22.082520, 48.421910 ], [ 22.280273, 48.821333 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.023461 ], [ 22.521973, 49.475263 ], [ 23.422852, 50.310392 ], [ 23.928223, 50.422519 ], [ 24.027100, 50.701677 ], [ 23.532715, 51.577070 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.890054 ], [ 25.334473, 51.910391 ], [ 26.334229, 51.828988 ], [ 27.454834, 51.590723 ], [ 28.245850, 51.570241 ], [ 28.619385, 51.426614 ], [ 28.992920, 51.604372 ], [ 29.256592, 51.364921 ], [ 30.157471, 51.412912 ], [ 30.552979, 51.316881 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.038977 ], [ 31.783447, 52.099757 ], [ 32.156982, 52.059246 ], [ 32.409668, 52.288323 ], [ 32.717285, 52.234528 ], [ 33.750000, 52.335339 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.878906, 42.884015 ], [ 0.000000, 42.666281 ], [ 0.340576, 42.577355 ], [ 0.703125, 42.795401 ], [ 1.823730, 42.342305 ], [ 2.988281, 42.472097 ], [ 3.043213, 41.894100 ], [ 2.098389, 41.228249 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.680638 ], [ 0.318604, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.884015 ] ] ], [ [ [ 40.078125, 43.548548 ], [ 40.924072, 43.381098 ], [ 42.396240, 43.221190 ], [ 43.758545, 42.738944 ], [ 43.934326, 42.553080 ], [ 44.538574, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.472412, 42.504503 ], [ 45.780029, 42.090070 ], [ 45.878906, 42.057450 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.269550 ], [ 44.978027, 41.244772 ], [ 43.582764, 41.087632 ], [ 43.637695, 40.979898 ], [ 43.758545, 40.738933 ], [ 43.670654, 40.313043 ], [ 27.158203, 40.313043 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.455307 ], [ 29.102783, 40.979898 ], [ 29.245605, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.354736, 41.738528 ], [ 33.519287, 42.016652 ], [ 35.167236, 42.041134 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.353271, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.517822, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.550293, 41.533254 ], [ 41.704102, 41.959490 ], [ 41.451416, 42.642041 ], [ 40.880127, 43.012681 ], [ 40.319824, 43.125043 ], [ 39.957275, 43.436966 ], [ 40.078125, 43.548548 ] ] ], [ [ [ 19.742432, 42.690511 ], [ 19.808350, 42.496403 ], [ 20.072021, 42.585444 ], [ 20.280762, 42.317939 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.853196 ], [ 20.467529, 41.516804 ], [ 20.610352, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.752930, 40.979898 ], [ 22.060547, 41.145570 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.828642 ], [ 27.136230, 42.138968 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.992920, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 40.996484 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.608887, 40.313043 ], [ 26.246338, 40.313043 ], [ 26.048584, 40.613952 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.180908, 40.313043 ], [ 22.983398, 40.313043 ], [ 22.818604, 40.472024 ], [ 22.675781, 40.313043 ], [ 19.390869, 40.313043 ], [ 19.324951, 40.722283 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.544678, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.742432, 42.690511 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.742432, 42.690511 ], [ 19.808350, 42.496403 ], [ 20.072021, 42.585444 ], [ 20.280762, 42.317939 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.853196 ], [ 20.467529, 41.516804 ], [ 20.610352, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.838749 ], [ 21.005859, 40.580585 ], [ 20.676270, 40.430224 ], [ 20.654297, 40.313043 ], [ 19.390869, 40.313043 ], [ 19.324951, 40.722283 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.544678, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.742432, 42.690511 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 40.313043 ], [ 43.670654, 40.313043 ], [ 43.758545, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.087632 ], [ 44.978027, 41.244772 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.353271, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.517822, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.550293, 41.533254 ], [ 42.615967, 41.582580 ], [ 43.582764, 41.087632 ], [ 43.637695, 40.979898 ], [ 43.758545, 40.738933 ], [ 43.670654, 40.313043 ], [ 27.158203, 40.313043 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.455307 ], [ 29.102783, 40.979898 ], [ 29.245605, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.354736, 41.738528 ], [ 33.519287, 42.016652 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.136230, 42.138968 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.992920, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 40.996484 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.608887, 40.313043 ], [ 26.246338, 40.313043 ], [ 26.048584, 40.613952 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.180908, 40.313043 ], [ 22.983398, 40.313043 ], [ 22.818604, 40.472024 ], [ 22.675781, 40.313043 ], [ 20.654297, 40.313043 ], [ 20.676270, 40.430224 ], [ 21.005859, 40.580585 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.752930, 40.979898 ], [ 22.060547, 41.145570 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.828642 ], [ 27.136230, 42.138968 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 40.313043 ], [ 45.747070, 40.313043 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.978027, 41.244772 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.978027, 41.244772 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.747070, 40.313043 ], [ 43.670654, 40.313043 ], [ 43.758545, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.087632 ], [ 44.978027, 41.244772 ] ] ] } } ] } ] } , @@ -437,25 +475,31 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.121094, 9.026153 ], [ 45.000000, 8.700499 ], [ 46.944580, 7.993957 ], [ 47.790527, 8.004837 ], [ 45.000000, 5.036227 ], [ 44.967041, 5.003394 ], [ 44.121094, 4.970560 ], [ 44.121094, 9.026153 ] ] ], [ [ [ 44.121094, 39.385264 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.970185 ], [ 44.769287, 37.169072 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 46.076660, 35.675147 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.750640 ], [ 45.417480, 33.970698 ], [ 46.109619, 33.017876 ], [ 47.340088, 32.463426 ], [ 47.845459, 31.709476 ], [ 47.691650, 30.987028 ], [ 48.010254, 30.987028 ], [ 48.021240, 30.448674 ], [ 48.570557, 29.926374 ], [ 47.977295, 29.973970 ], [ 47.307129, 30.059586 ], [ 46.571045, 29.094577 ], [ 47.460938, 28.998532 ], [ 47.713623, 28.526622 ], [ 48.416748, 28.555576 ], [ 48.812256, 27.693256 ], [ 49.295654, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.686730 ], [ 50.218506, 26.273714 ], [ 50.119629, 25.938287 ], [ 50.240479, 25.601902 ], [ 50.526123, 25.324167 ], [ 50.657959, 24.996016 ], [ 50.811768, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.394043, 24.627045 ], [ 51.580811, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 22.998852 ], [ 55.008545, 22.492257 ], [ 55.206299, 22.705255 ], [ 55.667725, 21.993989 ], [ 54.997559, 19.993998 ], [ 51.998291, 18.999803 ], [ 49.119873, 18.615013 ], [ 48.186035, 18.166730 ], [ 47.471924, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.277219 ], [ 46.373291, 17.235252 ], [ 45.406494, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.121094, 17.413546 ], [ 44.121094, 39.385264 ] ] ], [ [ [ 48.757324, 41.640078 ], [ 49.108887, 41.286062 ], [ 49.328613, 40.979898 ], [ 49.625244, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.394287, 40.254377 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.229736, 39.044786 ], [ 48.856201, 38.814031 ], [ 48.889160, 38.315801 ], [ 48.636475, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.361816, 39.291797 ], [ 48.065186, 39.580290 ], [ 47.691650, 39.504041 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.461644 ], [ 46.032715, 39.631077 ], [ 45.615234, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.153842 ], [ 44.121094, 41.640078 ], [ 48.757324, 41.640078 ] ] ], [ [ [ 69.554443, 41.640078 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.663973 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.719971, 41.170384 ], [ 66.599121, 41.640078 ], [ 69.554443, 41.640078 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.736084, 39.470125 ], [ 45.736084, 39.317300 ], [ 46.142578, 38.736946 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 55.964355, 41.640078 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 55.118408, 41.640078 ], [ 55.964355, 41.640078 ] ] ], [ [ [ 44.121094, 40.094882 ], [ 44.395752, 40.002372 ], [ 44.791260, 39.715638 ], [ 44.121094, 39.436193 ], [ 44.121094, 40.094882 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.121094, 9.026153 ], [ 45.000000, 8.700499 ], [ 46.944580, 7.993957 ], [ 47.790527, 8.004837 ], [ 45.000000, 5.036227 ], [ 44.967041, 5.003394 ], [ 44.121094, 4.970560 ], [ 44.121094, 9.026153 ] ] ], [ [ [ 44.121094, 39.385264 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.970185 ], [ 44.769287, 37.169072 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 46.076660, 35.675147 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.750640 ], [ 45.417480, 33.970698 ], [ 46.109619, 33.017876 ], [ 47.340088, 32.463426 ], [ 47.845459, 31.709476 ], [ 47.691650, 30.987028 ], [ 48.010254, 30.987028 ], [ 48.021240, 30.448674 ], [ 48.570557, 29.926374 ], [ 47.977295, 29.973970 ], [ 47.307129, 30.059586 ], [ 46.571045, 29.094577 ], [ 47.460938, 28.998532 ], [ 47.713623, 28.526622 ], [ 48.416748, 28.555576 ], [ 48.812256, 27.693256 ], [ 49.295654, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.686730 ], [ 50.218506, 26.273714 ], [ 50.119629, 25.938287 ], [ 50.240479, 25.601902 ], [ 50.526123, 25.324167 ], [ 50.657959, 24.996016 ], [ 50.811768, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.394043, 24.627045 ], [ 51.580811, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 22.998852 ], [ 55.008545, 22.492257 ], [ 55.206299, 22.705255 ], [ 55.667725, 21.993989 ], [ 54.997559, 19.993998 ], [ 51.998291, 18.999803 ], [ 49.119873, 18.615013 ], [ 48.186035, 18.166730 ], [ 47.471924, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.277219 ], [ 46.373291, 17.235252 ], [ 45.406494, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.121094, 17.413546 ], [ 44.121094, 39.385264 ] ] ], [ [ [ 46.219482, 41.640078 ], [ 46.636963, 41.178654 ], [ 46.505127, 41.062786 ], [ 45.966797, 41.129021 ], [ 45.219727, 41.409776 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.153842 ], [ 44.121094, 41.640078 ], [ 46.219482, 41.640078 ] ] ], [ [ [ 48.339844, 41.640078 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.900635, 41.640078 ], [ 48.339844, 41.640078 ] ] ], [ [ [ 44.121094, 40.094882 ], [ 44.395752, 40.002372 ], [ 44.791260, 39.715638 ], [ 44.121094, 39.436193 ], [ 44.121094, 40.094882 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 47.307129, 30.059586 ], [ 47.977295, 29.973970 ], [ 48.186035, 29.535230 ], [ 48.098145, 29.305561 ], [ 48.416748, 28.555576 ], [ 47.713623, 28.526622 ], [ 47.460938, 28.998532 ], [ 46.571045, 29.094577 ], [ 47.307129, 30.059586 ] ] ], [ [ [ 60.051270, 41.640078 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.269550 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.380371, 40.052848 ], [ 63.522949, 39.359785 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.970185 ], [ 66.522217, 37.361426 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.657732 ], [ 65.588379, 37.300275 ], [ 64.742432, 37.107765 ], [ 64.544678, 36.315125 ], [ 63.984375, 36.004673 ], [ 63.193359, 35.853440 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.215820, 35.648369 ], [ 61.127930, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.413800 ], [ 58.436279, 37.518440 ], [ 57.326660, 38.030786 ], [ 56.623535, 38.117272 ], [ 56.184082, 37.935533 ], [ 55.513916, 37.961523 ], [ 54.799805, 37.387617 ], [ 53.920898, 37.195331 ], [ 53.734131, 37.900865 ], [ 53.876953, 38.950865 ], [ 53.096924, 39.291797 ], [ 53.360596, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.921143, 40.871988 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.946714 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.964844, 41.640078 ], [ 55.118408, 41.640078 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.997070, 41.640078 ], [ 60.051270, 41.640078 ] ] ], [ [ [ 78.706055, 41.640078 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.849365, 40.979898 ], [ 76.530762, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.363288 ], [ 73.828125, 39.892880 ], [ 73.959961, 39.656456 ], [ 73.674316, 39.427707 ], [ 71.784668, 39.274790 ], [ 70.554199, 39.605688 ], [ 69.466553, 39.529467 ], [ 69.565430, 40.103286 ], [ 70.653076, 39.935013 ], [ 71.015625, 40.245992 ], [ 71.773682, 40.145289 ], [ 73.059082, 40.863680 ], [ 72.795410, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.525030 ], [ 70.576172, 41.640078 ], [ 78.706055, 41.640078 ] ] ], [ [ [ 44.967041, 41.253032 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.615234, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.461644 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.736946 ], [ 45.736084, 39.317300 ], [ 45.736084, 39.470125 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.002372 ], [ 44.121094, 40.094882 ], [ 44.121094, 41.153842 ], [ 44.967041, 41.253032 ] ] ], [ [ [ 52.888184, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.569580, 41.640078 ], [ 52.888184, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.757324, 41.640078 ], [ 49.108887, 41.286062 ], [ 49.328613, 40.979898 ], [ 49.625244, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.394287, 40.254377 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.229736, 39.044786 ], [ 48.856201, 38.814031 ], [ 48.889160, 38.315801 ], [ 48.636475, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.361816, 39.291797 ], [ 48.065186, 39.580290 ], [ 47.691650, 39.504041 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.461644 ], [ 46.032715, 39.631077 ], [ 45.615234, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 44.967041, 41.253032 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.129021 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.219482, 41.640078 ], [ 46.900635, 41.640078 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.988281, 41.409776 ], [ 48.339844, 41.640078 ], [ 48.757324, 41.640078 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.736084, 39.470125 ], [ 45.736084, 39.317300 ], [ 46.142578, 38.736946 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 78.706055, 41.640078 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.849365, 40.979898 ], [ 76.530762, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.363288 ], [ 73.828125, 39.892880 ], [ 73.959961, 39.656456 ], [ 73.674316, 39.427707 ], [ 71.784668, 39.274790 ], [ 70.554199, 39.605688 ], [ 69.466553, 39.529467 ], [ 69.565430, 40.103286 ], [ 70.653076, 39.935013 ], [ 71.015625, 40.245992 ], [ 71.773682, 40.145289 ], [ 73.059082, 40.863680 ], [ 72.795410, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.525030 ], [ 70.576172, 41.640078 ], [ 78.706055, 41.640078 ] ] ], [ [ [ 69.554443, 41.640078 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.663973 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.719971, 41.170384 ], [ 66.599121, 41.640078 ], [ 69.554443, 41.640078 ] ] ], [ [ [ 55.964355, 41.640078 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 55.118408, 41.640078 ], [ 55.964355, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.359863, 26.391870 ], [ 56.491699, 26.303264 ], [ 56.392822, 25.898762 ], [ 56.260986, 25.710837 ], [ 56.392822, 24.926295 ], [ 56.843262, 24.236947 ], [ 57.403564, 23.875792 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.447021, 22.654572 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.115249 ], [ 58.491211, 20.427013 ], [ 58.040771, 20.478482 ], [ 57.832031, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.062118 ], [ 57.700195, 18.947856 ], [ 57.238770, 18.947856 ], [ 56.612549, 18.573362 ], [ 56.513672, 18.083201 ], [ 56.282959, 17.874203 ], [ 55.667725, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.272217, 17.224758 ], [ 54.788818, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.646718 ], [ 51.998291, 18.999803 ], [ 54.997559, 19.993998 ], [ 55.667725, 21.993989 ], [ 55.206299, 22.705255 ], [ 55.008545, 22.492257 ], [ 51.998291, 22.998852 ], [ 51.613770, 24.016362 ], [ 51.580811, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.800537, 24.016362 ], [ 52.580566, 24.176825 ], [ 54.008789, 24.116675 ], [ 54.689941, 24.796708 ], [ 55.437012, 25.433353 ], [ 56.074219, 26.056783 ], [ 56.359863, 26.391870 ] ] ], [ [ [ 70.576172, 41.640078 ], [ 70.422363, 41.525030 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.059082, 40.863680 ], [ 71.773682, 40.145289 ], [ 71.015625, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.334717, 40.730608 ], [ 69.016113, 40.086477 ], [ 68.532715, 39.529467 ], [ 67.697754, 39.580290 ], [ 67.445068, 39.138582 ], [ 68.181152, 38.899583 ], [ 68.389893, 38.151837 ], [ 67.829590, 37.142803 ], [ 67.082520, 37.352693 ], [ 66.522217, 37.361426 ], [ 66.544189, 37.970185 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.522949, 39.359785 ], [ 62.380371, 40.052848 ], [ 61.929932, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.426253 ], [ 60.051270, 41.640078 ], [ 66.599121, 41.640078 ], [ 66.719971, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.663973 ], [ 68.818359, 40.979898 ], [ 69.071045, 41.385052 ], [ 69.554443, 41.640078 ], [ 70.576172, 41.640078 ] ] ], [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.602783, 25.214881 ], [ 51.394043, 24.627045 ], [ 51.108398, 24.557116 ], [ 50.811768, 24.756808 ], [ 50.745850, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ], [ [ [ 56.997070, 41.640078 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.964355, 41.640078 ], [ 56.997070, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.051270, 41.640078 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.269550 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.380371, 40.052848 ], [ 63.522949, 39.359785 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.970185 ], [ 66.522217, 37.361426 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.657732 ], [ 65.588379, 37.300275 ], [ 64.742432, 37.107765 ], [ 64.544678, 36.315125 ], [ 63.984375, 36.004673 ], [ 63.193359, 35.853440 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.215820, 35.648369 ], [ 61.127930, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.413800 ], [ 58.436279, 37.518440 ], [ 57.326660, 38.030786 ], [ 56.623535, 38.117272 ], [ 56.184082, 37.935533 ], [ 55.513916, 37.961523 ], [ 54.799805, 37.387617 ], [ 53.920898, 37.195331 ], [ 53.734131, 37.900865 ], [ 53.876953, 38.950865 ], [ 53.096924, 39.291797 ], [ 53.360596, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.921143, 40.871988 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.946714 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.964844, 41.640078 ], [ 55.118408, 41.640078 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.997070, 41.640078 ], [ 60.051270, 41.640078 ] ] ], [ [ [ 44.967041, 41.253032 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.615234, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.461644 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.736946 ], [ 45.736084, 39.317300 ], [ 45.736084, 39.470125 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.002372 ], [ 44.121094, 40.094882 ], [ 44.121094, 41.153842 ], [ 44.967041, 41.253032 ] ] ], [ [ [ 52.888184, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.569580, 41.640078 ], [ 52.888184, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.042480, 10.639014 ], [ 50.833740, 10.282491 ], [ 50.559082, 9.199715 ], [ 50.075684, 8.080985 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.746582, 4.214943 ], [ 46.571045, 2.855263 ], [ 45.560303, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.121094, 1.087581 ], [ 44.121094, 4.970560 ], [ 44.967041, 5.003394 ], [ 45.000000, 5.036227 ], [ 47.790527, 8.004837 ], [ 46.944580, 7.993957 ], [ 45.000000, 8.700499 ], [ 44.121094, 9.026153 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.541821 ], [ 45.560303, 10.692996 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.124507 ], [ 48.021240, 11.189180 ], [ 48.383789, 11.372339 ], [ 48.944092, 11.404649 ], [ 49.273682, 11.426187 ], [ 49.735107, 11.576907 ], [ 50.262451, 11.673755 ], [ 50.734863, 12.017830 ], [ 51.108398, 12.028576 ] ] ], [ [ [ 44.791260, 39.715638 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 46.142578, 38.736946 ], [ 46.505127, 38.771216 ], [ 47.691650, 39.504041 ], [ 48.065186, 39.580290 ], [ 48.361816, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.636475, 38.272689 ], [ 48.889160, 38.315801 ], [ 49.196777, 37.579413 ], [ 50.152588, 37.370157 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.195331 ], [ 54.799805, 37.387617 ], [ 55.513916, 37.961523 ], [ 56.184082, 37.935533 ], [ 56.623535, 38.117272 ], [ 57.326660, 38.030786 ], [ 58.436279, 37.518440 ], [ 59.238281, 37.413800 ], [ 60.380859, 36.527295 ], [ 61.127930, 36.491973 ], [ 61.215820, 35.648369 ], [ 60.809326, 34.406910 ], [ 60.534668, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.981020 ], [ 60.864258, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.787109, 30.732393 ], [ 60.875244, 29.831114 ], [ 62.556152, 29.315141 ], [ 63.555908, 29.468297 ], [ 64.149170, 29.343875 ], [ 64.346924, 29.554345 ], [ 65.050049, 29.468297 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.939697, 31.306715 ], [ 67.686768, 31.297328 ], [ 67.796631, 31.578535 ], [ 68.554688, 31.709476 ], [ 68.928223, 31.615966 ], [ 69.323730, 31.896214 ], [ 69.268799, 32.500496 ], [ 69.686279, 33.100745 ], [ 70.323486, 33.358062 ], [ 69.927979, 34.016242 ], [ 70.883789, 33.988918 ], [ 71.158447, 34.343436 ], [ 71.114502, 34.732584 ], [ 71.619873, 35.155846 ], [ 71.499023, 35.648369 ], [ 71.268311, 36.075742 ], [ 71.850586, 36.509636 ], [ 72.916260, 36.721274 ], [ 74.069824, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.897950 ], [ 77.838135, 35.496456 ], [ 76.871338, 34.651285 ], [ 75.761719, 34.506557 ], [ 74.245605, 34.750640 ], [ 73.751221, 34.316218 ], [ 74.102783, 33.440609 ], [ 74.454346, 32.759562 ], [ 75.256348, 32.268555 ], [ 74.410400, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.454590, 29.973970 ], [ 72.828369, 28.960089 ], [ 71.773682, 27.916767 ], [ 70.620117, 27.984700 ], [ 69.510498, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.279541, 25.720735 ], [ 70.850830, 25.214881 ], [ 71.048584, 24.357105 ], [ 68.840332, 24.357105 ], [ 68.181152, 23.694835 ], [ 67.445068, 23.946096 ], [ 67.148438, 24.666986 ], [ 66.379395, 25.423431 ], [ 64.533691, 25.234758 ], [ 62.907715, 25.214881 ], [ 61.501465, 25.075648 ], [ 59.622803, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.403564, 25.740529 ], [ 56.975098, 26.961246 ], [ 56.491699, 27.137368 ], [ 55.722656, 26.961246 ], [ 54.711914, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.576460 ], [ 51.525879, 27.868217 ], [ 50.855713, 28.815800 ], [ 50.119629, 30.145127 ], [ 49.581299, 29.983487 ], [ 48.944092, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.021240, 30.448674 ], [ 48.010254, 30.987028 ], [ 47.691650, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.340088, 32.463426 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.675147 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.219971, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.385264 ], [ 44.121094, 39.436193 ], [ 44.791260, 39.715638 ] ] ], [ [ [ 51.998291, 18.999803 ], [ 53.107910, 16.646718 ], [ 52.382812, 16.383391 ], [ 52.196045, 15.940202 ], [ 52.174072, 15.591293 ], [ 51.174316, 15.178181 ], [ 49.581299, 14.711135 ], [ 48.680420, 13.998037 ], [ 48.240967, 13.944730 ], [ 47.944336, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.293411 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.693933 ], [ 44.494629, 12.715368 ], [ 44.176025, 12.586732 ], [ 44.121094, 12.586732 ], [ 44.121094, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.219727, 17.434511 ], [ 45.406494, 17.329664 ], [ 46.373291, 17.235252 ], [ 46.746826, 17.277219 ], [ 46.999512, 16.951724 ], [ 47.471924, 17.119793 ], [ 48.186035, 18.166730 ], [ 49.119873, 18.615013 ], [ 51.998291, 18.999803 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.074219, 26.056783 ], [ 56.260986, 25.710837 ], [ 56.392822, 24.926295 ], [ 55.887451, 24.916331 ], [ 55.810547, 24.266997 ], [ 55.986328, 24.126702 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.523700 ], [ 55.239258, 23.110049 ], [ 55.206299, 22.705255 ], [ 55.008545, 22.492257 ], [ 51.998291, 22.998852 ], [ 51.613770, 24.016362 ], [ 51.580811, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.800537, 24.016362 ], [ 52.580566, 24.176825 ], [ 54.008789, 24.116675 ], [ 54.689941, 24.796708 ], [ 55.437012, 25.433353 ], [ 56.074219, 26.056783 ] ] ], [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.602783, 25.214881 ], [ 51.394043, 24.627045 ], [ 51.108398, 24.557116 ], [ 50.811768, 24.756808 ], [ 50.745850, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ], [ [ [ 47.307129, 30.059586 ], [ 47.977295, 29.973970 ], [ 48.186035, 29.535230 ], [ 48.098145, 29.305561 ], [ 48.416748, 28.555576 ], [ 47.713623, 28.526622 ], [ 47.460938, 28.998532 ], [ 46.571045, 29.094577 ], [ 47.307129, 30.059586 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 81.529541, 30.420256 ], [ 82.331543, 30.116622 ], [ 83.342285, 29.458731 ], [ 83.902588, 29.315141 ], [ 84.232178, 28.835050 ], [ 85.012207, 28.642389 ], [ 85.825195, 28.197927 ], [ 86.956787, 27.974998 ], [ 88.121338, 27.877928 ], [ 88.044434, 27.440040 ], [ 88.176270, 26.804461 ], [ 88.066406, 26.411551 ], [ 87.231445, 26.391870 ], [ 86.022949, 26.627818 ], [ 85.253906, 26.725987 ], [ 84.671631, 27.235095 ], [ 83.309326, 27.362011 ], [ 82.001953, 27.926474 ], [ 81.057129, 28.410728 ], [ 80.090332, 28.796546 ], [ 80.474854, 29.726222 ], [ 81.112061, 30.183122 ], [ 81.529541, 30.420256 ] ] ], [ [ [ 90.021973, 28.294707 ], [ 90.736084, 28.062286 ], [ 90.878906, 28.062286 ], [ 90.878906, 26.833875 ], [ 90.373535, 26.873081 ], [ 90.000000, 26.784847 ], [ 89.747314, 26.716174 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.293689 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.285033 ], [ 90.021973, 28.294707 ] ] ], [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.015625, 40.245992 ], [ 70.653076, 39.935013 ], [ 69.565430, 40.103286 ], [ 69.466553, 39.529467 ], [ 70.554199, 39.605688 ], [ 71.784668, 39.274790 ], [ 73.674316, 39.427707 ], [ 73.927002, 38.505191 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.376115 ], [ 74.827881, 37.987504 ], [ 74.981689, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.916260, 36.721274 ], [ 71.850586, 36.509636 ], [ 71.268311, 36.075742 ], [ 71.499023, 35.648369 ], [ 71.619873, 35.155846 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.343436 ], [ 70.883789, 33.988918 ], [ 69.927979, 34.016242 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.100745 ], [ 69.268799, 32.500496 ], [ 69.323730, 31.896214 ], [ 68.928223, 31.615966 ], [ 68.554688, 31.709476 ], [ 67.796631, 31.578535 ], [ 67.686768, 31.297328 ], [ 66.939697, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.050049, 29.468297 ], [ 64.346924, 29.554345 ], [ 64.149170, 29.343875 ], [ 63.555908, 29.468297 ], [ 62.556152, 29.315141 ], [ 60.875244, 29.831114 ], [ 61.787109, 30.732393 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.864258, 32.184911 ], [ 60.534668, 32.981020 ], [ 60.963135, 33.532237 ], [ 60.534668, 33.678640 ], [ 60.809326, 34.406910 ], [ 61.215820, 35.648369 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.853440 ], [ 63.984375, 36.004673 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.107765 ], [ 65.588379, 37.300275 ], [ 65.742188, 37.657732 ], [ 66.214600, 37.396346 ], [ 66.522217, 37.361426 ], [ 67.082520, 37.352693 ], [ 67.829590, 37.142803 ], [ 68.389893, 38.151837 ], [ 68.181152, 38.899583 ], [ 67.445068, 39.138582 ], [ 67.697754, 39.580290 ], [ 68.532715, 39.529467 ], [ 69.016113, 40.086477 ], [ 69.334717, 40.730608 ], [ 70.664062, 40.963308 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.042480, 10.639014 ], [ 50.833740, 10.282491 ], [ 50.559082, 9.199715 ], [ 50.075684, 8.080985 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.746582, 4.214943 ], [ 46.571045, 2.855263 ], [ 45.560303, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.121094, 1.087581 ], [ 44.121094, 4.970560 ], [ 44.967041, 5.003394 ], [ 45.000000, 5.036227 ], [ 47.790527, 8.004837 ], [ 46.944580, 7.993957 ], [ 45.000000, 8.700499 ], [ 44.121094, 9.026153 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.541821 ], [ 45.560303, 10.692996 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.124507 ], [ 48.021240, 11.189180 ], [ 48.383789, 11.372339 ], [ 48.944092, 11.404649 ], [ 49.273682, 11.426187 ], [ 49.735107, 11.576907 ], [ 50.262451, 11.673755 ], [ 50.734863, 12.017830 ], [ 51.108398, 12.028576 ] ] ], [ [ [ 80.145264, 9.817329 ], [ 80.837402, 9.264779 ], [ 81.309814, 8.559294 ], [ 81.793213, 7.525873 ], [ 81.639404, 6.479067 ], [ 81.221924, 6.195168 ], [ 80.354004, 5.965754 ], [ 79.870605, 6.762806 ], [ 79.694824, 8.200616 ], [ 80.145264, 9.817329 ] ] ], [ [ [ 70.576172, 41.640078 ], [ 70.422363, 41.525030 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.059082, 40.863680 ], [ 71.773682, 40.145289 ], [ 71.015625, 40.245992 ], [ 70.653076, 39.935013 ], [ 69.565430, 40.103286 ], [ 69.466553, 39.529467 ], [ 70.554199, 39.605688 ], [ 71.784668, 39.274790 ], [ 73.674316, 39.427707 ], [ 73.927002, 38.505191 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.376115 ], [ 74.827881, 37.987504 ], [ 74.981689, 37.422526 ], [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.897950 ], [ 77.838135, 35.496456 ], [ 78.914795, 34.325292 ], [ 78.815918, 33.504759 ], [ 79.211426, 32.990236 ], [ 79.178467, 32.481963 ], [ 78.464355, 32.620870 ], [ 78.739014, 31.512996 ], [ 79.727783, 30.883369 ], [ 81.112061, 30.183122 ], [ 81.529541, 30.420256 ], [ 82.331543, 30.116622 ], [ 83.342285, 29.458731 ], [ 83.902588, 29.315141 ], [ 84.232178, 28.835050 ], [ 85.012207, 28.642389 ], [ 85.825195, 28.197927 ], [ 86.956787, 27.974998 ], [ 88.121338, 27.877928 ], [ 88.736572, 28.081674 ], [ 88.813477, 27.293689 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.285033 ], [ 90.021973, 28.294707 ], [ 90.736084, 28.062286 ], [ 90.878906, 28.062286 ], [ 90.878906, 22.786311 ], [ 90.494385, 22.806567 ], [ 90.593262, 22.390714 ], [ 90.274658, 21.830907 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.034730 ], [ 89.703369, 21.851302 ], [ 89.417725, 21.963425 ], [ 89.033203, 22.055096 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.698265 ], [ 86.978760, 21.493964 ], [ 87.033691, 20.745840 ], [ 86.495361, 20.148785 ], [ 85.056152, 19.476950 ], [ 83.946533, 18.302381 ], [ 83.188477, 17.664960 ], [ 82.188721, 17.014768 ], [ 82.188721, 16.551962 ], [ 81.694336, 16.309596 ], [ 80.793457, 15.950766 ], [ 80.321045, 15.897942 ], [ 80.024414, 15.135764 ], [ 80.233154, 13.838080 ], [ 80.288086, 13.004558 ], [ 79.859619, 12.050065 ], [ 79.859619, 10.358151 ], [ 79.343262, 10.304110 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.210560 ], [ 78.277588, 8.928487 ], [ 77.947998, 8.254983 ], [ 77.541504, 7.961317 ], [ 76.596680, 8.895926 ], [ 76.135254, 10.293301 ], [ 75.750732, 11.307708 ], [ 75.399170, 11.781325 ], [ 74.860840, 12.736801 ], [ 74.619141, 13.987376 ], [ 74.443359, 14.615478 ], [ 73.531494, 15.993015 ], [ 73.125000, 17.926476 ], [ 72.817383, 19.207429 ], [ 72.828369, 20.416717 ], [ 72.630615, 21.350781 ], [ 71.180420, 20.756114 ], [ 70.477295, 20.879343 ], [ 69.169922, 22.085640 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.836946 ], [ 68.181152, 23.694835 ], [ 67.445068, 23.946096 ], [ 67.148438, 24.666986 ], [ 66.379395, 25.423431 ], [ 64.533691, 25.234758 ], [ 62.907715, 25.214881 ], [ 61.501465, 25.075648 ], [ 59.622803, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.403564, 25.740529 ], [ 56.975098, 26.961246 ], [ 56.491699, 27.137368 ], [ 55.722656, 26.961246 ], [ 54.711914, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.576460 ], [ 51.525879, 27.868217 ], [ 50.855713, 28.815800 ], [ 50.119629, 30.145127 ], [ 49.581299, 29.983487 ], [ 48.944092, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.021240, 30.448674 ], [ 48.010254, 30.987028 ], [ 47.691650, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.340088, 32.463426 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.675147 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.219971, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.385264 ], [ 44.121094, 39.436193 ], [ 44.791260, 39.715638 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 46.142578, 38.736946 ], [ 46.505127, 38.771216 ], [ 47.691650, 39.504041 ], [ 48.065186, 39.580290 ], [ 48.361816, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.636475, 38.272689 ], [ 48.889160, 38.315801 ], [ 49.196777, 37.579413 ], [ 50.152588, 37.370157 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.195331 ], [ 54.799805, 37.387617 ], [ 55.513916, 37.961523 ], [ 56.184082, 37.935533 ], [ 56.623535, 38.117272 ], [ 57.326660, 38.030786 ], [ 58.436279, 37.518440 ], [ 59.238281, 37.413800 ], [ 60.380859, 36.527295 ], [ 61.127930, 36.491973 ], [ 61.215820, 35.648369 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.853440 ], [ 63.984375, 36.004673 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.107765 ], [ 65.588379, 37.300275 ], [ 65.742188, 37.657732 ], [ 66.214600, 37.396346 ], [ 66.522217, 37.361426 ], [ 66.544189, 37.970185 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.522949, 39.359785 ], [ 62.380371, 40.052848 ], [ 61.929932, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.426253 ], [ 60.051270, 41.640078 ], [ 66.599121, 41.640078 ], [ 66.719971, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.663973 ], [ 68.818359, 40.979898 ], [ 69.071045, 41.385052 ], [ 69.554443, 41.640078 ], [ 70.576172, 41.640078 ] ] ], [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.236947 ], [ 57.403564, 23.875792 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.447021, 22.654572 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.115249 ], [ 58.491211, 20.427013 ], [ 58.040771, 20.478482 ], [ 57.832031, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.062118 ], [ 57.700195, 18.947856 ], [ 57.238770, 18.947856 ], [ 56.612549, 18.573362 ], [ 56.513672, 18.083201 ], [ 56.282959, 17.874203 ], [ 55.667725, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.272217, 17.224758 ], [ 54.788818, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.646718 ], [ 52.382812, 16.383391 ], [ 52.196045, 15.940202 ], [ 52.174072, 15.591293 ], [ 51.174316, 15.178181 ], [ 49.581299, 14.711135 ], [ 48.680420, 13.998037 ], [ 48.240967, 13.944730 ], [ 47.944336, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.293411 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.693933 ], [ 44.494629, 12.715368 ], [ 44.176025, 12.586732 ], [ 44.121094, 12.586732 ], [ 44.121094, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.219727, 17.434511 ], [ 45.406494, 17.329664 ], [ 46.373291, 17.235252 ], [ 46.746826, 17.277219 ], [ 46.999512, 16.951724 ], [ 47.471924, 17.119793 ], [ 48.186035, 18.166730 ], [ 49.119873, 18.615013 ], [ 51.998291, 18.999803 ], [ 54.997559, 19.993998 ], [ 55.667725, 21.993989 ], [ 55.206299, 22.705255 ], [ 55.239258, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.524902, 23.936055 ], [ 55.986328, 24.126702 ], [ 55.810547, 24.266997 ], [ 55.887451, 24.916331 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.997070, 41.640078 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.964355, 41.640078 ], [ 56.997070, 41.640078 ] ] ], [ [ [ 56.359863, 26.391870 ], [ 56.491699, 26.303264 ], [ 56.392822, 25.898762 ], [ 56.260986, 25.710837 ], [ 56.074219, 26.056783 ], [ 56.359863, 26.391870 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 80.145264, 9.817329 ], [ 80.837402, 9.264779 ], [ 81.309814, 8.559294 ], [ 81.793213, 7.525873 ], [ 81.639404, 6.479067 ], [ 81.221924, 6.195168 ], [ 80.354004, 5.965754 ], [ 79.870605, 6.762806 ], [ 79.694824, 8.200616 ], [ 80.145264, 9.817329 ] ] ], [ [ [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ], [ 90.736084, 28.062286 ], [ 90.021973, 28.294707 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.293689 ], [ 88.835449, 27.098254 ], [ 89.747314, 26.716174 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.873081 ], [ 90.878906, 26.833875 ], [ 90.878906, 22.786311 ], [ 90.494385, 22.806567 ], [ 90.593262, 22.390714 ], [ 90.274658, 21.830907 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.034730 ], [ 89.703369, 21.851302 ], [ 89.417725, 21.963425 ], [ 89.033203, 22.055096 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.698265 ], [ 86.978760, 21.493964 ], [ 87.033691, 20.745840 ], [ 86.495361, 20.148785 ], [ 85.056152, 19.476950 ], [ 83.946533, 18.302381 ], [ 83.188477, 17.664960 ], [ 82.188721, 17.014768 ], [ 82.188721, 16.551962 ], [ 81.694336, 16.309596 ], [ 80.793457, 15.950766 ], [ 80.321045, 15.897942 ], [ 80.024414, 15.135764 ], [ 80.233154, 13.838080 ], [ 80.288086, 13.004558 ], [ 79.859619, 12.050065 ], [ 79.859619, 10.358151 ], [ 79.343262, 10.304110 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.210560 ], [ 78.277588, 8.928487 ], [ 77.947998, 8.254983 ], [ 77.541504, 7.961317 ], [ 76.596680, 8.895926 ], [ 76.135254, 10.293301 ], [ 75.750732, 11.307708 ], [ 75.399170, 11.781325 ], [ 74.860840, 12.736801 ], [ 74.619141, 13.987376 ], [ 74.443359, 14.615478 ], [ 73.531494, 15.993015 ], [ 73.125000, 17.926476 ], [ 72.817383, 19.207429 ], [ 72.828369, 20.416717 ], [ 72.630615, 21.350781 ], [ 71.180420, 20.756114 ], [ 70.477295, 20.879343 ], [ 69.169922, 22.085640 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.836946 ], [ 68.181152, 23.694835 ], [ 68.840332, 24.357105 ], [ 71.048584, 24.357105 ], [ 70.850830, 25.214881 ], [ 70.279541, 25.720735 ], [ 70.169678, 26.490240 ], [ 69.510498, 26.941660 ], [ 70.620117, 27.984700 ], [ 71.773682, 27.916767 ], [ 72.828369, 28.960089 ], [ 73.454590, 29.973970 ], [ 74.421387, 30.977609 ], [ 74.410400, 31.690782 ], [ 75.256348, 32.268555 ], [ 74.454346, 32.759562 ], [ 74.102783, 33.440609 ], [ 73.751221, 34.316218 ], [ 74.245605, 34.750640 ], [ 75.761719, 34.506557 ], [ 76.871338, 34.651285 ], [ 77.838135, 35.496456 ], [ 76.190186, 35.897950 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.422526 ], [ 74.827881, 37.987504 ], [ 74.860840, 38.376115 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.427707 ], [ 73.959961, 39.656456 ], [ 73.828125, 39.892880 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.071069 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ] ], [ [ 81.529541, 30.420256 ], [ 81.112061, 30.183122 ], [ 80.474854, 29.726222 ], [ 80.090332, 28.796546 ], [ 81.057129, 28.410728 ], [ 82.001953, 27.926474 ], [ 83.309326, 27.362011 ], [ 84.671631, 27.235095 ], [ 85.253906, 26.725987 ], [ 86.022949, 26.627818 ], [ 87.231445, 26.391870 ], [ 88.066406, 26.411551 ], [ 88.176270, 26.804461 ], [ 88.044434, 27.440040 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.197927 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.835050 ], [ 83.902588, 29.315141 ], [ 83.342285, 29.458731 ], [ 82.331543, 30.116622 ], [ 81.529541, 30.420256 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ], [ 90.736084, 28.062286 ], [ 90.021973, 28.294707 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.293689 ], [ 88.736572, 28.081674 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.197927 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.835050 ], [ 83.902588, 29.315141 ], [ 83.342285, 29.458731 ], [ 82.331543, 30.116622 ], [ 81.529541, 30.420256 ], [ 81.112061, 30.183122 ], [ 79.727783, 30.883369 ], [ 78.739014, 31.512996 ], [ 78.464355, 32.620870 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.990236 ], [ 78.815918, 33.504759 ], [ 78.914795, 34.325292 ], [ 77.838135, 35.496456 ], [ 76.190186, 35.897950 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.422526 ], [ 74.827881, 37.987504 ], [ 74.860840, 38.376115 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.427707 ], [ 73.959961, 39.656456 ], [ 73.828125, 39.892880 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.071069 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.380502 ], [ 90.714111, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.802490, 49.468124 ], [ 87.747803, 49.296472 ], [ 87.363281, 49.217597 ], [ 86.605225, 48.545705 ], [ 85.770264, 48.458352 ], [ 85.726318, 47.450380 ], [ 85.166016, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.463379, 45.537137 ], [ 81.947021, 45.313529 ], [ 79.969482, 44.918139 ], [ 80.870361, 43.181147 ], [ 80.178223, 42.916206 ], [ 80.266113, 42.350425 ], [ 80.123291, 42.122673 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.062786 ], [ 76.849365, 40.979898 ], [ 76.530762, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.363288 ], [ 74.674072, 40.313043 ], [ 72.070312, 40.313043 ], [ 73.059082, 40.863680 ], [ 72.795410, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.516804 ], [ 71.257324, 42.163403 ], [ 70.960693, 42.269179 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.663973 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.719971, 41.170384 ], [ 66.511230, 41.983994 ], [ 66.027832, 41.992160 ], [ 66.104736, 42.996612 ], [ 64.907227, 43.723475 ], [ 63.182373, 43.651975 ], [ 62.017822, 43.500752 ], [ 61.062012, 44.402392 ], [ 58.502197, 45.583290 ], [ 55.931396, 44.995883 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.319076 ], [ 56.931152, 41.828642 ], [ 57.788086, 42.171546 ], [ 58.634033, 42.747012 ], [ 59.974365, 42.220382 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.261291 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.767334, 40.313043 ], [ 52.921143, 40.871988 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.946714 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.921143, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.503662, 41.779505 ], [ 52.448730, 42.024814 ], [ 52.690430, 42.439674 ], [ 52.503662, 42.787339 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.606113 ], [ 51.284180, 44.512176 ], [ 51.317139, 45.243953 ], [ 52.174072, 45.406164 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.233053 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.800059 ], [ 51.196289, 47.047669 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.680664, 45.637087 ], [ 46.680908, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.988576 ], [ 48.581543, 41.804078 ], [ 49.108887, 41.277806 ], [ 49.328613, 40.979898 ], [ 49.625244, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.328369, 40.313043 ], [ 44.121094, 40.313043 ], [ 44.121094, 66.271278 ], [ 44.527588, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.351318, 66.670387 ], [ 47.724609, 66.861082 ], [ 72.015381, 66.861082 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.927002, 66.791909 ], [ 73.959961, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.380502 ], [ 90.714111, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.802490, 49.468124 ], [ 87.747803, 49.296472 ], [ 87.363281, 49.217597 ], [ 86.835938, 49.823809 ], [ 85.539551, 49.688955 ], [ 85.122070, 50.113533 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.573730, 51.385495 ], [ 80.035400, 50.861444 ], [ 77.805176, 53.402982 ], [ 76.530762, 54.175297 ], [ 76.893311, 54.489187 ], [ 74.388428, 53.546836 ], [ 73.421631, 53.488046 ], [ 73.509521, 54.033586 ], [ 72.224121, 54.374158 ], [ 71.180420, 54.130260 ], [ 70.861816, 55.166319 ], [ 69.071045, 55.385352 ], [ 68.170166, 54.971308 ], [ 65.665283, 54.597528 ], [ 65.181885, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.664171 ], [ 61.699219, 52.981723 ], [ 60.743408, 52.716331 ], [ 60.930176, 52.449314 ], [ 59.974365, 51.957807 ], [ 61.589355, 51.268789 ], [ 61.336670, 50.798991 ], [ 59.930420, 50.840636 ], [ 59.644775, 50.541363 ], [ 58.359375, 51.062113 ], [ 56.777344, 51.041394 ], [ 55.722656, 50.618103 ], [ 54.536133, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.581543, 49.873398 ], [ 47.548828, 50.450509 ], [ 46.757812, 49.353756 ], [ 47.043457, 49.152970 ], [ 46.472168, 48.392738 ], [ 47.318115, 47.717154 ], [ 48.054199, 47.739323 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.558860 ], [ 49.097900, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.680664, 45.637087 ], [ 46.680908, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.988576 ], [ 48.581543, 41.804078 ], [ 47.988281, 41.401536 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.691895, 41.828642 ], [ 46.406250, 41.861379 ], [ 46.142578, 41.722131 ], [ 46.636963, 41.178654 ], [ 46.505127, 41.062786 ], [ 45.966797, 41.120746 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.244772 ], [ 44.121094, 41.153842 ], [ 44.121094, 66.271278 ], [ 44.527588, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.351318, 66.670387 ], [ 47.724609, 66.861082 ], [ 72.015381, 66.861082 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.927002, 66.791909 ], [ 73.959961, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.406250, 41.861379 ], [ 46.691895, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.988281, 41.401536 ], [ 48.581543, 41.804078 ], [ 49.108887, 41.277806 ], [ 49.328613, 40.979898 ], [ 49.625244, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.328369, 40.313043 ], [ 45.747070, 40.313043 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.244772 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.120746 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.142578, 41.722131 ], [ 46.406250, 41.861379 ] ] ], [ [ [ 69.071045, 55.385352 ], [ 70.861816, 55.166319 ], [ 71.180420, 54.130260 ], [ 72.224121, 54.374158 ], [ 73.509521, 54.033586 ], [ 73.421631, 53.488046 ], [ 74.388428, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.530762, 54.175297 ], [ 77.805176, 53.402982 ], [ 80.035400, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.947021, 50.812877 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.122070, 50.113533 ], [ 85.539551, 49.688955 ], [ 86.835938, 49.823809 ], [ 87.363281, 49.217597 ], [ 86.605225, 48.545705 ], [ 85.770264, 48.458352 ], [ 85.726318, 47.450380 ], [ 85.166016, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.463379, 45.537137 ], [ 81.947021, 45.313529 ], [ 79.969482, 44.918139 ], [ 80.870361, 43.181147 ], [ 80.178223, 42.916206 ], [ 80.266113, 42.350425 ], [ 80.123291, 42.122673 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.062786 ], [ 76.849365, 40.979898 ], [ 76.530762, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.363288 ], [ 74.674072, 40.313043 ], [ 72.070312, 40.313043 ], [ 73.059082, 40.863680 ], [ 72.795410, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.516804 ], [ 71.257324, 42.163403 ], [ 70.960693, 42.269179 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.663973 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.719971, 41.170384 ], [ 66.511230, 41.983994 ], [ 66.027832, 41.992160 ], [ 66.104736, 42.996612 ], [ 64.907227, 43.723475 ], [ 63.182373, 43.651975 ], [ 62.017822, 43.500752 ], [ 61.062012, 44.402392 ], [ 58.502197, 45.583290 ], [ 55.931396, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 54.755859, 42.041134 ], [ 54.085693, 42.326062 ], [ 52.943115, 42.114524 ], [ 52.503662, 41.779505 ], [ 52.448730, 42.024814 ], [ 52.690430, 42.439674 ], [ 52.503662, 42.787339 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.606113 ], [ 51.284180, 44.512176 ], [ 51.317139, 45.243953 ], [ 52.174072, 45.406164 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.233053 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.800059 ], [ 51.196289, 47.047669 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.558860 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.739323 ], [ 47.318115, 47.717154 ], [ 46.472168, 48.392738 ], [ 47.043457, 49.152970 ], [ 46.757812, 49.353756 ], [ 47.548828, 50.450509 ], [ 48.581543, 49.873398 ], [ 48.702393, 50.604159 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.536133, 51.027576 ], [ 55.722656, 50.618103 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.062113 ], [ 59.644775, 50.541363 ], [ 59.930420, 50.840636 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.268789 ], [ 59.974365, 51.957807 ], [ 60.930176, 52.449314 ], [ 60.743408, 52.716331 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.664171 ], [ 61.435547, 54.007769 ], [ 65.181885, 54.354956 ], [ 65.665283, 54.597528 ], [ 68.170166, 54.971308 ], [ 69.071045, 55.385352 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 58.502197, 45.583290 ], [ 61.062012, 44.402392 ], [ 62.017822, 43.500752 ], [ 63.182373, 43.651975 ], [ 64.907227, 43.723475 ], [ 66.104736, 42.996612 ], [ 66.027832, 41.992160 ], [ 66.511230, 41.983994 ], [ 66.719971, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.663973 ], [ 68.818359, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.163403 ], [ 70.422363, 41.516804 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.059082, 40.863680 ], [ 72.070312, 40.313043 ], [ 62.248535, 40.313043 ], [ 61.929932, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.545410, 41.261291 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.220382 ], [ 58.634033, 42.747012 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.319076 ], [ 55.964355, 41.310824 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.583290 ] ] ], [ [ [ 90.878906, 50.380502 ], [ 90.878906, 40.313043 ], [ 74.674072, 40.313043 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.062786 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.123291, 42.122673 ], [ 80.266113, 42.350425 ], [ 80.178223, 42.916206 ], [ 80.870361, 43.181147 ], [ 79.969482, 44.918139 ], [ 81.947021, 45.313529 ], [ 82.463379, 45.537137 ], [ 83.177490, 47.331377 ], [ 85.166016, 47.002734 ], [ 85.726318, 47.450380 ], [ 85.770264, 48.458352 ], [ 86.605225, 48.545705 ], [ 87.363281, 49.217597 ], [ 87.747803, 49.296472 ], [ 88.802490, 49.468124 ], [ 90.000000, 50.007739 ], [ 90.714111, 50.331436 ], [ 90.878906, 50.380502 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.967041, 41.244772 ], [ 45.000000, 41.211722 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.747070, 40.313043 ], [ 44.121094, 40.313043 ], [ 44.121094, 41.153842 ], [ 44.967041, 41.244772 ] ] ], [ [ [ 58.634033, 42.747012 ], [ 59.974365, 42.220382 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.261291 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.767334, 40.313043 ], [ 52.921143, 40.871988 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.946714 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.921143, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.503662, 41.779505 ], [ 52.943115, 42.114524 ], [ 54.085693, 42.326062 ], [ 54.755859, 42.041134 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.319076 ], [ 56.931152, 41.828642 ], [ 57.788086, 42.171546 ], [ 58.634033, 42.747012 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 58.502197, 45.583290 ], [ 61.062012, 44.402392 ], [ 62.017822, 43.500752 ], [ 63.182373, 43.651975 ], [ 64.907227, 43.723475 ], [ 66.104736, 42.996612 ], [ 66.027832, 41.992160 ], [ 66.511230, 41.983994 ], [ 66.719971, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.663973 ], [ 68.818359, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.163403 ], [ 70.422363, 41.516804 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.059082, 40.863680 ], [ 72.070312, 40.313043 ], [ 62.248535, 40.313043 ], [ 61.929932, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.545410, 41.261291 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.220382 ], [ 58.634033, 42.747012 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.319076 ], [ 55.964355, 41.310824 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.583290 ] ] ], [ [ [ 90.878906, 50.380502 ], [ 90.878906, 46.995241 ], [ 90.285645, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.857422, 48.070738 ], [ 88.011475, 48.596592 ], [ 87.747803, 49.296472 ], [ 88.802490, 49.468124 ], [ 90.000000, 50.007739 ], [ 90.714111, 50.331436 ], [ 90.878906, 50.380502 ] ] ], [ [ [ 90.878906, 46.611715 ], [ 90.878906, 45.367584 ], [ 90.582275, 45.721522 ], [ 90.878906, 46.611715 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.747803, 49.296472 ], [ 88.011475, 48.596592 ], [ 88.857422, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.285645, 47.694974 ], [ 90.878906, 46.995241 ], [ 90.878906, 46.611715 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.674072, 40.313043 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.062786 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.123291, 42.122673 ], [ 80.266113, 42.350425 ], [ 80.178223, 42.916206 ], [ 80.870361, 43.181147 ], [ 79.969482, 44.918139 ], [ 81.947021, 45.313529 ], [ 82.463379, 45.537137 ], [ 83.177490, 47.331377 ], [ 85.166016, 47.002734 ], [ 85.726318, 47.450380 ], [ 85.770264, 48.458352 ], [ 86.605225, 48.545705 ], [ 87.363281, 49.217597 ], [ 87.747803, 49.296472 ] ] ] } } ] } ] } , @@ -497,19 +541,23 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 96.119385, 29.449165 ], [ 96.591797, 28.825425 ], [ 96.251221, 28.410728 ], [ 97.327881, 28.256006 ], [ 97.910156, 28.333395 ], [ 98.250732, 27.741885 ], [ 98.679199, 27.508271 ], [ 98.712158, 26.745610 ], [ 98.668213, 25.918526 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.895883 ], [ 98.657227, 24.066528 ], [ 98.898926, 23.140360 ], [ 99.536133, 22.948277 ], [ 99.239502, 22.116177 ], [ 99.986572, 21.739091 ], [ 100.415039, 21.555284 ], [ 101.151123, 21.851302 ], [ 101.184082, 21.432617 ], [ 101.271973, 21.197216 ], [ 101.799316, 21.176729 ], [ 101.656494, 22.319589 ], [ 102.172852, 22.461802 ], [ 102.711182, 22.705255 ], [ 103.502197, 22.705255 ], [ 104.479980, 22.816694 ], [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.732178, 22.796439 ], [ 106.567383, 22.217920 ], [ 107.039795, 21.810508 ], [ 108.050537, 21.555284 ], [ 106.721191, 20.694462 ], [ 105.886230, 19.746024 ], [ 105.666504, 19.051734 ], [ 107.358398, 16.699340 ], [ 108.270264, 16.077486 ], [ 108.874512, 15.273587 ], [ 109.335938, 13.421681 ], [ 109.204102, 11.662996 ], [ 108.369141, 11.005904 ], [ 107.226562, 10.358151 ], [ 106.402588, 9.524914 ], [ 105.161133, 8.602747 ], [ 104.798584, 9.243093 ], [ 105.073242, 9.914744 ], [ 104.337158, 10.487812 ], [ 105.205078, 10.887254 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.566144 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.200488 ], [ 106.501465, 14.572951 ], [ 106.040039, 13.880746 ], [ 105.216064, 14.275030 ], [ 104.282227, 14.413400 ], [ 102.985840, 14.221789 ], [ 102.348633, 13.389620 ], [ 102.590332, 12.189704 ], [ 101.689453, 12.640338 ], [ 100.832520, 12.629618 ], [ 100.975342, 13.410994 ], [ 100.096436, 13.400307 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.958030 ], [ 99.228516, 9.243093 ], [ 99.876709, 9.210560 ], [ 100.283203, 8.298470 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.850078 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.217012 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.525146, 7.340675 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.151855, 8.352823 ], [ 98.261719, 8.971897 ], [ 98.558350, 9.936388 ], [ 98.459473, 10.671404 ], [ 98.767090, 11.436955 ], [ 98.426514, 12.028576 ], [ 98.514404, 13.122280 ], [ 98.107910, 13.635310 ], [ 97.778320, 14.838612 ], [ 97.602539, 16.098598 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.372314, 15.718239 ], [ 94.812012, 15.802825 ], [ 94.185791, 16.035255 ], [ 94.537354, 17.277219 ], [ 94.328613, 18.208480 ], [ 93.537598, 19.362976 ], [ 93.669434, 19.725342 ], [ 93.076172, 19.849394 ], [ 92.373047, 20.673905 ], [ 92.087402, 21.186973 ], [ 92.021484, 21.698265 ], [ 91.834717, 22.177232 ], [ 91.417236, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.593262, 22.390714 ], [ 90.274658, 21.830907 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.034730 ], [ 89.703369, 21.851302 ], [ 89.417725, 21.963425 ], [ 89.121094, 22.034730 ], [ 89.121094, 27.644606 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.285033 ], [ 90.021973, 28.294707 ], [ 90.736084, 28.062286 ], [ 91.263428, 28.042895 ], [ 91.702881, 27.771051 ], [ 92.504883, 27.897349 ], [ 93.416748, 28.642389 ], [ 94.570312, 29.276816 ], [ 95.405273, 29.027355 ], [ 96.119385, 29.449165 ] ] ], [ [ [ 105.062256, 41.640078 ], [ 104.963379, 41.599013 ], [ 104.908447, 41.640078 ], [ 105.062256, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.136230, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.703448 ], [ 119.179688, 5.408211 ], [ 119.113770, 5.014339 ], [ 118.443604, 4.970560 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.302591 ], [ 115.861816, 4.302591 ], [ 115.521240, 3.162456 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.219390 ], [ 112.862549, 1.493971 ], [ 112.379150, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.977736 ], [ 110.511475, 0.769020 ], [ 109.830322, 1.340210 ], [ 109.665527, 2.010086 ], [ 110.401611, 1.658704 ], [ 111.170654, 1.845384 ], [ 111.368408, 2.690661 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.096636 ], [ 113.719482, 3.897138 ], [ 114.202881, 4.521666 ], [ 114.664307, 4.006740 ], [ 114.873047, 4.346411 ], [ 115.345459, 4.313546 ], [ 115.455322, 5.441022 ], [ 116.224365, 6.140555 ], [ 116.729736, 6.926427 ], [ 117.136230, 6.926427 ] ] ], [ [ [ 96.119385, 29.449165 ], [ 96.591797, 28.825425 ], [ 96.251221, 28.410728 ], [ 97.327881, 28.256006 ], [ 97.910156, 28.333395 ], [ 98.250732, 27.741885 ], [ 98.679199, 27.508271 ], [ 98.712158, 26.745610 ], [ 98.668213, 25.918526 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.895883 ], [ 98.657227, 24.066528 ], [ 98.898926, 23.140360 ], [ 99.536133, 22.948277 ], [ 99.239502, 22.116177 ], [ 99.986572, 21.739091 ], [ 100.415039, 21.555284 ], [ 101.151123, 21.851302 ], [ 101.184082, 21.432617 ], [ 101.271973, 21.197216 ], [ 101.799316, 21.176729 ], [ 101.656494, 22.319589 ], [ 102.172852, 22.461802 ], [ 102.711182, 22.705255 ], [ 103.502197, 22.705255 ], [ 104.479980, 22.816694 ], [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.732178, 22.796439 ], [ 106.567383, 22.217920 ], [ 107.039795, 21.810508 ], [ 108.050537, 21.555284 ], [ 106.721191, 20.694462 ], [ 105.886230, 19.746024 ], [ 105.666504, 19.051734 ], [ 107.358398, 16.699340 ], [ 108.270264, 16.077486 ], [ 108.874512, 15.273587 ], [ 109.335938, 13.421681 ], [ 109.204102, 11.662996 ], [ 108.369141, 11.005904 ], [ 107.226562, 10.358151 ], [ 106.402588, 9.524914 ], [ 105.161133, 8.602747 ], [ 104.798584, 9.243093 ], [ 105.073242, 9.914744 ], [ 104.337158, 10.487812 ], [ 103.502197, 10.628216 ], [ 103.095703, 11.156845 ], [ 102.590332, 12.189704 ], [ 101.689453, 12.640338 ], [ 100.832520, 12.629618 ], [ 100.975342, 13.410994 ], [ 100.096436, 13.400307 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.958030 ], [ 99.228516, 9.243093 ], [ 99.876709, 9.210560 ], [ 100.283203, 8.298470 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.850078 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.217012 ], [ 102.370605, 6.129631 ], [ 102.963867, 5.528511 ], [ 103.381348, 4.850154 ], [ 103.436279, 4.182073 ], [ 103.337402, 3.721745 ], [ 103.436279, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.625758 ], [ 104.227295, 1.296276 ], [ 103.524170, 1.230374 ], [ 102.579346, 1.966167 ], [ 101.392822, 2.756504 ], [ 101.271973, 3.272146 ], [ 100.700684, 3.940981 ], [ 100.557861, 4.762573 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.525146, 7.340675 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.151855, 8.352823 ], [ 98.261719, 8.971897 ], [ 98.558350, 9.936388 ], [ 98.459473, 10.671404 ], [ 98.767090, 11.436955 ], [ 98.426514, 12.028576 ], [ 98.514404, 13.122280 ], [ 98.107910, 13.635310 ], [ 97.778320, 14.838612 ], [ 97.602539, 16.098598 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.372314, 15.718239 ], [ 94.812012, 15.802825 ], [ 94.185791, 16.035255 ], [ 94.537354, 17.277219 ], [ 94.328613, 18.208480 ], [ 93.537598, 19.362976 ], [ 93.669434, 19.725342 ], [ 93.076172, 19.849394 ], [ 92.373047, 20.673905 ], [ 92.087402, 21.186973 ], [ 92.021484, 21.698265 ], [ 91.834717, 22.177232 ], [ 91.417236, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.593262, 22.390714 ], [ 90.274658, 21.830907 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.034730 ], [ 89.703369, 21.851302 ], [ 89.417725, 21.963425 ], [ 89.121094, 22.034730 ], [ 89.121094, 27.644606 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.285033 ], [ 90.021973, 28.294707 ], [ 90.736084, 28.062286 ], [ 91.263428, 28.042895 ], [ 91.702881, 27.771051 ], [ 92.504883, 27.897349 ], [ 93.416748, 28.642389 ], [ 94.570312, 29.276816 ], [ 95.405273, 29.027355 ], [ 96.119385, 29.449165 ] ] ], [ [ [ 105.062256, 41.640078 ], [ 104.963379, 41.599013 ], [ 104.908447, 41.640078 ], [ 105.062256, 41.640078 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.214844, 20.097206 ], [ 110.786133, 20.076570 ], [ 111.016846, 19.694314 ], [ 110.577393, 19.259294 ], [ 110.335693, 18.677471 ], [ 109.478760, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.632812, 19.362976 ], [ 109.116211, 19.818390 ], [ 110.214844, 20.097206 ] ] ], [ [ [ 129.704590, 41.640078 ], [ 129.671631, 41.599013 ], [ 129.704590, 40.979898 ], [ 129.704590, 40.880295 ], [ 129.188232, 40.663973 ], [ 129.012451, 40.480381 ], [ 128.638916, 40.187267 ], [ 127.968750, 40.027614 ], [ 127.540283, 39.757880 ], [ 127.507324, 39.325799 ], [ 127.386475, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.353271, 38.608286 ], [ 128.210449, 38.367502 ], [ 127.781982, 38.307181 ], [ 127.078857, 38.255436 ], [ 126.683350, 37.805444 ], [ 126.243896, 37.840157 ], [ 126.177979, 37.744657 ], [ 125.694580, 37.935533 ], [ 125.573730, 37.753344 ], [ 125.277100, 37.666429 ], [ 125.244141, 37.857507 ], [ 124.980469, 37.944198 ], [ 124.716797, 38.108628 ], [ 124.991455, 38.548165 ], [ 125.222168, 38.668356 ], [ 125.134277, 38.848264 ], [ 125.386963, 39.385264 ], [ 125.321045, 39.546412 ], [ 124.738770, 39.656456 ], [ 124.266357, 39.926588 ], [ 122.871094, 39.639538 ], [ 122.135010, 39.172659 ], [ 121.058350, 38.899583 ], [ 121.585693, 39.359785 ], [ 121.376953, 39.749434 ], [ 122.167969, 40.421860 ], [ 121.640625, 40.946714 ], [ 120.772705, 40.588928 ], [ 119.641113, 39.892880 ], [ 119.025879, 39.249271 ], [ 118.048096, 39.206719 ], [ 117.531738, 38.736946 ], [ 118.059082, 38.056742 ], [ 118.883057, 37.892196 ], [ 118.916016, 37.448697 ], [ 119.707031, 37.151561 ], [ 120.827637, 37.866181 ], [ 121.717529, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.650793 ], [ 120.640869, 36.111253 ], [ 119.663086, 35.612651 ], [ 119.157715, 34.912962 ], [ 120.234375, 34.361576 ], [ 120.618896, 33.376412 ], [ 121.234131, 32.463426 ], [ 121.904297, 31.690782 ], [ 121.893311, 30.949347 ], [ 121.267090, 30.675715 ], [ 121.508789, 30.145127 ], [ 122.091064, 29.831114 ], [ 121.937256, 29.017748 ], [ 121.684570, 28.226970 ], [ 121.124268, 28.130128 ], [ 120.399170, 27.049342 ], [ 119.586182, 25.740529 ], [ 118.663330, 24.547123 ], [ 117.279053, 23.624395 ], [ 115.894775, 22.786311 ], [ 114.763184, 22.664710 ], [ 114.158936, 22.217920 ], [ 113.807373, 22.543001 ], [ 113.247070, 22.055096 ], [ 111.840820, 21.545066 ], [ 110.786133, 21.391705 ], [ 110.445557, 20.344627 ], [ 109.896240, 20.282809 ], [ 109.632568, 21.002471 ], [ 109.863281, 21.391705 ], [ 108.522949, 21.718680 ], [ 108.050537, 21.555284 ], [ 107.039795, 21.810508 ], [ 106.567383, 22.217920 ], [ 106.732178, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.479980, 22.816694 ], [ 103.502197, 22.705255 ], [ 102.711182, 22.705255 ], [ 102.172852, 22.461802 ], [ 101.656494, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.271973, 21.197216 ], [ 101.184082, 21.432617 ], [ 101.151123, 21.851302 ], [ 100.415039, 21.555284 ], [ 99.986572, 21.739091 ], [ 99.239502, 22.116177 ], [ 99.536133, 22.948277 ], [ 98.898926, 23.140360 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.895883 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.918526 ], [ 98.712158, 26.745610 ], [ 98.679199, 27.508271 ], [ 98.250732, 27.741885 ], [ 97.910156, 28.333395 ], [ 97.327881, 28.256006 ], [ 96.251221, 28.410728 ], [ 96.591797, 28.825425 ], [ 96.119385, 29.449165 ], [ 95.405273, 29.027355 ], [ 94.570312, 29.276816 ], [ 93.416748, 28.642389 ], [ 92.504883, 27.897349 ], [ 91.702881, 27.771051 ], [ 91.263428, 28.042895 ], [ 90.736084, 28.062286 ], [ 90.021973, 28.294707 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.042895 ], [ 89.121094, 27.644606 ], [ 89.121094, 41.640078 ], [ 104.908447, 41.640078 ], [ 104.963379, 41.599013 ], [ 105.062256, 41.640078 ], [ 129.704590, 41.640078 ] ] ], [ [ [ 121.497803, 25.294371 ], [ 121.948242, 24.996016 ], [ 121.783447, 24.397133 ], [ 121.179199, 22.786311 ], [ 120.750732, 21.973614 ], [ 120.223389, 22.816694 ], [ 120.102539, 23.553917 ], [ 120.695801, 24.537129 ], [ 121.497803, 25.294371 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.136230, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.703448 ], [ 119.179688, 5.408211 ], [ 119.113770, 5.014339 ], [ 118.443604, 4.970560 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.302591 ], [ 115.861816, 4.302591 ], [ 115.521240, 3.162456 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.219390 ], [ 112.862549, 1.493971 ], [ 112.379150, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.977736 ], [ 110.511475, 0.769020 ], [ 109.830322, 1.340210 ], [ 109.665527, 2.010086 ], [ 110.401611, 1.658704 ], [ 111.170654, 1.845384 ], [ 111.368408, 2.690661 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.096636 ], [ 113.719482, 3.897138 ], [ 114.202881, 4.521666 ], [ 114.664307, 4.006740 ], [ 114.873047, 4.346411 ], [ 115.345459, 4.313546 ], [ 115.455322, 5.441022 ], [ 116.224365, 6.140555 ], [ 116.729736, 6.926427 ], [ 117.136230, 6.926427 ] ] ], [ [ [ 126.694336, 41.640078 ], [ 126.177979, 41.112469 ], [ 125.914307, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.266357, 39.926588 ], [ 122.871094, 39.639538 ], [ 122.135010, 39.172659 ], [ 121.058350, 38.899583 ], [ 121.585693, 39.359785 ], [ 121.376953, 39.749434 ], [ 122.167969, 40.421860 ], [ 121.640625, 40.946714 ], [ 120.772705, 40.588928 ], [ 119.641113, 39.892880 ], [ 119.025879, 39.249271 ], [ 118.048096, 39.206719 ], [ 117.531738, 38.736946 ], [ 118.059082, 38.056742 ], [ 118.883057, 37.892196 ], [ 118.916016, 37.448697 ], [ 119.707031, 37.151561 ], [ 120.827637, 37.866181 ], [ 121.717529, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.650793 ], [ 120.640869, 36.111253 ], [ 119.663086, 35.612651 ], [ 119.157715, 34.912962 ], [ 120.234375, 34.361576 ], [ 120.618896, 33.376412 ], [ 121.234131, 32.463426 ], [ 121.904297, 31.690782 ], [ 121.893311, 30.949347 ], [ 121.267090, 30.675715 ], [ 121.508789, 30.145127 ], [ 122.091064, 29.831114 ], [ 121.937256, 29.017748 ], [ 121.684570, 28.226970 ], [ 121.124268, 28.130128 ], [ 120.399170, 27.049342 ], [ 119.586182, 25.740529 ], [ 118.663330, 24.547123 ], [ 117.279053, 23.624395 ], [ 115.894775, 22.786311 ], [ 114.763184, 22.664710 ], [ 114.158936, 22.217920 ], [ 113.807373, 22.543001 ], [ 113.247070, 22.055096 ], [ 111.840820, 21.545066 ], [ 110.786133, 21.391705 ], [ 110.445557, 20.344627 ], [ 109.896240, 20.282809 ], [ 109.632568, 21.002471 ], [ 109.863281, 21.391705 ], [ 108.522949, 21.718680 ], [ 108.050537, 21.555284 ], [ 107.039795, 21.810508 ], [ 106.567383, 22.217920 ], [ 106.732178, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.479980, 22.816694 ], [ 103.502197, 22.705255 ], [ 102.711182, 22.705255 ], [ 102.172852, 22.461802 ], [ 101.656494, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.271973, 21.197216 ], [ 101.184082, 21.432617 ], [ 101.151123, 21.851302 ], [ 100.415039, 21.555284 ], [ 99.986572, 21.739091 ], [ 99.239502, 22.116177 ], [ 99.536133, 22.948277 ], [ 98.898926, 23.140360 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.895883 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.918526 ], [ 98.712158, 26.745610 ], [ 98.679199, 27.508271 ], [ 98.250732, 27.741885 ], [ 97.910156, 28.333395 ], [ 97.327881, 28.256006 ], [ 96.251221, 28.410728 ], [ 96.591797, 28.825425 ], [ 96.119385, 29.449165 ], [ 95.405273, 29.027355 ], [ 94.570312, 29.276816 ], [ 93.416748, 28.642389 ], [ 92.504883, 27.897349 ], [ 91.702881, 27.771051 ], [ 91.263428, 28.042895 ], [ 90.736084, 28.062286 ], [ 90.021973, 28.294707 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.042895 ], [ 89.121094, 27.644606 ], [ 89.121094, 41.640078 ], [ 104.908447, 41.640078 ], [ 104.963379, 41.599013 ], [ 105.062256, 41.640078 ], [ 126.694336, 41.640078 ] ] ], [ [ [ 106.501465, 14.572951 ], [ 107.380371, 14.200488 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.566144 ], [ 106.248779, 10.962764 ], [ 105.205078, 10.887254 ], [ 104.337158, 10.487812 ], [ 103.502197, 10.628216 ], [ 103.095703, 11.156845 ], [ 102.590332, 12.189704 ], [ 102.348633, 13.389620 ], [ 102.985840, 14.221789 ], [ 104.282227, 14.413400 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.880746 ], [ 106.501465, 14.572951 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.217012 ], [ 102.370605, 6.129631 ], [ 102.963867, 5.528511 ], [ 103.381348, 4.850154 ], [ 103.436279, 4.182073 ], [ 103.337402, 3.721745 ], [ 103.436279, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.625758 ], [ 104.227295, 1.296276 ], [ 103.524170, 1.230374 ], [ 102.579346, 1.966167 ], [ 101.392822, 2.756504 ], [ 101.271973, 3.272146 ], [ 100.700684, 3.940981 ], [ 100.557861, 4.762573 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.261230, 6.642783 ] ] ], [ [ [ 121.497803, 25.294371 ], [ 121.948242, 24.996016 ], [ 121.783447, 24.397133 ], [ 121.179199, 22.786311 ], [ 120.750732, 21.973614 ], [ 120.223389, 22.816694 ], [ 120.102539, 23.553917 ], [ 120.695801, 24.537129 ], [ 121.497803, 25.294371 ] ] ], [ [ [ 110.214844, 20.097206 ], [ 110.786133, 20.076570 ], [ 111.016846, 19.694314 ], [ 110.577393, 19.259294 ], [ 110.335693, 18.677471 ], [ 109.478760, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.632812, 19.362976 ], [ 109.116211, 19.818390 ], [ 110.214844, 20.097206 ] ] ], [ [ [ 128.155518, 41.640078 ], [ 128.210449, 41.467428 ], [ 127.342529, 41.500350 ], [ 127.133789, 41.640078 ], [ 128.155518, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.353271, 38.608286 ], [ 129.210205, 37.431251 ], [ 129.462891, 36.782892 ], [ 129.473877, 35.630512 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.885931 ], [ 127.386475, 34.470335 ], [ 126.485596, 34.388779 ], [ 126.375732, 34.930979 ], [ 126.562500, 35.684072 ], [ 126.123047, 36.721274 ], [ 126.859131, 36.897194 ], [ 126.177979, 37.744657 ], [ 126.243896, 37.840157 ], [ 126.683350, 37.805444 ], [ 127.078857, 38.255436 ], [ 127.781982, 38.307181 ], [ 128.210449, 38.367502 ], [ 128.353271, 38.608286 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.455322, 5.441022 ], [ 115.345459, 4.313546 ], [ 114.873047, 4.346411 ], [ 114.664307, 4.006740 ], [ 114.202881, 4.521666 ], [ 114.598389, 4.893941 ], [ 115.455322, 5.441022 ] ] ], [ [ [ 129.704590, 41.640078 ], [ 129.671631, 41.599013 ], [ 129.704590, 40.979898 ], [ 129.704590, 40.880295 ], [ 129.188232, 40.663973 ], [ 129.012451, 40.480381 ], [ 128.638916, 40.187267 ], [ 127.968750, 40.027614 ], [ 127.540283, 39.757880 ], [ 127.507324, 39.325799 ], [ 127.386475, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.353271, 38.608286 ], [ 129.210205, 37.431251 ], [ 129.462891, 36.782892 ], [ 129.473877, 35.630512 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.885931 ], [ 127.386475, 34.470335 ], [ 126.485596, 34.388779 ], [ 126.375732, 34.930979 ], [ 126.562500, 35.684072 ], [ 126.123047, 36.721274 ], [ 126.859131, 36.897194 ], [ 126.177979, 37.744657 ], [ 125.694580, 37.935533 ], [ 125.573730, 37.753344 ], [ 125.277100, 37.666429 ], [ 125.244141, 37.857507 ], [ 124.980469, 37.944198 ], [ 124.716797, 38.108628 ], [ 124.991455, 38.548165 ], [ 125.222168, 38.668356 ], [ 125.134277, 38.848264 ], [ 125.386963, 39.385264 ], [ 125.321045, 39.546412 ], [ 124.738770, 39.656456 ], [ 124.266357, 39.926588 ], [ 125.079346, 40.572240 ], [ 125.914307, 40.979898 ], [ 126.177979, 41.112469 ], [ 126.694336, 41.640078 ], [ 127.133789, 41.640078 ], [ 127.342529, 41.500350 ], [ 128.210449, 41.467428 ], [ 128.155518, 41.640078 ], [ 129.704590, 41.640078 ] ] ], [ [ [ 135.878906, 35.871247 ], [ 135.878906, 33.532237 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.341064, 34.370645 ], [ 132.154541, 33.906896 ], [ 130.989990, 33.888658 ], [ 132.000732, 33.146750 ], [ 131.330566, 31.447410 ], [ 130.682373, 31.024694 ], [ 130.198975, 31.419288 ], [ 130.451660, 32.314991 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.293804 ], [ 130.352783, 33.605470 ], [ 130.880127, 34.234512 ], [ 131.890869, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.728677 ], [ 135.000000, 35.657296 ], [ 135.681152, 35.523285 ], [ 135.878906, 35.871247 ] ] ], [ [ [ 133.901367, 34.361576 ], [ 134.637451, 34.143635 ], [ 134.769287, 33.806538 ], [ 134.208984, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.286133, 33.284620 ], [ 133.011475, 32.704111 ], [ 132.363281, 32.990236 ], [ 132.374268, 33.458943 ], [ 132.923584, 34.061761 ], [ 133.494873, 33.943360 ], [ 133.901367, 34.361576 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.878906, 35.871247 ], [ 135.878906, 33.532237 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.341064, 34.370645 ], [ 132.154541, 33.906896 ], [ 130.989990, 33.888658 ], [ 132.000732, 33.146750 ], [ 131.330566, 31.447410 ], [ 130.682373, 31.024694 ], [ 130.198975, 31.419288 ], [ 130.451660, 32.314991 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.293804 ], [ 130.352783, 33.605470 ], [ 130.880127, 34.234512 ], [ 131.890869, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.728677 ], [ 135.000000, 35.657296 ], [ 135.681152, 35.523285 ], [ 135.878906, 35.871247 ] ] ], [ [ [ 133.901367, 34.361576 ], [ 134.637451, 34.143635 ], [ 134.769287, 33.806538 ], [ 134.208984, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.286133, 33.284620 ], [ 133.011475, 32.704111 ], [ 132.363281, 32.990236 ], [ 132.374268, 33.458943 ], [ 132.923584, 34.061761 ], [ 133.494873, 33.943360 ], [ 133.901367, 34.361576 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.033203, -0.878872 ], [ 130.847168, -0.878872 ], [ 131.868896, -0.692122 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.636740 ], [ 125.244141, 1.417092 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.179443, 0.230712 ], [ 120.135498, 0.000000 ], [ 120.047607, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.560294 ], [ 120.882568, 1.307260 ], [ 121.673584, 1.010690 ], [ 122.926025, 0.878872 ], [ 124.079590, 0.911827 ], [ 125.068359, 1.636740 ] ] ], [ [ [ 127.935791, 2.174771 ], [ 128.001709, 1.625758 ], [ 128.594971, 1.537901 ], [ 128.693848, 1.131518 ], [ 128.638916, 0.252685 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.386230, -0.780005 ], [ 128.155518, -0.878872 ], [ 128.089600, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.606201, 1.812442 ], [ 127.935791, 2.174771 ] ] ], [ [ [ 117.015381, 4.302591 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.228271 ], [ 118.048096, 2.284551 ], [ 117.872314, 1.823423 ], [ 118.992920, 0.900842 ], [ 117.817383, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.487793, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.421875, -0.878872 ], [ 109.324951, -0.878872 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 2.010086 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.769020 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.900842 ], [ 112.379150, 1.406109 ], [ 112.862549, 1.493971 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.162456 ], [ 115.861816, 4.302591 ], [ 117.015381, 4.302591 ] ] ], [ [ [ 95.295410, 5.473832 ], [ 95.943604, 5.441022 ], [ 97.481689, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.689941, 3.173425 ], [ 100.645752, 2.097920 ], [ 101.656494, 2.086941 ], [ 102.502441, 1.395126 ], [ 103.073730, 0.560294 ], [ 103.842773, 0.098877 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.975830, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.449205 ], [ 97.174072, 3.305050 ], [ 96.427002, 3.864255 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.473832 ] ] ], [ [ [ 123.343506, -0.615223 ], [ 123.288574, -0.878872 ], [ 121.893311, -0.878872 ], [ 123.343506, -0.615223 ] ] ], [ [ [ 121.322021, 18.500447 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.343750, 18.218916 ], [ 122.178955, 17.811456 ], [ 122.519531, 17.088291 ], [ 122.255859, 16.256867 ], [ 121.662598, 15.929638 ], [ 121.508789, 15.125159 ], [ 121.728516, 14.328260 ], [ 122.255859, 14.221789 ], [ 122.706299, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.859863, 13.239945 ], [ 124.178467, 12.993853 ], [ 124.079590, 12.533115 ], [ 123.299561, 13.025966 ], [ 122.926025, 13.549881 ], [ 122.673340, 13.186468 ], [ 122.036133, 13.784737 ], [ 121.124268, 13.635310 ], [ 120.629883, 13.859414 ], [ 120.684814, 14.264383 ], [ 120.992432, 14.519780 ], [ 120.695801, 14.753635 ], [ 120.563965, 14.392118 ], [ 120.069580, 14.966013 ], [ 119.926758, 15.400728 ], [ 119.882812, 16.362310 ], [ 120.289307, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.717773, 18.500447 ], [ 121.322021, 18.500447 ] ] ], [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.474609, 7.743651 ], [ 126.540527, 7.188101 ], [ 126.199951, 6.271618 ], [ 125.837402, 7.297088 ], [ 125.364990, 6.784626 ], [ 125.683594, 6.053161 ], [ 125.397949, 5.583184 ], [ 124.222412, 6.162401 ], [ 123.936768, 6.882800 ], [ 124.244385, 7.362467 ], [ 123.607178, 7.830731 ], [ 123.299561, 7.416942 ], [ 122.827148, 7.460518 ], [ 122.091064, 6.893707 ], [ 121.926270, 7.188101 ], [ 122.310791, 8.037473 ], [ 122.947998, 8.320212 ], [ 123.486328, 8.689639 ], [ 123.837891, 8.244110 ], [ 124.606934, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.474854, 8.982749 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 124.266357, 12.554564 ], [ 125.233154, 12.533115 ], [ 125.507812, 12.157486 ], [ 125.782471, 11.049038 ], [ 125.013428, 11.307708 ], [ 125.035400, 10.973550 ], [ 125.277100, 10.358151 ], [ 124.804688, 10.131117 ], [ 124.760742, 10.833306 ], [ 124.464111, 10.887254 ], [ 124.299316, 11.490791 ], [ 124.892578, 11.415418 ], [ 124.881592, 11.792080 ], [ 124.266357, 12.554564 ] ] ], [ [ [ 124.079590, 11.232286 ], [ 123.980713, 10.282491 ], [ 123.629150, 9.947209 ], [ 123.310547, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.709057 ], [ 122.585449, 9.979671 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.876465 ], [ 123.497314, 10.941192 ], [ 123.343506, 10.260871 ], [ 124.079590, 11.232286 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.696045, 10.552622 ], [ 119.025879, 10.001310 ], [ 118.509521, 9.318990 ], [ 117.180176, 8.363693 ], [ 117.663574, 9.069551 ], [ 118.388672, 9.687398 ], [ 118.992920, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.888853 ], [ 122.486572, 11.576907 ], [ 123.123779, 11.587669 ], [ 123.101807, 11.167624 ], [ 122.640381, 10.736175 ], [ 122.003174, 10.444598 ], [ 121.970215, 10.908830 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.888853 ] ] ], [ [ [ 120.322266, 13.464422 ], [ 121.179199, 13.432367 ], [ 121.530762, 13.068777 ], [ 121.267090, 12.200442 ], [ 120.838623, 12.704651 ], [ 120.322266, 13.464422 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.033203, -0.878872 ], [ 130.847168, -0.878872 ], [ 131.868896, -0.692122 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.636740 ], [ 125.244141, 1.417092 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.179443, 0.230712 ], [ 120.135498, 0.000000 ], [ 120.047607, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.560294 ], [ 120.882568, 1.307260 ], [ 121.673584, 1.010690 ], [ 122.926025, 0.878872 ], [ 124.079590, 0.911827 ], [ 125.068359, 1.636740 ] ] ], [ [ [ 127.935791, 2.174771 ], [ 128.001709, 1.625758 ], [ 128.594971, 1.537901 ], [ 128.693848, 1.131518 ], [ 128.638916, 0.252685 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.386230, -0.780005 ], [ 128.155518, -0.878872 ], [ 128.089600, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.606201, 1.812442 ], [ 127.935791, 2.174771 ] ] ], [ [ [ 117.015381, 4.302591 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.228271 ], [ 118.048096, 2.284551 ], [ 117.872314, 1.823423 ], [ 118.992920, 0.900842 ], [ 117.817383, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.487793, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.421875, -0.878872 ], [ 109.324951, -0.878872 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 2.010086 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.769020 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.900842 ], [ 112.379150, 1.406109 ], [ 112.862549, 1.493971 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.162456 ], [ 115.861816, 4.302591 ], [ 117.015381, 4.302591 ] ] ], [ [ [ 95.295410, 5.473832 ], [ 95.943604, 5.441022 ], [ 97.481689, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.689941, 3.173425 ], [ 100.645752, 2.097920 ], [ 101.656494, 2.086941 ], [ 102.502441, 1.395126 ], [ 103.073730, 0.560294 ], [ 103.842773, 0.098877 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.975830, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.449205 ], [ 97.174072, 3.305050 ], [ 96.427002, 3.864255 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.473832 ] ] ], [ [ [ 123.343506, -0.615223 ], [ 123.288574, -0.878872 ], [ 121.893311, -0.878872 ], [ 123.343506, -0.615223 ] ] ], [ [ [ 121.322021, 18.500447 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.343750, 18.218916 ], [ 122.178955, 17.811456 ], [ 122.519531, 17.088291 ], [ 122.255859, 16.256867 ], [ 121.662598, 15.929638 ], [ 121.508789, 15.125159 ], [ 121.728516, 14.328260 ], [ 122.255859, 14.221789 ], [ 122.706299, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.859863, 13.239945 ], [ 124.178467, 12.993853 ], [ 124.079590, 12.533115 ], [ 123.299561, 13.025966 ], [ 122.926025, 13.549881 ], [ 122.673340, 13.186468 ], [ 122.036133, 13.784737 ], [ 121.124268, 13.635310 ], [ 120.629883, 13.859414 ], [ 120.684814, 14.264383 ], [ 120.992432, 14.519780 ], [ 120.695801, 14.753635 ], [ 120.563965, 14.392118 ], [ 120.069580, 14.966013 ], [ 119.926758, 15.400728 ], [ 119.882812, 16.362310 ], [ 120.289307, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.717773, 18.500447 ], [ 121.322021, 18.500447 ] ] ], [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.474609, 7.743651 ], [ 126.540527, 7.188101 ], [ 126.199951, 6.271618 ], [ 125.837402, 7.297088 ], [ 125.364990, 6.784626 ], [ 125.683594, 6.053161 ], [ 125.397949, 5.583184 ], [ 124.222412, 6.162401 ], [ 123.936768, 6.882800 ], [ 124.244385, 7.362467 ], [ 123.607178, 7.830731 ], [ 123.299561, 7.416942 ], [ 122.827148, 7.460518 ], [ 122.091064, 6.893707 ], [ 121.926270, 7.188101 ], [ 122.310791, 8.037473 ], [ 122.947998, 8.320212 ], [ 123.486328, 8.689639 ], [ 123.837891, 8.244110 ], [ 124.606934, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.474854, 8.982749 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 115.455322, 5.441022 ], [ 115.345459, 4.313546 ], [ 114.873047, 4.346411 ], [ 114.664307, 4.006740 ], [ 114.202881, 4.521666 ], [ 114.598389, 4.893941 ], [ 115.455322, 5.441022 ] ] ], [ [ [ 124.266357, 12.554564 ], [ 125.233154, 12.533115 ], [ 125.507812, 12.157486 ], [ 125.782471, 11.049038 ], [ 125.013428, 11.307708 ], [ 125.035400, 10.973550 ], [ 125.277100, 10.358151 ], [ 124.804688, 10.131117 ], [ 124.760742, 10.833306 ], [ 124.464111, 10.887254 ], [ 124.299316, 11.490791 ], [ 124.892578, 11.415418 ], [ 124.881592, 11.792080 ], [ 124.266357, 12.554564 ] ] ], [ [ [ 124.079590, 11.232286 ], [ 123.980713, 10.282491 ], [ 123.629150, 9.947209 ], [ 123.310547, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.709057 ], [ 122.585449, 9.979671 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.876465 ], [ 123.497314, 10.941192 ], [ 123.343506, 10.260871 ], [ 124.079590, 11.232286 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.696045, 10.552622 ], [ 119.025879, 10.001310 ], [ 118.509521, 9.318990 ], [ 117.180176, 8.363693 ], [ 117.663574, 9.069551 ], [ 118.388672, 9.687398 ], [ 118.992920, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.888853 ], [ 122.486572, 11.576907 ], [ 123.123779, 11.587669 ], [ 123.101807, 11.167624 ], [ 122.640381, 10.736175 ], [ 122.003174, 10.444598 ], [ 121.970215, 10.908830 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.888853 ] ] ], [ [ [ 120.322266, 13.464422 ], [ 121.179199, 13.432367 ], [ 121.530762, 13.068777 ], [ 121.267090, 12.200442 ], [ 120.838623, 12.704651 ], [ 120.322266, 13.464422 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 66.861082 ], [ 135.878906, 55.203953 ], [ 135.131836, 54.730964 ], [ 135.878906, 54.667478 ], [ 135.878906, 44.300264 ], [ 135.000000, 43.516689 ], [ 134.868164, 43.397065 ], [ 133.538818, 42.811522 ], [ 132.912598, 42.795401 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.220382 ], [ 130.396729, 42.277309 ], [ 129.968262, 41.943149 ], [ 129.671631, 41.599013 ], [ 129.704590, 40.979898 ], [ 129.704590, 40.880295 ], [ 129.188232, 40.663973 ], [ 129.012451, 40.480381 ], [ 128.792725, 40.313043 ], [ 122.036133, 40.313043 ], [ 122.167969, 40.421860 ], [ 121.640625, 40.946714 ], [ 120.772705, 40.588928 ], [ 120.311279, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 66.861082 ], [ 135.878906, 55.203953 ], [ 135.131836, 54.730964 ], [ 135.878906, 54.667478 ], [ 135.878906, 44.300264 ], [ 135.000000, 43.516689 ], [ 134.868164, 43.397065 ], [ 133.538818, 42.811522 ], [ 132.912598, 42.795401 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.220382 ], [ 130.638428, 42.391009 ], [ 130.638428, 42.900113 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.111254 ], [ 131.022949, 44.964798 ], [ 131.879883, 45.321254 ], [ 133.099365, 45.143305 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.212106 ], [ 134.505615, 47.576526 ], [ 135.000000, 48.429201 ], [ 135.032959, 48.480204 ], [ 135.000000, 48.472921 ], [ 133.374023, 48.180739 ], [ 132.506104, 47.791016 ], [ 130.989990, 47.791016 ], [ 130.583496, 48.727209 ], [ 129.396973, 49.439557 ], [ 127.661133, 49.759978 ], [ 127.287598, 50.736455 ], [ 126.936035, 51.351201 ], [ 126.562500, 51.781436 ], [ 125.947266, 52.789476 ], [ 125.068359, 53.159947 ], [ 123.574219, 53.455349 ], [ 122.244873, 53.429174 ], [ 121.003418, 53.252069 ], [ 120.179443, 52.756243 ], [ 120.728760, 52.516221 ], [ 120.739746, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.289551, 50.141706 ], [ 117.883301, 49.510944 ], [ 116.674805, 49.887557 ], [ 116.191406, 49.131408 ], [ 115.488281, 48.136767 ], [ 115.740967, 47.724545 ], [ 116.312256, 47.850031 ], [ 117.301025, 47.694974 ], [ 118.070068, 48.063397 ], [ 118.872070, 47.746711 ], [ 119.772949, 47.047669 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.421875, 46.672056 ], [ 116.718750, 46.384833 ], [ 115.982666, 45.729191 ], [ 114.466553, 45.336702 ], [ 113.466797, 44.809122 ], [ 112.434082, 45.011419 ], [ 111.873779, 45.104546 ], [ 111.346436, 44.457310 ], [ 111.665039, 44.071800 ], [ 111.829834, 43.739352 ], [ 111.126709, 43.405047 ], [ 110.412598, 42.867912 ], [ 109.248047, 42.520700 ], [ 107.742920, 42.480200 ], [ 106.127930, 42.130821 ], [ 104.963379, 41.599013 ], [ 104.523926, 41.910453 ], [ 103.315430, 41.910453 ], [ 101.832275, 42.512602 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.520700 ], [ 97.448730, 42.747012 ], [ 96.350098, 42.722804 ], [ 95.767822, 43.317185 ], [ 95.306396, 44.237328 ], [ 94.691162, 44.347422 ], [ 93.482666, 44.972571 ], [ 92.131348, 45.112300 ], [ 90.944824, 45.282617 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.285645, 47.694974 ], [ 90.000000, 47.768868 ], [ 89.121094, 47.997274 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.574219, 53.455349 ], [ 125.068359, 53.159947 ], [ 125.947266, 52.789476 ], [ 126.562500, 51.781436 ], [ 126.936035, 51.351201 ], [ 127.287598, 50.736455 ], [ 127.661133, 49.759978 ], [ 129.396973, 49.439557 ], [ 130.583496, 48.727209 ], [ 130.989990, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.374023, 48.180739 ], [ 135.000000, 48.472921 ], [ 135.032959, 48.480204 ], [ 135.000000, 48.429201 ], [ 134.505615, 47.576526 ], [ 134.110107, 47.212106 ], [ 133.769531, 46.118942 ], [ 133.099365, 45.143305 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.964798 ], [ 131.286621, 44.111254 ], [ 131.143799, 42.932296 ], [ 130.638428, 42.900113 ], [ 130.638428, 42.391009 ], [ 130.781250, 42.220382 ], [ 130.396729, 42.277309 ], [ 129.968262, 41.943149 ], [ 129.671631, 41.599013 ], [ 129.704590, 40.979898 ], [ 129.704590, 40.880295 ], [ 129.188232, 40.663973 ], [ 129.012451, 40.480381 ], [ 128.792725, 40.313043 ], [ 122.036133, 40.313043 ], [ 122.167969, 40.421860 ], [ 121.640625, 40.946714 ], [ 120.772705, 40.588928 ], [ 120.311279, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 47.997274 ], [ 90.000000, 47.768868 ], [ 90.285645, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.282617 ], [ 92.131348, 45.112300 ], [ 93.482666, 44.972571 ], [ 94.691162, 44.347422 ], [ 95.306396, 44.237328 ], [ 95.767822, 43.317185 ], [ 96.350098, 42.722804 ], [ 97.448730, 42.747012 ], [ 99.514160, 42.520700 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.512602 ], [ 103.315430, 41.910453 ], [ 104.523926, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.130821 ], [ 107.742920, 42.480200 ], [ 109.248047, 42.520700 ], [ 110.412598, 42.867912 ], [ 111.126709, 43.405047 ], [ 111.829834, 43.739352 ], [ 111.665039, 44.071800 ], [ 111.346436, 44.457310 ], [ 111.873779, 45.104546 ], [ 112.434082, 45.011419 ], [ 113.466797, 44.809122 ], [ 114.466553, 45.336702 ], [ 115.982666, 45.729191 ], [ 116.718750, 46.384833 ], [ 117.421875, 46.672056 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.772949, 47.047669 ], [ 118.872070, 47.746711 ], [ 118.070068, 48.063397 ], [ 117.301025, 47.694974 ], [ 116.312256, 47.850031 ], [ 115.740967, 47.724545 ], [ 115.488281, 48.136767 ], [ 116.191406, 49.131408 ], [ 116.674805, 49.887557 ], [ 117.883301, 49.510944 ], [ 119.289551, 50.141706 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.739746, 51.964577 ], [ 120.728760, 52.516221 ], [ 120.179443, 52.756243 ], [ 121.003418, 53.252069 ], [ 122.244873, 53.429174 ], [ 123.574219, 53.455349 ] ] ] } } ] } ] } , @@ -539,13 +587,19 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.076904, -65.307240 ], [ 135.703125, -65.581179 ], [ 135.878906, -66.035873 ], [ 136.208496, -66.447497 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.778918 ], [ 137.010498, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.266856 ], [ 134.758301, -66.209308 ], [ 135.000000, -65.775744 ], [ 135.032959, -65.721594 ], [ 135.076904, -65.307240 ] ] ], [ [ [ 143.063965, -66.796238 ], [ 144.371338, -66.839487 ], [ 144.711914, -66.861082 ], [ 140.141602, -66.861082 ], [ 140.811768, -66.817872 ], [ 142.119141, -66.817872 ], [ 143.063965, -66.796238 ] ] ], [ [ [ 172.803955, -40.497092 ], [ 173.056641, -40.979898 ], [ 173.243408, -41.335576 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.254150, -41.352072 ], [ 174.254150, -41.771312 ], [ 173.880615, -42.236652 ], [ 173.221436, -42.972502 ], [ 172.716064, -43.373112 ], [ 173.078613, -43.850374 ], [ 172.309570, -43.866218 ], [ 171.452637, -44.245199 ], [ 171.188965, -44.894796 ], [ 170.617676, -45.912944 ], [ 169.332275, -46.641894 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.293816 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.047119, -45.112300 ], [ 168.310547, -44.127028 ], [ 168.947754, -43.937462 ], [ 169.672852, -43.556510 ], [ 170.529785, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.573486, -41.771312 ], [ 171.947021, -41.516804 ], [ 172.089844, -40.979898 ], [ 172.100830, -40.955011 ], [ 172.803955, -40.497092 ] ] ], [ [ [ 144.744873, -40.705628 ], [ 145.404053, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.370850, -41.137296 ], [ 147.689209, -40.805494 ], [ 148.293457, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.065607 ], [ 148.018799, -42.407235 ], [ 147.919922, -43.213183 ], [ 147.568359, -42.940339 ], [ 146.876221, -43.636075 ], [ 146.667480, -43.580391 ], [ 146.052246, -43.548548 ], [ 145.437012, -42.698586 ], [ 145.294189, -42.032974 ], [ 144.722900, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.744873, -40.705628 ] ] ], [ [ [ 176.715088, -40.313043 ], [ 176.242676, -40.979898 ], [ 176.011963, -41.294317 ], [ 175.242920, -41.689322 ], [ 175.067139, -41.426253 ], [ 174.649658, -41.286062 ], [ 174.858398, -40.979898 ], [ 175.231934, -40.455307 ], [ 175.144043, -40.313043 ], [ 176.715088, -40.313043 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.076904, -65.307240 ], [ 135.703125, -65.581179 ], [ 135.878906, -66.035873 ], [ 136.208496, -66.447497 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.778918 ], [ 137.010498, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.266856 ], [ 134.758301, -66.209308 ], [ 135.000000, -65.775744 ], [ 135.032959, -65.721594 ], [ 135.076904, -65.307240 ] ] ], [ [ [ 143.063965, -66.796238 ], [ 144.371338, -66.839487 ], [ 144.711914, -66.861082 ], [ 140.141602, -66.861082 ], [ 140.811768, -66.817872 ], [ 142.119141, -66.817872 ], [ 143.063965, -66.796238 ] ] ], [ [ [ 144.744873, -40.705628 ], [ 145.404053, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.370850, -41.137296 ], [ 147.689209, -40.805494 ], [ 148.293457, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.065607 ], [ 148.018799, -42.407235 ], [ 147.919922, -43.213183 ], [ 147.568359, -42.940339 ], [ 146.876221, -43.636075 ], [ 146.667480, -43.580391 ], [ 146.052246, -43.548548 ], [ 145.437012, -42.698586 ], [ 145.294189, -42.032974 ], [ 144.722900, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.744873, -40.705628 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.803955, -40.497092 ], [ 173.056641, -40.979898 ], [ 173.243408, -41.335576 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.921814 ], [ 173.990479, -40.979898 ], [ 174.254150, -41.352072 ], [ 174.254150, -41.771312 ], [ 173.880615, -42.236652 ], [ 173.221436, -42.972502 ], [ 172.716064, -43.373112 ], [ 173.078613, -43.850374 ], [ 172.309570, -43.866218 ], [ 171.452637, -44.245199 ], [ 171.188965, -44.894796 ], [ 170.617676, -45.912944 ], [ 169.332275, -46.641894 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.293816 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.047119, -45.112300 ], [ 168.310547, -44.127028 ], [ 168.947754, -43.937462 ], [ 169.672852, -43.556510 ], [ 170.529785, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.573486, -41.771312 ], [ 171.947021, -41.516804 ], [ 172.089844, -40.979898 ], [ 172.100830, -40.955011 ], [ 172.803955, -40.497092 ] ] ], [ [ [ 176.715088, -40.313043 ], [ 176.242676, -40.979898 ], [ 176.011963, -41.294317 ], [ 175.242920, -41.689322 ], [ 175.067139, -41.426253 ], [ 174.649658, -41.286062 ], [ 174.858398, -40.979898 ], [ 175.231934, -40.455307 ], [ 175.144043, -40.313043 ], [ 176.715088, -40.313043 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.744873, -40.705628 ], [ 145.404053, -40.797177 ], [ 145.920410, -40.979898 ], [ 146.370850, -41.137296 ], [ 147.689209, -40.805494 ], [ 148.293457, -40.880295 ], [ 148.293457, -40.979898 ], [ 148.337402, -41.640078 ], [ 145.030518, -41.640078 ], [ 144.722900, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.744873, -40.705628 ] ] ], [ [ [ 172.803955, -40.497092 ], [ 173.056641, -40.979898 ], [ 173.243408, -41.335576 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.930115 ], [ 173.990479, -40.979898 ], [ 174.254150, -41.352072 ], [ 174.254150, -41.640078 ], [ 171.760254, -41.640078 ], [ 171.947021, -41.516804 ], [ 172.089844, -40.979898 ], [ 172.100830, -40.955011 ], [ 172.803955, -40.497092 ] ] ], [ [ [ 173.012695, -34.452218 ], [ 173.551025, -35.003003 ], [ 174.331055, -35.263562 ], [ 174.616699, -36.155618 ], [ 175.341797, -37.212832 ], [ 175.363770, -36.527295 ], [ 175.814209, -36.800488 ], [ 175.957031, -37.553288 ], [ 176.770020, -37.883525 ], [ 177.440186, -37.961523 ], [ 178.011475, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.275146, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.209473, -39.147103 ], [ 176.945801, -39.453161 ], [ 177.033691, -39.884450 ], [ 176.890869, -40.069665 ], [ 176.242676, -40.979898 ], [ 176.011963, -41.294317 ], [ 175.330811, -41.640078 ], [ 175.209961, -41.640078 ], [ 175.067139, -41.426253 ], [ 174.649658, -41.286062 ], [ 174.858398, -40.979898 ], [ 175.231934, -40.463666 ], [ 174.902344, -39.909736 ], [ 173.825684, -39.512517 ], [ 173.858643, -39.147103 ], [ 174.572754, -38.796908 ], [ 174.748535, -38.030786 ], [ 174.693604, -37.378888 ], [ 174.298096, -36.712467 ], [ 174.320068, -36.536123 ], [ 173.847656, -36.120128 ], [ 173.056641, -35.236646 ], [ 172.639160, -34.533712 ], [ 173.012695, -34.452218 ] ] ], [ [ [ 142.514648, -10.671404 ], [ 142.800293, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.118896, -11.910354 ], [ 143.162842, -12.329269 ], [ 143.525391, -12.833226 ], [ 143.602295, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.551684 ], [ 144.569092, -14.168534 ], [ 144.898682, -14.594216 ], [ 145.371094, -14.987240 ], [ 145.272217, -15.432501 ], [ 145.491943, -16.288506 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.909684 ], [ 146.162109, -17.759150 ], [ 146.063232, -18.281518 ], [ 146.392822, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.853760, -20.396123 ], [ 148.721924, -20.632784 ], [ 149.293213, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.084229, -22.126355 ], [ 150.479736, -22.553147 ], [ 150.732422, -22.400872 ], [ 150.897217, -23.463246 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.138428, -26.076521 ], [ 153.160400, -26.637639 ], [ 153.094482, -27.264396 ], [ 153.566895, -28.110749 ], [ 153.511963, -28.998532 ], [ 153.336182, -29.458731 ], [ 153.072510, -30.353916 ], [ 153.094482, -30.921076 ], [ 152.896729, -31.644029 ], [ 152.446289, -32.546813 ], [ 151.710205, -33.045508 ], [ 151.347656, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.173808 ], [ 150.325928, -35.675147 ], [ 150.073242, -36.421282 ], [ 149.952393, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.425049, -37.770715 ], [ 148.304443, -37.814124 ], [ 147.381592, -38.220920 ], [ 146.920166, -38.608286 ], [ 146.315918, -39.036253 ], [ 145.491943, -38.591114 ], [ 144.876709, -38.419166 ], [ 145.030518, -37.900865 ], [ 144.492188, -38.082690 ], [ 143.613281, -38.814031 ], [ 142.745361, -38.539573 ], [ 142.185059, -38.384728 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.022131 ], [ 139.998779, -37.405074 ], [ 139.812012, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.086914, -35.737595 ], [ 138.120117, -35.612651 ], [ 138.449707, -35.128894 ], [ 138.208008, -34.388779 ], [ 137.724609, -35.074965 ], [ 136.834717, -35.263562 ], [ 137.351074, -34.705493 ], [ 137.504883, -34.134542 ], [ 137.889404, -33.642063 ], [ 137.812500, -32.898038 ], [ 136.999512, -33.751748 ], [ 136.373291, -34.098159 ], [ 135.988770, -34.894942 ], [ 135.208740, -34.479392 ], [ 135.241699, -33.952474 ], [ 135.000000, -33.669497 ], [ 134.615479, -33.220308 ], [ 134.121094, -32.870360 ], [ 134.121094, -32.805745 ], [ 134.274902, -32.620870 ], [ 134.121094, -32.546813 ], [ 134.121094, -11.964097 ], [ 134.395752, -12.039321 ], [ 134.681396, -11.942601 ], [ 135.000000, -12.103781 ], [ 135.296631, -12.254128 ], [ 135.878906, -11.964097 ], [ 136.263428, -12.050065 ], [ 136.494141, -11.856599 ], [ 136.955566, -12.350734 ], [ 136.691895, -12.886780 ], [ 136.307373, -13.293411 ], [ 135.966797, -13.325485 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.721761 ], [ 135.505371, -14.997852 ], [ 136.296387, -15.548960 ], [ 137.065430, -15.876809 ], [ 137.581787, -16.214675 ], [ 138.306885, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.108887, -17.067287 ], [ 139.262695, -17.371610 ], [ 140.218506, -17.717294 ], [ 140.877686, -17.371610 ], [ 141.075439, -16.836090 ], [ 141.273193, -16.393931 ], [ 141.405029, -15.845105 ], [ 141.701660, -15.050906 ], [ 141.569824, -14.562318 ], [ 141.635742, -14.275030 ], [ 141.525879, -13.699362 ], [ 141.657715, -12.951029 ], [ 141.844482, -12.747516 ], [ 141.690674, -12.404389 ], [ 141.932373, -11.878102 ], [ 142.119141, -11.329253 ], [ 142.141113, -11.049038 ], [ 142.514648, -10.671404 ] ] ], [ [ [ 134.121094, -1.098565 ], [ 134.143066, -1.153487 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.107606 ], [ 135.461426, -3.370856 ], [ 136.296387, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.185791, -2.054003 ], [ 139.932861, -2.405299 ], [ 140.998535, -2.602864 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.272217, -4.379275 ], [ 145.832520, -4.882994 ], [ 145.986328, -5.462896 ], [ 147.645264, -6.085936 ], [ 147.897949, -6.610044 ], [ 146.975098, -6.719165 ], [ 147.194824, -7.384258 ], [ 148.084717, -8.048352 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.271240, -9.514079 ], [ 150.040283, -9.687398 ], [ 149.743652, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.585022 ], [ 150.029297, -10.649811 ], [ 149.787598, -10.390572 ], [ 147.908936, -10.131117 ], [ 147.139893, -9.492408 ], [ 146.568604, -8.939340 ], [ 146.052246, -8.070107 ], [ 144.744873, -7.634776 ], [ 143.898926, -7.917793 ], [ 143.283691, -8.244110 ], [ 143.415527, -8.982749 ], [ 142.624512, -9.329831 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.123792 ], [ 140.141602, -8.298470 ], [ 139.130859, -8.102739 ], [ 138.878174, -8.385431 ], [ 137.614746, -8.418036 ], [ 138.043213, -7.602108 ], [ 138.669434, -7.318882 ], [ 138.405762, -6.238855 ], [ 137.933350, -5.397273 ], [ 135.988770, -4.543570 ], [ 135.164795, -4.466904 ], [ 135.000000, -4.357366 ], [ 134.121094, -3.820408 ], [ 134.121094, -1.098565 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.336426, -4.313546 ], [ 152.325439, -4.872048 ], [ 151.984863, -5.484768 ], [ 151.457520, -5.561315 ], [ 151.303711, -5.845545 ], [ 150.238037, -6.315299 ], [ 149.710693, -6.315299 ], [ 148.886719, -6.031311 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.304199, -5.583184 ], [ 149.842529, -5.506640 ], [ 149.996338, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.238037, -5.528511 ], [ 150.809326, -5.451959 ], [ 151.094971, -5.112830 ], [ 151.644287, -4.762573 ], [ 151.534424, -4.171115 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 164.025879, -20.107523 ], [ 164.465332, -20.117840 ], [ 165.025635, -20.457896 ], [ 165.465088, -20.797201 ], [ 165.783691, -21.084500 ], [ 166.596680, -21.698265 ], [ 167.124023, -22.156883 ], [ 166.739502, -22.400872 ], [ 166.190186, -22.126355 ], [ 165.476074, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.168701, -20.447602 ], [ 164.025879, -20.107523 ] ] ], [ [ [ 178.374023, -17.340152 ], [ 178.714600, -17.633552 ], [ 178.549805, -18.156291 ], [ 177.934570, -18.291950 ], [ 177.385254, -18.166730 ], [ 177.286377, -17.727759 ], [ 177.670898, -17.382095 ], [ 178.132324, -17.507867 ], [ 178.374023, -17.340152 ] ] ], [ [ [ 150.941162, -2.504085 ], [ 151.479492, -2.778451 ], [ 151.820068, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.644043, -3.655964 ], [ 153.017578, -3.984821 ], [ 153.138428, -4.499762 ], [ 152.830811, -4.762573 ], [ 152.644043, -4.182073 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.041783 ], [ 150.666504, -2.745531 ], [ 150.941162, -2.504085 ] ] ], [ [ [ 154.654541, -5.047171 ], [ 154.764404, -5.342583 ], [ 155.061035, -5.572250 ], [ 155.544434, -6.206090 ], [ 156.016846, -6.544560 ], [ 155.885010, -6.817353 ], [ 155.599365, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.900189 ], [ 154.511719, -5.145657 ], [ 154.654541, -5.047171 ] ] ], [ [ [ 180.208740, -16.024696 ], [ 180.087891, -16.499299 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.804541 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.099121, -16.436085 ], [ 179.417725, -16.383391 ], [ 180.000000, -16.066929 ], [ 180.208740, -16.024696 ] ] ], [ [ [ 167.222900, -15.897942 ], [ 167.849121, -16.467695 ], [ 167.519531, -16.594081 ], [ 167.178955, -16.161921 ], [ 167.222900, -15.897942 ] ] ], [ [ [ 166.629639, -14.626109 ], [ 167.113037, -14.934170 ], [ 167.266846, -15.739388 ], [ 167.003174, -15.612456 ], [ 166.794434, -15.665354 ], [ 166.651611, -15.390136 ], [ 166.629639, -14.626109 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.208984, -6.893707 ], [ 134.121094, -6.129631 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 161.323242, -10.206813 ], [ 161.916504, -10.444598 ], [ 162.125244, -10.487812 ], [ 162.399902, -10.822515 ], [ 161.696777, -10.822515 ], [ 161.323242, -10.206813 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 159.642334, -8.026595 ], [ 159.873047, -8.341953 ], [ 159.916992, -8.537565 ], [ 159.136963, -8.113615 ], [ 158.587646, -7.754537 ], [ 158.214111, -7.427837 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 159.708252, -9.243093 ], [ 160.367432, -9.405710 ], [ 160.686035, -9.611582 ], [ 160.850830, -9.871452 ], [ 160.466309, -9.893099 ], [ 159.851074, -9.795678 ], [ 159.642334, -9.644077 ], [ 159.708252, -9.243093 ] ] ], [ [ [ 160.916748, -8.320212 ], [ 161.279297, -9.123792 ], [ 161.685791, -9.600750 ], [ 161.531982, -9.784851 ], [ 160.784912, -8.917634 ], [ 160.576172, -8.320212 ], [ 160.916748, -8.320212 ] ] ], [ [ [ 156.544189, -6.599131 ], [ 157.137451, -7.024572 ], [ 157.543945, -7.351571 ], [ 157.346191, -7.406048 ], [ 156.906738, -7.177201 ], [ 156.489258, -6.762806 ], [ 156.544189, -6.599131 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.744873, -40.705628 ], [ 145.404053, -40.797177 ], [ 145.920410, -40.979898 ], [ 146.370850, -41.137296 ], [ 147.689209, -40.805494 ], [ 148.293457, -40.880295 ], [ 148.293457, -40.979898 ], [ 148.337402, -41.640078 ], [ 145.030518, -41.640078 ], [ 144.722900, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.744873, -40.705628 ] ] ], [ [ [ 142.514648, -10.671404 ], [ 142.800293, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.118896, -11.910354 ], [ 143.162842, -12.329269 ], [ 143.525391, -12.833226 ], [ 143.602295, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.551684 ], [ 144.569092, -14.168534 ], [ 144.898682, -14.594216 ], [ 145.371094, -14.987240 ], [ 145.272217, -15.432501 ], [ 145.491943, -16.288506 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.909684 ], [ 146.162109, -17.759150 ], [ 146.063232, -18.281518 ], [ 146.392822, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.853760, -20.396123 ], [ 148.721924, -20.632784 ], [ 149.293213, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.084229, -22.126355 ], [ 150.479736, -22.553147 ], [ 150.732422, -22.400872 ], [ 150.897217, -23.463246 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.138428, -26.076521 ], [ 153.160400, -26.637639 ], [ 153.094482, -27.264396 ], [ 153.566895, -28.110749 ], [ 153.511963, -28.998532 ], [ 153.336182, -29.458731 ], [ 153.072510, -30.353916 ], [ 153.094482, -30.921076 ], [ 152.896729, -31.644029 ], [ 152.446289, -32.546813 ], [ 151.710205, -33.045508 ], [ 151.347656, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.173808 ], [ 150.325928, -35.675147 ], [ 150.073242, -36.421282 ], [ 149.952393, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.425049, -37.770715 ], [ 148.304443, -37.814124 ], [ 147.381592, -38.220920 ], [ 146.920166, -38.608286 ], [ 146.315918, -39.036253 ], [ 145.491943, -38.591114 ], [ 144.876709, -38.419166 ], [ 145.030518, -37.900865 ], [ 144.492188, -38.082690 ], [ 143.613281, -38.814031 ], [ 142.745361, -38.539573 ], [ 142.185059, -38.384728 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.022131 ], [ 139.998779, -37.405074 ], [ 139.812012, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.086914, -35.737595 ], [ 138.120117, -35.612651 ], [ 138.449707, -35.128894 ], [ 138.208008, -34.388779 ], [ 137.724609, -35.074965 ], [ 136.834717, -35.263562 ], [ 137.351074, -34.705493 ], [ 137.504883, -34.134542 ], [ 137.889404, -33.642063 ], [ 137.812500, -32.898038 ], [ 136.999512, -33.751748 ], [ 136.373291, -34.098159 ], [ 135.988770, -34.894942 ], [ 135.208740, -34.479392 ], [ 135.241699, -33.952474 ], [ 135.000000, -33.669497 ], [ 134.615479, -33.220308 ], [ 134.121094, -32.870360 ], [ 134.121094, -32.805745 ], [ 134.274902, -32.620870 ], [ 134.121094, -32.546813 ], [ 134.121094, -11.964097 ], [ 134.395752, -12.039321 ], [ 134.681396, -11.942601 ], [ 135.000000, -12.103781 ], [ 135.296631, -12.254128 ], [ 135.878906, -11.964097 ], [ 136.263428, -12.050065 ], [ 136.494141, -11.856599 ], [ 136.955566, -12.350734 ], [ 136.691895, -12.886780 ], [ 136.307373, -13.293411 ], [ 135.966797, -13.325485 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.721761 ], [ 135.505371, -14.997852 ], [ 136.296387, -15.548960 ], [ 137.065430, -15.876809 ], [ 137.581787, -16.214675 ], [ 138.306885, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.108887, -17.067287 ], [ 139.262695, -17.371610 ], [ 140.218506, -17.717294 ], [ 140.877686, -17.371610 ], [ 141.075439, -16.836090 ], [ 141.273193, -16.393931 ], [ 141.405029, -15.845105 ], [ 141.701660, -15.050906 ], [ 141.569824, -14.562318 ], [ 141.635742, -14.275030 ], [ 141.525879, -13.699362 ], [ 141.657715, -12.951029 ], [ 141.844482, -12.747516 ], [ 141.690674, -12.404389 ], [ 141.932373, -11.878102 ], [ 142.119141, -11.329253 ], [ 142.141113, -11.049038 ], [ 142.514648, -10.671404 ] ] ], [ [ [ 134.121094, -1.098565 ], [ 134.143066, -1.153487 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.107606 ], [ 135.461426, -3.370856 ], [ 136.296387, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.185791, -2.054003 ], [ 139.932861, -2.405299 ], [ 140.998535, -2.602864 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.272217, -4.379275 ], [ 145.832520, -4.882994 ], [ 145.986328, -5.462896 ], [ 147.645264, -6.085936 ], [ 147.897949, -6.610044 ], [ 146.975098, -6.719165 ], [ 147.194824, -7.384258 ], [ 148.084717, -8.048352 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.271240, -9.514079 ], [ 150.040283, -9.687398 ], [ 149.743652, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.585022 ], [ 150.029297, -10.649811 ], [ 149.787598, -10.390572 ], [ 147.908936, -10.131117 ], [ 147.139893, -9.492408 ], [ 146.568604, -8.939340 ], [ 146.052246, -8.070107 ], [ 144.744873, -7.634776 ], [ 143.898926, -7.917793 ], [ 143.283691, -8.244110 ], [ 143.415527, -8.982749 ], [ 142.624512, -9.329831 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.123792 ], [ 140.141602, -8.298470 ], [ 139.130859, -8.102739 ], [ 138.878174, -8.385431 ], [ 137.614746, -8.418036 ], [ 138.043213, -7.602108 ], [ 138.669434, -7.318882 ], [ 138.405762, -6.238855 ], [ 137.933350, -5.397273 ], [ 135.988770, -4.543570 ], [ 135.164795, -4.466904 ], [ 135.000000, -4.357366 ], [ 134.121094, -3.820408 ], [ 134.121094, -1.098565 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.336426, -4.313546 ], [ 152.325439, -4.872048 ], [ 151.984863, -5.484768 ], [ 151.457520, -5.561315 ], [ 151.303711, -5.845545 ], [ 150.238037, -6.315299 ], [ 149.710693, -6.315299 ], [ 148.886719, -6.031311 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.304199, -5.583184 ], [ 149.842529, -5.506640 ], [ 149.996338, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.238037, -5.528511 ], [ 150.809326, -5.451959 ], [ 151.094971, -5.112830 ], [ 151.644287, -4.762573 ], [ 151.534424, -4.171115 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 150.941162, -2.504085 ], [ 151.479492, -2.778451 ], [ 151.820068, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.644043, -3.655964 ], [ 153.017578, -3.984821 ], [ 153.138428, -4.499762 ], [ 152.830811, -4.762573 ], [ 152.644043, -4.182073 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.041783 ], [ 150.666504, -2.745531 ], [ 150.941162, -2.504085 ] ] ], [ [ [ 161.323242, -10.206813 ], [ 161.916504, -10.444598 ], [ 162.125244, -10.487812 ], [ 162.399902, -10.822515 ], [ 161.696777, -10.822515 ], [ 161.323242, -10.206813 ] ] ], [ [ [ 154.654541, -5.047171 ], [ 154.764404, -5.342583 ], [ 155.061035, -5.572250 ], [ 155.544434, -6.206090 ], [ 156.016846, -6.544560 ], [ 155.885010, -6.817353 ], [ 155.599365, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.900189 ], [ 154.511719, -5.145657 ], [ 154.654541, -5.047171 ] ] ], [ [ [ 159.708252, -9.243093 ], [ 160.367432, -9.405710 ], [ 160.686035, -9.611582 ], [ 160.850830, -9.871452 ], [ 160.466309, -9.893099 ], [ 159.851074, -9.795678 ], [ 159.642334, -9.644077 ], [ 159.708252, -9.243093 ] ] ], [ [ [ 160.916748, -8.320212 ], [ 161.279297, -9.123792 ], [ 161.685791, -9.600750 ], [ 161.531982, -9.784851 ], [ 160.784912, -8.917634 ], [ 160.576172, -8.320212 ], [ 160.916748, -8.320212 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.208984, -6.893707 ], [ 134.121094, -6.129631 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 159.642334, -8.026595 ], [ 159.873047, -8.341953 ], [ 159.916992, -8.537565 ], [ 159.136963, -8.113615 ], [ 158.587646, -7.754537 ], [ 158.214111, -7.427837 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.544189, -6.599131 ], [ 157.137451, -7.024572 ], [ 157.543945, -7.351571 ], [ 157.346191, -7.406048 ], [ 156.906738, -7.177201 ], [ 156.489258, -6.762806 ], [ 156.544189, -6.599131 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 164.025879, -20.107523 ], [ 164.465332, -20.117840 ], [ 165.025635, -20.457896 ], [ 165.465088, -20.797201 ], [ 165.783691, -21.084500 ], [ 166.596680, -21.698265 ], [ 167.124023, -22.156883 ], [ 166.739502, -22.400872 ], [ 166.190186, -22.126355 ], [ 165.476074, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.168701, -20.447602 ], [ 164.025879, -20.107523 ] ] ], [ [ [ 178.374023, -17.340152 ], [ 178.714600, -17.633552 ], [ 178.549805, -18.156291 ], [ 177.934570, -18.291950 ], [ 177.385254, -18.166730 ], [ 177.286377, -17.727759 ], [ 177.670898, -17.382095 ], [ 178.132324, -17.507867 ], [ 178.374023, -17.340152 ] ] ], [ [ [ 180.208740, -16.024696 ], [ 180.087891, -16.499299 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.804541 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.099121, -16.436085 ], [ 179.417725, -16.383391 ], [ 180.000000, -16.066929 ], [ 180.208740, -16.024696 ] ] ], [ [ [ 167.222900, -15.897942 ], [ 167.849121, -16.467695 ], [ 167.519531, -16.594081 ], [ 167.178955, -16.161921 ], [ 167.222900, -15.897942 ] ] ], [ [ [ 166.629639, -14.626109 ], [ 167.113037, -14.934170 ], [ 167.266846, -15.739388 ], [ 167.003174, -15.612456 ], [ 166.794434, -15.665354 ], [ 166.651611, -15.390136 ], [ 166.629639, -14.626109 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.803955, -40.497092 ], [ 173.056641, -40.979898 ], [ 173.243408, -41.335576 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.930115 ], [ 173.990479, -40.979898 ], [ 174.254150, -41.352072 ], [ 174.254150, -41.640078 ], [ 171.760254, -41.640078 ], [ 171.947021, -41.516804 ], [ 172.089844, -40.979898 ], [ 172.100830, -40.955011 ], [ 172.803955, -40.497092 ] ] ], [ [ [ 173.012695, -34.452218 ], [ 173.551025, -35.003003 ], [ 174.331055, -35.263562 ], [ 174.616699, -36.155618 ], [ 175.341797, -37.212832 ], [ 175.363770, -36.527295 ], [ 175.814209, -36.800488 ], [ 175.957031, -37.553288 ], [ 176.770020, -37.883525 ], [ 177.440186, -37.961523 ], [ 178.011475, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.275146, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.209473, -39.147103 ], [ 176.945801, -39.453161 ], [ 177.033691, -39.884450 ], [ 176.890869, -40.069665 ], [ 176.242676, -40.979898 ], [ 176.011963, -41.294317 ], [ 175.330811, -41.640078 ], [ 175.209961, -41.640078 ], [ 175.067139, -41.426253 ], [ 174.649658, -41.286062 ], [ 174.858398, -40.979898 ], [ 175.231934, -40.463666 ], [ 174.902344, -39.909736 ], [ 173.825684, -39.512517 ], [ 173.858643, -39.147103 ], [ 174.572754, -38.796908 ], [ 174.748535, -38.030786 ], [ 174.693604, -37.378888 ], [ 174.298096, -36.712467 ], [ 174.320068, -36.536123 ], [ 173.847656, -36.120128 ], [ 173.056641, -35.236646 ], [ 172.639160, -34.533712 ], [ 173.012695, -34.452218 ] ] ] ] } } ] } ] } , @@ -557,7 +611,11 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.372070, 41.376809 ], [ 141.525879, 40.979898 ], [ 141.789551, 40.313043 ], [ 139.921875, 40.313043 ], [ 139.888916, 40.563895 ], [ 140.306396, 41.195190 ], [ 141.372070, 41.376809 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.327148, 44.386692 ], [ 145.546875, 43.261206 ], [ 144.063721, 42.988576 ], [ 143.184814, 41.992160 ], [ 141.613770, 42.674359 ], [ 141.064453, 41.582580 ], [ 139.954834, 41.566142 ], [ 139.822998, 42.561173 ], [ 140.317383, 43.333169 ], [ 141.383057, 43.389082 ], [ 141.668701, 44.770137 ], [ 141.965332, 45.552525 ] ] ], [ [ [ 180.878906, 66.861082 ], [ 180.878906, 66.026947 ], [ 180.120850, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.703613, 64.534272 ], [ 177.407227, 64.609749 ], [ 178.319092, 64.077003 ], [ 178.912354, 63.253412 ], [ 179.373779, 62.980189 ], [ 179.483643, 62.568045 ], [ 179.230957, 62.303688 ], [ 177.363281, 62.522458 ], [ 174.572754, 61.767926 ], [ 173.682861, 61.653379 ], [ 172.155762, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.332031, 59.883425 ], [ 168.903809, 60.570777 ], [ 166.300049, 59.789580 ], [ 165.838623, 60.157910 ], [ 164.882812, 59.728716 ], [ 163.542480, 59.866883 ], [ 163.223877, 59.209688 ], [ 162.015381, 58.240164 ], [ 162.059326, 57.838903 ], [ 163.190918, 57.615992 ], [ 163.059082, 56.157788 ], [ 162.136230, 56.121060 ], [ 161.707764, 55.285372 ], [ 162.114258, 54.851315 ], [ 160.367432, 54.342149 ], [ 160.026855, 53.199452 ], [ 158.532715, 52.955257 ], [ 158.236084, 51.944265 ], [ 156.785889, 51.006842 ], [ 156.423340, 51.699800 ], [ 155.994873, 53.159947 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.764768 ], [ 156.763916, 57.362090 ], [ 156.807861, 57.833055 ], [ 158.367920, 58.054632 ], [ 160.147705, 59.316375 ], [ 161.872559, 60.343260 ], [ 163.674316, 61.137933 ], [ 164.476318, 62.547793 ], [ 163.256836, 62.466646 ], [ 162.663574, 61.642945 ], [ 160.125732, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.719971, 61.433515 ], [ 154.215088, 59.756395 ], [ 155.050049, 59.142135 ], [ 152.808838, 58.881942 ], [ 151.270752, 58.779591 ], [ 151.336670, 59.500880 ], [ 149.787598, 59.656642 ], [ 148.546143, 59.164668 ], [ 145.491943, 59.333189 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.131836, 54.730964 ], [ 136.702881, 54.603892 ], [ 137.197266, 53.975474 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.252389 ], [ 139.899902, 54.188155 ], [ 141.350098, 53.087426 ], [ 141.383057, 52.241256 ], [ 140.603027, 51.241286 ], [ 140.515137, 50.043030 ], [ 140.064697, 48.443778 ], [ 138.559570, 46.995241 ], [ 138.218994, 46.308996 ], [ 135.516357, 43.984910 ], [ 135.000000, 43.516689 ], [ 134.868164, 43.397065 ], [ 134.121094, 43.068888 ], [ 134.121094, 66.861082 ], [ 180.878906, 66.861082 ] ] ], [ [ [ 142.657471, 54.367759 ], [ 143.261719, 52.742943 ], [ 143.239746, 51.754240 ], [ 143.646240, 50.743408 ], [ 144.656982, 48.973006 ], [ 143.173828, 49.303636 ], [ 142.558594, 47.857403 ], [ 143.536377, 46.837650 ], [ 143.503418, 46.134170 ], [ 142.745361, 46.739861 ], [ 142.097168, 45.966425 ], [ 141.910400, 46.807580 ], [ 142.020264, 47.776252 ], [ 141.910400, 48.857487 ], [ 142.141113, 49.617828 ], [ 142.185059, 50.951506 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.298056 ], [ 142.613525, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.657471, 54.367759 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 66.861082 ], [ 180.878906, 66.861082 ], [ 180.878906, 66.026947 ], [ 180.120850, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.703613, 64.534272 ], [ 177.407227, 64.609749 ], [ 178.319092, 64.077003 ], [ 178.912354, 63.253412 ], [ 179.373779, 62.980189 ], [ 179.483643, 62.568045 ], [ 179.230957, 62.303688 ], [ 177.363281, 62.522458 ], [ 174.572754, 61.767926 ], [ 173.682861, 61.653379 ], [ 172.155762, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.332031, 59.883425 ], [ 168.903809, 60.570777 ], [ 166.300049, 59.789580 ], [ 165.838623, 60.157910 ], [ 164.882812, 59.728716 ], [ 163.542480, 59.866883 ], [ 163.223877, 59.209688 ], [ 162.015381, 58.240164 ], [ 162.059326, 57.838903 ], [ 163.190918, 57.615992 ], [ 163.059082, 56.157788 ], [ 162.136230, 56.121060 ], [ 161.707764, 55.285372 ], [ 162.114258, 54.851315 ], [ 160.367432, 54.342149 ], [ 160.026855, 53.199452 ], [ 158.532715, 52.955257 ], [ 158.236084, 51.944265 ], [ 156.785889, 51.006842 ], [ 156.423340, 51.699800 ], [ 155.994873, 53.159947 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.764768 ], [ 156.763916, 57.362090 ], [ 156.807861, 57.833055 ], [ 158.367920, 58.054632 ], [ 160.147705, 59.316375 ], [ 161.872559, 60.343260 ], [ 163.674316, 61.137933 ], [ 164.476318, 62.547793 ], [ 163.256836, 62.466646 ], [ 162.663574, 61.642945 ], [ 160.125732, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.719971, 61.433515 ], [ 154.215088, 59.756395 ], [ 155.050049, 59.142135 ], [ 152.808838, 58.881942 ], [ 151.270752, 58.779591 ], [ 151.336670, 59.500880 ], [ 149.787598, 59.656642 ], [ 148.546143, 59.164668 ], [ 145.491943, 59.333189 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.131836, 54.730964 ], [ 136.702881, 54.603892 ], [ 137.197266, 53.975474 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.252389 ], [ 139.899902, 54.188155 ], [ 141.350098, 53.087426 ], [ 141.383057, 52.241256 ], [ 140.603027, 51.241286 ], [ 140.515137, 50.043030 ], [ 140.064697, 48.443778 ], [ 138.559570, 46.995241 ], [ 138.218994, 46.308996 ], [ 135.516357, 43.984910 ], [ 135.000000, 43.516689 ], [ 134.868164, 43.397065 ], [ 134.121094, 43.068888 ], [ 134.121094, 47.219568 ], [ 134.494629, 47.576526 ], [ 135.000000, 48.429201 ], [ 135.032959, 48.480204 ], [ 135.000000, 48.472921 ], [ 134.121094, 48.319734 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ] ] ], [ [ [ 142.657471, 54.367759 ], [ 143.261719, 52.742943 ], [ 143.239746, 51.754240 ], [ 143.646240, 50.743408 ], [ 144.656982, 48.973006 ], [ 143.173828, 49.303636 ], [ 142.558594, 47.857403 ], [ 143.536377, 46.837650 ], [ 143.503418, 46.134170 ], [ 142.745361, 46.739861 ], [ 142.097168, 45.966425 ], [ 141.910400, 46.807580 ], [ 142.020264, 47.776252 ], [ 141.910400, 48.857487 ], [ 142.141113, 49.617828 ], [ 142.185059, 50.951506 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.298056 ], [ 142.613525, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.657471, 54.367759 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.032959, 48.480204 ], [ 135.000000, 48.429201 ], [ 134.494629, 47.576526 ], [ 134.121094, 47.219568 ], [ 134.121094, 48.319734 ], [ 135.000000, 48.472921 ], [ 135.032959, 48.480204 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.372070, 41.376809 ], [ 141.525879, 40.979898 ], [ 141.789551, 40.313043 ], [ 139.921875, 40.313043 ], [ 139.888916, 40.563895 ], [ 140.306396, 41.195190 ], [ 141.372070, 41.376809 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.327148, 44.386692 ], [ 145.546875, 43.261206 ], [ 144.063721, 42.988576 ], [ 143.184814, 41.992160 ], [ 141.613770, 42.674359 ], [ 141.064453, 41.582580 ], [ 139.954834, 41.566142 ], [ 139.822998, 42.561173 ], [ 140.317383, 43.333169 ], [ 141.383057, 43.389082 ], [ 141.668701, 44.770137 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , @@ -611,13 +669,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.896134 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.027100, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.801147, 55.893796 ], [ -160.559692, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.681030, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.719727, 57.568888 ], [ -157.549438, 58.326799 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.896134 ] ] ], [ [ [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.614056 ], [ -158.516235, 58.788132 ], [ -159.054565, 58.424730 ], [ -159.708252, 58.930169 ], [ -159.977417, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.965942, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.631658 ], [ -162.515259, 59.987998 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.915771, 62.631244 ], [ -164.558716, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.257080, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.768433, 63.765494 ], [ -160.955200, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.776466 ], [ -162.449341, 64.557881 ], [ -162.756958, 64.337529 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.685016 ], [ -166.843872, 65.088332 ], [ -168.107300, 65.669593 ], [ -166.706543, 66.087138 ], [ -164.767456, 66.513260 ], [ -164.470825, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ] ] ], [ [ [ -171.381226, 66.687784 ], [ -171.013184, 66.513260 ], [ -169.898071, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.437718 ], [ -172.551270, 64.460955 ], [ -172.952271, 64.251755 ], [ -173.891602, 64.282760 ], [ -174.655151, 64.630939 ], [ -175.984497, 64.921213 ], [ -176.204224, 65.355386 ], [ -177.220459, 65.519792 ], [ -178.357544, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.687134, 66.111619 ], [ -179.884644, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.010986, 64.974712 ], [ -180.439453, 64.827917 ], [ -180.439453, 66.687784 ], [ -175.001221, 66.687784 ], [ -175.012207, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.336548, 66.335300 ], [ -174.396973, 66.513260 ], [ -174.451904, 66.687784 ], [ -171.381226, 66.687784 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.374294 ], [ -171.551514, 63.317617 ], [ -171.787720, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.464844, 60.384005 ], [ -165.673828, 60.291577 ], [ -165.580444, 59.908222 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.896134 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.027100, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.801147, 55.893796 ], [ -160.559692, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.681030, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.719727, 57.568888 ], [ -157.549438, 58.326799 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.896134 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.614056 ], [ -158.516235, 58.788132 ], [ -159.054565, 58.424730 ], [ -159.708252, 58.930169 ], [ -159.977417, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.965942, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.631658 ], [ -162.515259, 59.987998 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.915771, 62.631244 ], [ -164.558716, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.257080, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.768433, 63.765494 ], [ -160.955200, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.776466 ], [ -162.449341, 64.557881 ], [ -162.756958, 64.337529 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.685016 ], [ -166.843872, 65.088332 ], [ -168.107300, 65.669593 ], [ -166.706543, 66.087138 ], [ -164.767456, 66.513260 ], [ -164.470825, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.374294 ], [ -171.551514, 63.317617 ], [ -171.787720, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.464844, 60.384005 ], [ -165.673828, 60.291577 ], [ -165.580444, 59.908222 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.384005 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, 66.687784 ], [ -175.001221, 66.687784 ], [ -175.012207, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.336548, 66.335300 ], [ -174.396973, 66.513260 ], [ -174.451904, 66.687784 ], [ -171.381226, 66.687784 ], [ -171.013184, 66.513260 ], [ -169.898071, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.437718 ], [ -172.551270, 64.460955 ], [ -172.952271, 64.251755 ], [ -173.891602, 64.282760 ], [ -174.655151, 64.630939 ], [ -175.984497, 64.921213 ], [ -176.204224, 65.355386 ], [ -177.220459, 65.519792 ], [ -178.357544, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.687134, 66.111619 ], [ -179.884644, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.010986, 64.974712 ], [ -180.439453, 64.827917 ], [ -180.439453, 66.687784 ], [ -180.000000, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.718262, 66.337505 ], [ -165.574951, 66.337505 ], [ -164.767456, 66.513260 ], [ -164.470825, 66.576667 ], [ -163.652344, 66.576667 ] ] ], [ [ [ -157.060547, 71.193067 ], [ -157.060547, 66.337505 ], [ -161.965942, 66.337505 ], [ -162.196655, 66.513260 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.426880, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.761475, 68.358699 ], [ -166.201172, 68.883316 ], [ -164.426880, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.927246, 69.856654 ], [ -161.905518, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.041960 ], [ -157.060547, 71.193067 ] ] ], [ [ [ -180.439453, 69.099940 ], [ -180.000000, 68.962335 ], [ -177.550049, 68.200133 ], [ -174.924316, 67.206161 ], [ -175.012207, 66.583217 ], [ -174.819946, 66.513260 ], [ -174.347534, 66.337505 ], [ -180.439453, 66.337505 ], [ -180.439453, 69.099940 ] ] ], [ [ [ -174.572754, 67.061011 ], [ -171.853638, 66.912834 ], [ -171.013184, 66.513260 ], [ -170.645142, 66.337505 ], [ -174.342041, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.061011 ] ] ], [ [ [ -179.868164, 71.557955 ], [ -179.022217, 71.554479 ], [ -177.577515, 71.269067 ], [ -177.659912, 71.132764 ], [ -178.692627, 70.893280 ], [ -180.000000, 70.832051 ], [ -180.439453, 70.812202 ], [ -180.439453, 71.372864 ], [ -180.000000, 71.514462 ], [ -179.868164, 71.557955 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.718262, 66.337505 ], [ -165.574951, 66.337505 ], [ -164.767456, 66.513260 ], [ -164.470825, 66.576667 ], [ -163.652344, 66.576667 ] ] ], [ [ [ -161.965942, 66.337505 ], [ -162.196655, 66.513260 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.426880, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.761475, 68.358699 ], [ -166.201172, 68.883316 ], [ -164.426880, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.927246, 69.856654 ], [ -161.905518, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.041960 ], [ -157.060547, 71.193067 ], [ -157.060547, 66.337505 ], [ -161.965942, 66.337505 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -174.342041, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.439453, 66.337505 ], [ -180.439453, 69.099940 ], [ -180.000000, 68.962335 ], [ -177.550049, 68.200133 ], [ -174.924316, 67.206161 ], [ -175.012207, 66.583217 ], [ -174.819946, 66.513260 ], [ -174.342041, 66.337505 ] ] ], [ [ [ -174.342041, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.061011 ], [ -171.853638, 66.912834 ], [ -171.013184, 66.513260 ], [ -170.645142, 66.337505 ], [ -174.342041, 66.337505 ] ] ], [ [ [ -180.000000, 71.514462 ], [ -179.868164, 71.557955 ], [ -179.022217, 71.554479 ], [ -177.577515, 71.269067 ], [ -177.659912, 71.132764 ], [ -178.692627, 70.893280 ], [ -180.000000, 70.832051 ], [ -180.439453, 70.812202 ], [ -180.439453, 71.372864 ], [ -180.000000, 71.514462 ] ] ] ] } } ] } ] } , @@ -653,13 +715,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -134.560547, 66.687784 ], [ -134.560547, 58.156214 ], [ -135.000000, 58.185185 ], [ -136.625977, 58.211238 ], [ -137.796021, 58.499435 ], [ -139.866943, 59.537103 ], [ -140.822754, 59.725947 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.457218 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.703785 ], [ -150.606079, 59.366794 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.724257 ], [ -150.347900, 61.031692 ], [ -150.617065, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.144620 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.421294 ], [ -156.555176, 56.977918 ], [ -157.500000, 56.668302 ], [ -157.939453, 56.523140 ], [ -157.939453, 57.465635 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.326799 ], [ -157.500000, 58.387318 ], [ -157.038574, 58.918828 ], [ -157.500000, 58.799516 ], [ -157.939453, 58.682649 ], [ -157.939453, 66.687784 ], [ -134.560547, 66.687784 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.561646, 57.900256 ], [ -152.138672, 57.589503 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.759155, 57.815504 ], [ -153.226318, 57.967331 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.275238 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.461826 ], [ -135.472412, 59.786816 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.268688 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.156214 ], [ -135.000000, 58.185185 ], [ -136.625977, 58.211238 ], [ -137.796021, 58.499435 ], [ -139.866943, 59.537103 ], [ -140.822754, 59.725947 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.457218 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.703785 ], [ -150.606079, 59.366794 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.724257 ], [ -150.347900, 61.031692 ], [ -150.617065, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.144620 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.421294 ], [ -156.555176, 56.977918 ], [ -157.500000, 56.668302 ], [ -157.939453, 56.523140 ], [ -157.939453, 57.465635 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.326799 ], [ -157.500000, 58.387318 ], [ -157.038574, 58.918828 ], [ -157.500000, 58.799516 ], [ -157.939453, 58.682649 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.561646, 57.900256 ], [ -152.138672, 57.589503 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.759155, 57.815504 ], [ -153.226318, 57.967331 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 66.687784 ], [ -134.560547, 59.037729 ], [ -134.945068, 59.268688 ], [ -135.000000, 59.324783 ], [ -135.472412, 59.786816 ], [ -136.477661, 59.461826 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.037476, 59.998986 ], [ -140.009766, 60.275238 ], [ -140.998535, 60.305185 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.577148, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.896484, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.716187, 70.530391 ], [ -147.612305, 70.213015 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.988655 ], [ -143.585815, 70.151558 ], [ -142.069702, 69.850978 ], [ -139.119873, 69.471042 ], [ -137.543335, 68.989925 ], [ -136.499634, 68.897165 ], [ -135.626221, 69.314440 ], [ -135.000000, 69.476821 ], [ -134.560547, 69.590144 ], [ -134.560547, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.887885 ], [ -157.500000, 71.041960 ], [ -156.577148, 71.357067 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.577148, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.896484, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.716187, 70.530391 ], [ -147.612305, 70.213015 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.988655 ], [ -143.585815, 70.151558 ], [ -142.069702, 69.850978 ], [ -140.982056, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.887885 ], [ -157.500000, 71.041960 ], [ -156.577148, 71.357067 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.982056, 69.712393 ], [ -139.119873, 69.471042 ], [ -137.543335, 68.989925 ], [ -136.499634, 68.897165 ], [ -135.626221, 69.314440 ], [ -135.000000, 69.476821 ], [ -134.560547, 69.590144 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.982056, 69.712393 ] ] ] } } ] } ] } , @@ -695,13 +761,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 56.022948 ], [ -112.060547, 40.647304 ], [ -124.310303, 40.647304 ], [ -124.222412, 40.979898 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.530029, 42.763146 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.392700, 47.720849 ], [ -124.683838, 48.184401 ], [ -124.562988, 48.378145 ], [ -123.118286, 48.037692 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.357432 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -122.975464, 49.001844 ], [ -124.909058, 49.983020 ], [ -125.623169, 50.415519 ], [ -127.435913, 50.830228 ], [ -127.990723, 51.713416 ], [ -127.847900, 52.328625 ], [ -129.127808, 52.752919 ], [ -129.303589, 53.559889 ], [ -130.512085, 54.287675 ], [ -130.534058, 54.800685 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.055664, 55.776573 ], [ -132.138062, 56.022948 ], [ -112.060547, 56.022948 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.551835 ], [ -126.694336, 50.401515 ], [ -125.755005, 50.292849 ], [ -125.414429, 49.947685 ], [ -124.920044, 49.475263 ], [ -123.920288, 49.063069 ], [ -123.508301, 48.509326 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.824949 ], [ -125.952759, 49.178113 ], [ -126.848145, 49.528774 ], [ -127.029419, 49.813176 ], [ -128.056641, 49.993615 ], [ -128.441162, 50.537872 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -133.176270, 54.168866 ], [ -132.709351, 54.040038 ], [ -131.748047, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.176758, 52.180669 ], [ -131.577759, 52.180669 ], [ -132.176514, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.409532 ], [ -133.236694, 53.849286 ], [ -133.176270, 54.168866 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 48.998240 ], [ -112.060547, 40.647304 ], [ -124.310303, 40.647304 ], [ -124.222412, 40.979898 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.530029, 42.763146 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.392700, 47.720849 ], [ -124.683838, 48.184401 ], [ -124.562988, 48.378145 ], [ -123.118286, 48.037692 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.357432 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -112.060547, 48.998240 ] ] ], [ [ [ -130.292358, 56.022948 ], [ -130.006714, 55.915352 ], [ -130.001221, 55.776573 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.800685 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.055664, 55.776573 ], [ -132.138062, 56.022948 ], [ -130.292358, 56.022948 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.551835 ], [ -126.694336, 50.401515 ], [ -125.755005, 50.292849 ], [ -125.414429, 49.947685 ], [ -124.920044, 49.475263 ], [ -123.920288, 49.063069 ], [ -123.508301, 48.509326 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.824949 ], [ -125.952759, 49.178113 ], [ -126.848145, 49.528774 ], [ -127.029419, 49.813176 ], [ -128.056641, 49.993615 ], [ -128.441162, 50.537872 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -112.060547, 56.022948 ], [ -112.060547, 48.998240 ], [ -112.500000, 48.998240 ], [ -122.975464, 49.001844 ], [ -124.909058, 49.983020 ], [ -125.623169, 50.415519 ], [ -127.435913, 50.830228 ], [ -127.990723, 51.713416 ], [ -127.847900, 52.328625 ], [ -129.127808, 52.752919 ], [ -129.303589, 53.559889 ], [ -130.512085, 54.287675 ], [ -130.534058, 54.800685 ], [ -129.979248, 55.285372 ], [ -130.001221, 55.776573 ], [ -130.006714, 55.915352 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ] ] ], [ [ [ -133.176270, 54.168866 ], [ -132.709351, 54.040038 ], [ -131.748047, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.176758, 52.180669 ], [ -131.577759, 52.180669 ], [ -132.176514, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.409532 ], [ -133.236694, 53.849286 ], [ -133.176270, 54.168866 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.055664, 55.776573 ], [ -132.247925, 56.368293 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.121419 ], [ -135.000000, 58.185185 ], [ -135.439453, 58.193871 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.439453, 59.753628 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.268688 ], [ -134.269409, 58.859224 ], [ -133.352051, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.704102, 56.550400 ], [ -130.006714, 55.915352 ], [ -130.001221, 55.776573 ], [ -129.990234, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.055664, 55.776573 ], [ -132.247925, 56.368293 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.121419 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.193871 ], [ -135.439453, 59.753628 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ], [ -129.990234, 55.528631 ], [ -130.001221, 55.776573 ], [ -130.006714, 55.915352 ], [ -131.704102, 56.550400 ], [ -132.731323, 57.692406 ], [ -133.352051, 58.410345 ], [ -134.269409, 58.859224 ], [ -134.945068, 59.268688 ], [ -135.000000, 59.324783 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ] ] ] } } ] } ] } , @@ -743,7 +813,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.844238, 22.350076 ], [ -97.712402, 21.943046 ], [ -97.695923, 21.897181 ], [ -97.388306, 21.412162 ], [ -97.190552, 20.632784 ], [ -96.525879, 19.890723 ], [ -96.289673, 19.321511 ], [ -95.899658, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.421997, 18.140632 ], [ -93.548584, 18.422290 ], [ -92.785034, 18.521283 ], [ -92.037964, 18.703489 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.285221 ], [ -90.532837, 19.864894 ], [ -90.450439, 20.704739 ], [ -90.274658, 20.997343 ], [ -90.000000, 21.105000 ], [ -89.598999, 21.258661 ], [ -89.560547, 21.268900 ], [ -89.560547, 13.491131 ], [ -89.813232, 13.517838 ], [ -90.000000, 13.662001 ], [ -90.093384, 13.731381 ], [ -90.609741, 13.907408 ], [ -91.230469, 13.928736 ], [ -91.686401, 14.125922 ], [ -92.224731, 14.535733 ], [ -93.356323, 15.612456 ], [ -93.872681, 15.940202 ], [ -94.691162, 16.198850 ], [ -95.251465, 16.124985 ], [ -96.053467, 15.749963 ], [ -96.553345, 15.654776 ], [ -97.261963, 15.913791 ], [ -98.009033, 16.103876 ], [ -98.948364, 16.562493 ], [ -99.695435, 16.704602 ], [ -100.827026, 17.172283 ], [ -101.661987, 17.649257 ], [ -101.914673, 17.916023 ], [ -102.474976, 17.973508 ], [ -103.502197, 18.291950 ], [ -103.914185, 18.745108 ], [ -104.990845, 19.316327 ], [ -105.490723, 19.947533 ], [ -105.732422, 20.432160 ], [ -105.397339, 20.529933 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.074249 ], [ -105.265503, 21.422390 ], [ -105.600586, 21.871695 ], [ -105.617065, 21.943046 ], [ -105.693970, 22.268764 ], [ -105.748901, 22.350076 ], [ -97.844238, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.844238, 22.350076 ], [ -97.712402, 21.943046 ], [ -97.695923, 21.897181 ], [ -97.388306, 21.412162 ], [ -97.190552, 20.632784 ], [ -96.525879, 19.890723 ], [ -96.289673, 19.321511 ], [ -95.899658, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.421997, 18.140632 ], [ -93.548584, 18.422290 ], [ -92.785034, 18.521283 ], [ -92.037964, 18.703489 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.285221 ], [ -90.532837, 19.864894 ], [ -90.450439, 20.704739 ], [ -90.274658, 20.997343 ], [ -90.000000, 21.105000 ], [ -89.598999, 21.258661 ], [ -89.560547, 21.268900 ], [ -89.560547, 14.370834 ], [ -89.588013, 14.360191 ], [ -89.560547, 14.301647 ], [ -89.560547, 14.227113 ], [ -89.719849, 14.131249 ], [ -90.000000, 13.928736 ], [ -90.065918, 13.880746 ], [ -90.093384, 13.731381 ], [ -90.609741, 13.907408 ], [ -91.230469, 13.928736 ], [ -91.686401, 14.125922 ], [ -92.224731, 14.535733 ], [ -93.356323, 15.612456 ], [ -93.872681, 15.940202 ], [ -94.691162, 16.198850 ], [ -95.251465, 16.124985 ], [ -96.053467, 15.749963 ], [ -96.553345, 15.654776 ], [ -97.261963, 15.913791 ], [ -98.009033, 16.103876 ], [ -98.948364, 16.562493 ], [ -99.695435, 16.704602 ], [ -100.827026, 17.172283 ], [ -101.661987, 17.649257 ], [ -101.914673, 17.916023 ], [ -102.474976, 17.973508 ], [ -103.502197, 18.291950 ], [ -103.914185, 18.745108 ], [ -104.990845, 19.316327 ], [ -105.490723, 19.947533 ], [ -105.732422, 20.432160 ], [ -105.397339, 20.529933 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.074249 ], [ -105.265503, 21.422390 ], [ -105.600586, 21.871695 ], [ -105.617065, 21.943046 ], [ -105.693970, 22.268764 ], [ -105.748901, 22.350076 ], [ -97.844238, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.560547, 14.227113 ], [ -89.560547, 13.491131 ], [ -89.813232, 13.517838 ], [ -90.000000, 13.662001 ], [ -90.093384, 13.731381 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.928736 ], [ -89.719849, 14.131249 ], [ -89.560547, 14.227113 ] ] ], [ [ [ -89.560547, 14.301647 ], [ -89.588013, 14.360191 ], [ -89.560547, 14.370834 ], [ -89.560547, 14.301647 ] ] ] ] } } ] } ] } , @@ -755,7 +827,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 56.022948 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.817505, 49.389524 ], [ -94.636230, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.447422 ], [ -91.636963, 48.140432 ], [ -90.829468, 48.268569 ], [ -90.000000, 48.096426 ], [ -89.598999, 48.008300 ], [ -89.560547, 48.011975 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.152588, 49.382373 ], [ -94.817505, 49.389524 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 56.022948 ], [ -89.560547, 48.011975 ], [ -89.598999, 48.008300 ], [ -90.000000, 48.096426 ], [ -90.829468, 48.268569 ], [ -91.636963, 48.140432 ], [ -92.609253, 48.447422 ], [ -93.630981, 48.607490 ], [ -94.328613, 48.669199 ], [ -94.636230, 48.839413 ], [ -94.817505, 49.389524 ], [ -95.152588, 49.382373 ], [ -95.158081, 48.998240 ], [ -112.939453, 48.998240 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ] ] ] } } ] } ] } , @@ -827,43 +901,41 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.015869, 0.439449 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.186767 ], [ -69.576416, -0.549308 ], [ -69.417114, -1.126026 ], [ -69.444580, -1.559866 ], [ -69.889526, -4.297113 ], [ -70.795898, -4.253290 ], [ -70.927734, -4.401183 ], [ -71.746216, -4.592852 ], [ -72.888794, -5.276948 ], [ -72.965698, -5.741708 ], [ -73.218384, -6.091398 ], [ -73.119507, -6.631870 ], [ -73.723755, -6.920974 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.525873 ], [ -73.569946, -8.423470 ], [ -73.015137, -9.031578 ], [ -73.223877, -9.465317 ], [ -72.559204, -9.519497 ], [ -72.185669, -10.055403 ], [ -71.301270, -10.082446 ], [ -70.482788, -9.492408 ], [ -70.548706, -11.011297 ], [ -70.092773, -11.124507 ], [ -69.526978, -10.951978 ], [ -68.664551, -12.565287 ], [ -68.878784, -12.902844 ], [ -68.928223, -13.603278 ], [ -68.950195, -14.455958 ], [ -69.340210, -14.955399 ], [ -69.158936, -15.326572 ], [ -69.389648, -15.660065 ], [ -68.955688, -16.504566 ], [ -69.587402, -17.581194 ], [ -69.856567, -18.093644 ], [ -70.372925, -18.349312 ], [ -71.372681, -17.774843 ], [ -71.460571, -17.366367 ], [ -73.443604, -16.362310 ], [ -75.234375, -15.268288 ], [ -76.008911, -14.652683 ], [ -76.420898, -13.822078 ], [ -76.256104, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.090820, -10.379765 ], [ -79.035645, -8.385431 ], [ -79.442139, -7.934115 ], [ -79.760742, -7.193551 ], [ -80.535278, -6.544560 ], [ -81.249390, -6.140555 ], [ -80.925293, -5.692516 ], [ -81.408691, -4.740675 ], [ -81.095581, -4.039618 ], [ -80.299072, -3.403758 ], [ -79.766235, -2.657738 ], [ -79.985962, -2.224173 ], [ -80.364990, -2.685174 ], [ -80.963745, -2.246129 ], [ -80.765991, -1.966167 ], [ -80.930786, -1.060120 ], [ -80.584717, -0.906334 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.018921, 0.362546 ], [ -80.035400, 0.439449 ], [ -70.015869, 0.439449 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 0.439449 ], [ -67.060547, -10.228437 ], [ -67.170410, -10.309515 ], [ -67.500000, -10.455402 ], [ -68.049316, -10.714587 ], [ -68.269043, -11.016689 ], [ -68.785400, -11.038255 ], [ -69.526978, -10.951978 ], [ -70.092773, -11.124507 ], [ -70.548706, -11.011297 ], [ -70.482788, -9.492408 ], [ -71.301270, -10.082446 ], [ -72.185669, -10.055403 ], [ -72.559204, -9.519497 ], [ -73.223877, -9.465317 ], [ -73.015137, -9.031578 ], [ -73.569946, -8.423470 ], [ -73.987427, -7.525873 ], [ -73.723755, -7.340675 ], [ -73.723755, -6.920974 ], [ -73.119507, -6.631870 ], [ -73.218384, -6.091398 ], [ -72.965698, -5.741708 ], [ -72.888794, -5.276948 ], [ -71.746216, -4.592852 ], [ -70.927734, -4.401183 ], [ -70.795898, -4.253290 ], [ -69.889526, -4.297113 ], [ -69.444580, -1.559866 ], [ -69.417114, -1.126026 ], [ -69.576416, -0.549308 ], [ -70.021362, -0.186767 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.439449 ], [ -67.060547, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.015869, 0.439449 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.186767 ], [ -69.576416, -0.549308 ], [ -69.417114, -1.126026 ], [ -69.444580, -1.559866 ], [ -69.889526, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.691528, -3.743671 ], [ -70.048828, -2.729070 ], [ -70.812378, -2.257106 ], [ -71.411133, -2.344926 ], [ -71.773682, -2.169281 ], [ -72.322998, -2.438229 ], [ -73.070068, -2.311994 ], [ -73.657837, -1.263325 ], [ -74.119263, -1.005197 ], [ -74.437866, -0.532829 ], [ -75.102539, -0.060425 ], [ -75.371704, -0.153808 ], [ -75.646362, 0.000000 ], [ -75.800171, 0.087891 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.258178 ], [ -77.426147, 0.395505 ], [ -77.448120, 0.439449 ], [ -70.015869, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.228437 ], [ -67.060547, -22.350076 ], [ -70.224609, -22.350076 ], [ -70.164185, -21.943046 ], [ -70.087280, -21.396819 ], [ -70.164185, -19.756364 ], [ -70.372925, -18.349312 ], [ -69.856567, -18.093644 ], [ -69.587402, -17.581194 ], [ -68.955688, -16.504566 ], [ -69.389648, -15.660065 ], [ -69.158936, -15.326572 ], [ -69.340210, -14.955399 ], [ -68.950195, -14.455958 ], [ -68.928223, -13.603278 ], [ -68.878784, -12.902844 ], [ -68.664551, -12.565287 ], [ -69.526978, -10.951978 ], [ -68.785400, -11.038255 ], [ -68.269043, -11.016689 ], [ -68.049316, -10.714587 ], [ -67.500000, -10.455402 ], [ -67.170410, -10.309515 ], [ -67.060547, -10.228437 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 0.439449 ], [ -67.060547, -22.350076 ], [ -70.224609, -22.350076 ], [ -70.164185, -21.943046 ], [ -70.087280, -21.396819 ], [ -70.164185, -19.756364 ], [ -70.372925, -18.349312 ], [ -71.372681, -17.774843 ], [ -71.460571, -17.366367 ], [ -73.443604, -16.362310 ], [ -75.234375, -15.268288 ], [ -76.008911, -14.652683 ], [ -76.420898, -13.822078 ], [ -76.256104, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.090820, -10.379765 ], [ -79.035645, -8.385431 ], [ -79.442139, -7.934115 ], [ -79.760742, -7.193551 ], [ -80.535278, -6.544560 ], [ -81.249390, -6.140555 ], [ -80.925293, -5.692516 ], [ -81.408691, -4.740675 ], [ -81.095581, -4.039618 ], [ -80.299072, -3.403758 ], [ -79.766235, -2.657738 ], [ -79.985962, -2.224173 ], [ -80.364990, -2.685174 ], [ -80.963745, -2.246129 ], [ -80.765991, -1.966167 ], [ -80.930786, -1.060120 ], [ -80.584717, -0.906334 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.018921, 0.362546 ], [ -80.035400, 0.439449 ], [ -77.448120, 0.439449 ], [ -77.426147, 0.395505 ], [ -76.574707, 0.258178 ], [ -76.289062, 0.417477 ], [ -75.800171, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.371704, -0.153808 ], [ -75.102539, -0.060425 ], [ -74.437866, -0.532829 ], [ -74.119263, -1.005197 ], [ -73.657837, -1.263325 ], [ -73.070068, -2.311994 ], [ -72.322998, -2.438229 ], [ -71.773682, -2.169281 ], [ -71.411133, -2.344926 ], [ -70.812378, -2.257106 ], [ -70.048828, -2.729070 ], [ -70.691528, -3.743671 ], [ -70.394897, -3.765597 ], [ -69.889526, -4.297113 ], [ -69.444580, -1.559866 ], [ -69.417114, -1.126026 ], [ -69.576416, -0.549308 ], [ -70.021362, -0.186767 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.439449 ], [ -67.060547, 0.439449 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.050171, 21.539957 ], [ -86.808472, 21.330315 ], [ -86.846924, 20.848545 ], [ -87.379761, 20.251890 ], [ -87.621460, 19.647761 ], [ -87.434692, 19.471771 ], [ -87.835693, 18.260653 ], [ -88.088379, 18.516075 ], [ -88.297119, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.104858, 18.349312 ], [ -88.121338, 18.077979 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.302612, 17.130292 ], [ -88.236694, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.262141 ], [ -88.731079, 16.230498 ], [ -88.928833, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.516846, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.342465 ], [ -89.154053, 15.066819 ], [ -89.225464, 14.870469 ], [ -89.143066, 14.679254 ], [ -89.351807, 14.424040 ], [ -89.588013, 14.360191 ], [ -89.533081, 14.243087 ], [ -89.719849, 14.131249 ], [ -90.000000, 13.928736 ], [ -90.065918, 13.880746 ], [ -90.098877, 13.731381 ], [ -90.439453, 13.854081 ], [ -90.439453, 20.725291 ], [ -90.280151, 20.997343 ], [ -90.000000, 21.105000 ], [ -89.598999, 21.258661 ], [ -88.544312, 21.493964 ], [ -87.654419, 21.458181 ], [ -87.050171, 21.539957 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.351807, 14.424040 ], [ -89.055176, 14.338904 ], [ -88.840942, 14.136576 ], [ -88.538818, 13.976715 ], [ -88.500366, 13.843414 ], [ -88.066406, 13.960723 ], [ -87.857666, 13.891411 ], [ -87.720337, 13.784737 ], [ -87.791748, 13.384276 ], [ -87.901611, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.840942, 13.255986 ], [ -89.252930, 13.459080 ], [ -89.813232, 13.517838 ], [ -90.000000, 13.662001 ], [ -90.098877, 13.731381 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.928736 ], [ -89.719849, 14.131249 ], [ -89.533081, 14.243087 ], [ -89.588013, 14.360191 ], [ -89.351807, 14.424040 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.050171, 21.539957 ], [ -86.808472, 21.330315 ], [ -86.846924, 20.848545 ], [ -87.379761, 20.251890 ], [ -87.621460, 19.647761 ], [ -87.434692, 19.471771 ], [ -87.835693, 18.260653 ], [ -88.088379, 18.516075 ], [ -88.489380, 18.484819 ], [ -88.846436, 17.879431 ], [ -89.027710, 17.999632 ], [ -89.148560, 17.952606 ], [ -89.143066, 17.806226 ], [ -89.148560, 17.014768 ], [ -89.225464, 15.887376 ], [ -88.928833, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.516846, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.342465 ], [ -89.154053, 15.066819 ], [ -89.225464, 14.870469 ], [ -89.143066, 14.679254 ], [ -89.351807, 14.424040 ], [ -89.588013, 14.360191 ], [ -89.533081, 14.243087 ], [ -89.719849, 14.131249 ], [ -90.000000, 13.928736 ], [ -90.065918, 13.880746 ], [ -90.098877, 13.731381 ], [ -90.439453, 13.854081 ], [ -90.439453, 20.725291 ], [ -90.280151, 20.997343 ], [ -90.000000, 21.105000 ], [ -89.598999, 21.258661 ], [ -88.544312, 21.493964 ], [ -87.654419, 21.458181 ], [ -87.050171, 21.539957 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.000977, 16.003576 ], [ -85.682373, 15.950766 ], [ -85.440674, 15.882093 ], [ -85.182495, 15.908508 ], [ -84.984741, 15.993015 ], [ -84.523315, 15.855674 ], [ -84.369507, 15.834536 ], [ -84.061890, 15.649486 ], [ -83.770752, 15.421910 ], [ -83.408203, 15.268288 ], [ -83.144531, 14.992546 ], [ -83.232422, 14.897013 ], [ -83.281860, 14.673940 ], [ -83.182983, 14.306969 ], [ -83.413696, 13.971385 ], [ -83.518066, 13.565902 ], [ -83.551025, 13.127629 ], [ -83.496094, 12.865360 ], [ -83.474121, 12.415119 ], [ -83.622437, 12.318536 ], [ -83.715820, 11.894228 ], [ -83.649902, 11.625335 ], [ -83.853149, 11.372339 ], [ -83.809204, 11.102947 ], [ -83.655396, 10.935798 ], [ -83.891602, 10.725381 ], [ -84.188232, 10.790141 ], [ -84.353027, 11.000512 ], [ -84.671631, 11.081385 ], [ -84.902344, 10.951978 ], [ -85.561523, 11.216122 ], [ -85.709839, 11.086775 ], [ -86.055908, 11.404649 ], [ -86.522827, 11.808211 ], [ -86.742554, 12.141376 ], [ -87.165527, 12.458033 ], [ -87.665405, 12.908198 ], [ -87.555542, 13.063426 ], [ -87.390747, 12.913552 ], [ -87.313843, 12.983148 ], [ -87.489624, 13.298757 ], [ -87.791748, 13.384276 ], [ -87.720337, 13.784737 ], [ -87.857666, 13.891411 ], [ -88.066406, 13.960723 ], [ -88.500366, 13.843414 ], [ -88.538818, 13.976715 ], [ -88.840942, 14.136576 ], [ -89.055176, 14.338904 ], [ -89.351807, 14.424040 ], [ -89.143066, 14.679254 ], [ -89.225464, 14.870469 ], [ -89.154053, 15.066819 ], [ -88.681641, 15.342465 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.686510 ], [ -87.901611, 15.860958 ], [ -87.615967, 15.876809 ], [ -87.522583, 15.797539 ], [ -87.368774, 15.845105 ], [ -86.901855, 15.755249 ], [ -86.440430, 15.781682 ], [ -86.116333, 15.892659 ], [ -86.000977, 16.003576 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.104858, 18.349312 ], [ -88.121338, 18.077979 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.302612, 17.130292 ], [ -88.236694, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.262141 ], [ -88.731079, 16.230498 ], [ -88.928833, 15.887376 ], [ -89.225464, 15.887376 ], [ -89.148560, 17.014768 ], [ -89.143066, 17.806226 ], [ -89.148560, 17.952606 ], [ -89.027710, 17.999632 ], [ -88.846436, 17.879431 ], [ -88.489380, 18.484819 ], [ -88.297119, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.561523, 11.216122 ], [ -84.902344, 10.951978 ], [ -84.671631, 11.081385 ], [ -84.353027, 11.000512 ], [ -84.188232, 10.790141 ], [ -83.891602, 10.725381 ], [ -83.655396, 10.935798 ], [ -83.402710, 10.395975 ], [ -83.012695, 9.990491 ], [ -82.545776, 9.562834 ], [ -82.930298, 9.476154 ], [ -82.924805, 9.074976 ], [ -82.716064, 8.923060 ], [ -82.869873, 8.803654 ], [ -82.825928, 8.624472 ], [ -82.913818, 8.423470 ], [ -82.963257, 8.222364 ], [ -83.507080, 8.445205 ], [ -83.710327, 8.657057 ], [ -83.594971, 8.830795 ], [ -83.633423, 9.047853 ], [ -83.908081, 9.291886 ], [ -84.303589, 9.486990 ], [ -84.644165, 9.611582 ], [ -84.710083, 9.909333 ], [ -84.973755, 10.087854 ], [ -84.907837, 9.795678 ], [ -85.111084, 9.557417 ], [ -85.336304, 9.833567 ], [ -85.660400, 9.930977 ], [ -85.797729, 10.131117 ], [ -85.792236, 10.439196 ], [ -85.660400, 10.752366 ], [ -85.940552, 10.892648 ], [ -85.561523, 11.216122 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.000977, 16.003576 ], [ -85.682373, 15.950766 ], [ -85.440674, 15.882093 ], [ -85.182495, 15.908508 ], [ -84.984741, 15.993015 ], [ -84.523315, 15.855674 ], [ -84.369507, 15.834536 ], [ -84.061890, 15.649486 ], [ -83.770752, 15.421910 ], [ -83.408203, 15.268288 ], [ -83.144531, 14.992546 ], [ -83.232422, 14.897013 ], [ -83.281860, 14.673940 ], [ -83.182983, 14.306969 ], [ -83.413696, 13.971385 ], [ -83.518066, 13.565902 ], [ -83.551025, 13.127629 ], [ -83.496094, 12.865360 ], [ -83.474121, 12.415119 ], [ -83.622437, 12.318536 ], [ -83.715820, 11.894228 ], [ -83.649902, 11.625335 ], [ -83.853149, 11.372339 ], [ -83.809204, 11.102947 ], [ -83.655396, 10.935798 ], [ -83.402710, 10.395975 ], [ -83.012695, 9.990491 ], [ -82.545776, 9.562834 ], [ -82.930298, 9.476154 ], [ -82.924805, 9.074976 ], [ -82.716064, 8.923060 ], [ -82.869873, 8.803654 ], [ -82.825928, 8.624472 ], [ -82.913818, 8.423470 ], [ -82.963257, 8.222364 ], [ -83.507080, 8.445205 ], [ -83.710327, 8.657057 ], [ -83.594971, 8.830795 ], [ -83.633423, 9.047853 ], [ -83.908081, 9.291886 ], [ -84.303589, 9.486990 ], [ -84.644165, 9.611582 ], [ -84.710083, 9.909333 ], [ -84.973755, 10.087854 ], [ -84.907837, 9.795678 ], [ -85.111084, 9.557417 ], [ -85.336304, 9.833567 ], [ -85.660400, 9.930977 ], [ -85.797729, 10.131117 ], [ -85.792236, 10.439196 ], [ -85.660400, 10.752366 ], [ -85.940552, 10.892648 ], [ -85.709839, 11.086775 ], [ -86.055908, 11.404649 ], [ -86.522827, 11.808211 ], [ -86.742554, 12.141376 ], [ -87.165527, 12.458033 ], [ -87.665405, 12.908198 ], [ -87.555542, 13.063426 ], [ -87.390747, 12.913552 ], [ -87.313843, 12.983148 ], [ -87.489624, 13.298757 ], [ -87.791748, 13.384276 ], [ -87.901611, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.840942, 13.255986 ], [ -89.252930, 13.459080 ], [ -89.813232, 13.517838 ], [ -90.000000, 13.662001 ], [ -90.098877, 13.731381 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.928736 ], [ -89.719849, 14.131249 ], [ -89.533081, 14.243087 ], [ -89.588013, 14.360191 ], [ -89.351807, 14.424040 ], [ -89.143066, 14.679254 ], [ -89.225464, 14.870469 ], [ -89.154053, 15.066819 ], [ -88.681641, 15.342465 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.686510 ], [ -87.901611, 15.860958 ], [ -87.615967, 15.876809 ], [ -87.522583, 15.797539 ], [ -87.368774, 15.845105 ], [ -86.901855, 15.755249 ], [ -86.440430, 15.781682 ], [ -86.116333, 15.892659 ], [ -86.000977, 16.003576 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.101807, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.519775, 21.207459 ], [ -76.195679, 21.217701 ], [ -75.596924, 21.017855 ], [ -75.668335, 20.735566 ], [ -74.932251, 20.694462 ], [ -74.174194, 20.282809 ], [ -74.295044, 20.050771 ], [ -74.959717, 19.921713 ], [ -75.635376, 19.870060 ], [ -76.322021, 19.952696 ], [ -77.755737, 19.854561 ], [ -77.085571, 20.411569 ], [ -77.492065, 20.673905 ], [ -78.134766, 20.740703 ], [ -78.480835, 21.028110 ], [ -78.717041, 21.596151 ], [ -79.282837, 21.560393 ], [ -80.216675, 21.825807 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.820679, 22.192491 ], [ -82.100830, 22.350076 ], [ -78.101807, 22.350076 ] ] ], [ [ [ -79.573975, 9.611582 ], [ -79.019165, 9.552000 ], [ -79.057617, 9.454480 ], [ -78.497314, 9.416548 ], [ -78.052368, 9.248514 ], [ -77.728271, 8.944767 ], [ -77.349243, 8.667918 ], [ -77.475586, 8.521268 ], [ -77.239380, 7.934115 ], [ -77.431641, 7.634776 ], [ -77.750244, 7.710992 ], [ -77.882080, 7.220800 ], [ -78.211670, 7.509535 ], [ -78.425903, 8.048352 ], [ -78.178711, 8.320212 ], [ -78.431396, 8.385431 ], [ -78.618164, 8.716789 ], [ -79.118042, 8.993600 ], [ -79.557495, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.161743, 8.331083 ], [ -80.381470, 8.298470 ], [ -80.480347, 8.086423 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.416942 ], [ -80.419922, 7.269843 ], [ -80.886841, 7.220800 ], [ -81.057129, 7.814405 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.705548 ], [ -81.721802, 8.108177 ], [ -82.128296, 8.173431 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.287599 ], [ -82.847900, 8.070107 ], [ -82.963257, 8.222364 ], [ -82.913818, 8.423470 ], [ -82.825928, 8.624472 ], [ -82.869873, 8.803654 ], [ -82.716064, 8.923060 ], [ -82.924805, 9.074976 ], [ -82.930298, 9.476154 ], [ -82.545776, 9.562834 ], [ -82.183228, 9.205138 ], [ -82.205200, 8.993600 ], [ -81.809692, 8.950193 ], [ -81.710815, 9.031578 ], [ -81.436157, 8.787368 ], [ -80.947266, 8.857934 ], [ -80.518799, 9.107521 ], [ -79.914551, 9.313569 ], [ -79.573975, 9.611582 ] ] ], [ [ [ -83.243408, 22.350076 ], [ -83.490601, 22.172145 ], [ -83.908081, 22.156883 ], [ -84.028931, 21.943046 ], [ -84.050903, 21.907375 ], [ -84.545288, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.446411, 22.207749 ], [ -84.358521, 22.350076 ], [ -83.243408, 22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.611582 ], [ -79.019165, 9.552000 ], [ -79.057617, 9.454480 ], [ -78.497314, 9.416548 ], [ -78.052368, 9.248514 ], [ -77.728271, 8.944767 ], [ -77.349243, 8.667918 ], [ -77.475586, 8.521268 ], [ -77.239380, 7.934115 ], [ -77.431641, 7.634776 ], [ -77.750244, 7.710992 ], [ -77.882080, 7.220800 ], [ -78.211670, 7.509535 ], [ -78.425903, 8.048352 ], [ -78.178711, 8.320212 ], [ -78.431396, 8.385431 ], [ -78.618164, 8.716789 ], [ -79.118042, 8.993600 ], [ -79.557495, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.161743, 8.331083 ], [ -80.381470, 8.298470 ], [ -80.480347, 8.086423 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.416942 ], [ -80.419922, 7.269843 ], [ -80.886841, 7.220800 ], [ -81.057129, 7.814405 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.705548 ], [ -81.721802, 8.108177 ], [ -82.128296, 8.173431 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.287599 ], [ -82.847900, 8.070107 ], [ -82.963257, 8.222364 ], [ -82.913818, 8.423470 ], [ -82.825928, 8.624472 ], [ -82.869873, 8.803654 ], [ -82.716064, 8.923060 ], [ -82.924805, 9.074976 ], [ -82.930298, 9.476154 ], [ -82.545776, 9.562834 ], [ -82.183228, 9.205138 ], [ -82.205200, 8.993600 ], [ -81.809692, 8.950193 ], [ -81.710815, 9.031578 ], [ -81.436157, 8.787368 ], [ -80.947266, 8.857934 ], [ -80.518799, 9.107521 ], [ -79.914551, 9.313569 ], [ -79.573975, 9.611582 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.794189, 18.521283 ], [ -76.893311, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.195679, 17.884659 ], [ -76.898804, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.858519 ], [ -78.338013, 18.224134 ], [ -78.217163, 18.453557 ], [ -77.794189, 18.521283 ] ] ], [ [ [ -73.190918, 19.916548 ], [ -72.575684, 19.870060 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.781517 ], [ -71.943970, 18.615013 ], [ -71.685791, 18.312811 ], [ -71.707764, 18.041421 ], [ -72.372437, 18.213698 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.921509, 18.030975 ], [ -74.454346, 18.338884 ], [ -74.366455, 18.661859 ], [ -73.449097, 18.526492 ], [ -72.691040, 18.443136 ], [ -72.333984, 18.667063 ], [ -72.789917, 19.098458 ], [ -72.784424, 19.482129 ], [ -73.416138, 19.637414 ], [ -73.190918, 19.916548 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.101807, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.519775, 21.207459 ], [ -76.195679, 21.217701 ], [ -75.596924, 21.017855 ], [ -75.668335, 20.735566 ], [ -74.932251, 20.694462 ], [ -74.174194, 20.282809 ], [ -74.295044, 20.050771 ], [ -74.959717, 19.921713 ], [ -75.635376, 19.870060 ], [ -76.322021, 19.952696 ], [ -77.755737, 19.854561 ], [ -77.085571, 20.411569 ], [ -77.492065, 20.673905 ], [ -78.134766, 20.740703 ], [ -78.480835, 21.028110 ], [ -78.717041, 21.596151 ], [ -79.282837, 21.560393 ], [ -80.216675, 21.825807 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.820679, 22.192491 ], [ -82.100830, 22.350076 ], [ -78.101807, 22.350076 ] ] ], [ [ [ -83.243408, 22.350076 ], [ -83.490601, 22.172145 ], [ -83.908081, 22.156883 ], [ -84.028931, 21.943046 ], [ -84.050903, 21.907375 ], [ -84.545288, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.446411, 22.207749 ], [ -84.358521, 22.350076 ], [ -83.243408, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.586914, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.647761 ], [ -69.768677, 19.290406 ], [ -69.219360, 19.311143 ], [ -69.252319, 19.015384 ], [ -68.807373, 18.979026 ], [ -68.318481, 18.609807 ], [ -68.686523, 18.203262 ], [ -69.164429, 18.422290 ], [ -69.620361, 18.380592 ], [ -69.949951, 18.427502 ], [ -70.131226, 18.245003 ], [ -70.515747, 18.182388 ], [ -70.669556, 18.427502 ], [ -70.999146, 18.281518 ], [ -71.400146, 17.596903 ], [ -71.658325, 17.753918 ], [ -71.707764, 18.041421 ], [ -71.685791, 18.312811 ], [ -71.943970, 18.615013 ], [ -71.702271, 18.781517 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.586914, 19.885557 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.794189, 18.521283 ], [ -76.893311, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.195679, 17.884659 ], [ -76.898804, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.858519 ], [ -78.338013, 18.224134 ], [ -78.217163, 18.453557 ], [ -77.794189, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.751709, 12.436577 ], [ -71.400146, 12.372197 ], [ -71.136475, 12.109152 ], [ -71.328735, 11.775948 ], [ -71.356201, 11.539234 ], [ -71.943970, 11.420802 ], [ -71.619873, 10.968157 ], [ -71.630859, 10.444598 ], [ -72.070312, 9.866040 ], [ -71.696777, 9.069551 ], [ -71.262817, 9.134639 ], [ -71.037598, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.400146, 10.968157 ], [ -70.153198, 11.372339 ], [ -70.290527, 11.845847 ], [ -69.944458, 12.162856 ], [ -69.581909, 11.458491 ], [ -68.884277, 11.442339 ], [ -68.230591, 10.881859 ], [ -68.192139, 10.552622 ], [ -67.500000, 10.547221 ], [ -67.296753, 10.541821 ], [ -67.060547, 10.568822 ], [ -67.066040, 1.126026 ], [ -67.258301, 1.719102 ], [ -67.500000, 1.993616 ], [ -67.538452, 2.037534 ], [ -67.868042, 1.691649 ], [ -69.818115, 1.713612 ], [ -69.801636, 1.087581 ], [ -69.219360, 0.983228 ], [ -69.252319, 0.598744 ], [ -69.450073, 0.703107 ], [ -70.015869, 0.538322 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.186767 ], [ -69.708252, -0.439449 ], [ -74.569702, -0.439449 ], [ -75.102539, -0.060425 ], [ -75.371704, -0.153808 ], [ -75.646362, 0.000000 ], [ -75.800171, 0.082397 ], [ -76.289062, 0.411984 ], [ -76.574707, 0.258178 ], [ -77.426147, 0.395505 ], [ -77.667847, 0.823946 ], [ -77.854614, 0.807468 ], [ -78.854370, 1.378651 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.763027 ], [ -78.662109, 2.268084 ], [ -78.425903, 2.630301 ], [ -77.931519, 2.696148 ], [ -77.508545, 3.321502 ], [ -77.124023, 3.847812 ], [ -77.497559, 4.088932 ], [ -77.305298, 4.664030 ], [ -77.530518, 5.583184 ], [ -77.316284, 5.845545 ], [ -77.475586, 6.691887 ], [ -77.882080, 7.220800 ], [ -77.750244, 7.710992 ], [ -77.431641, 7.634776 ], [ -77.239380, 7.934115 ], [ -77.475586, 8.521268 ], [ -77.349243, 8.667918 ], [ -76.832886, 8.635334 ], [ -76.085815, 9.335252 ], [ -75.673828, 9.443643 ], [ -75.662842, 9.774025 ], [ -75.481567, 10.617418 ], [ -74.904785, 11.081385 ], [ -74.273071, 11.102947 ], [ -74.196167, 11.307708 ], [ -73.410645, 11.226898 ], [ -72.625122, 11.732924 ], [ -72.235107, 11.953349 ], [ -71.751709, 12.436577 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.575684, 19.870060 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.781517 ], [ -71.943970, 18.615013 ], [ -71.685791, 18.312811 ], [ -71.707764, 18.041421 ], [ -72.372437, 18.213698 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.921509, 18.030975 ], [ -74.454346, 18.338884 ], [ -74.366455, 18.661859 ], [ -73.449097, 18.526492 ], [ -72.691040, 18.443136 ], [ -72.333984, 18.667063 ], [ -72.789917, 19.098458 ], [ -72.784424, 19.482129 ], [ -73.416138, 19.637414 ], [ -73.190918, 19.916548 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 18.521283 ], [ -67.060547, 17.952606 ], [ -67.181396, 17.947381 ], [ -67.241821, 18.375379 ], [ -67.098999, 18.521283 ], [ -67.060547, 18.521283 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.751709, 12.436577 ], [ -71.400146, 12.372197 ], [ -71.136475, 12.109152 ], [ -71.328735, 11.775948 ], [ -71.971436, 11.609193 ], [ -72.224121, 11.108337 ], [ -72.614136, 10.822515 ], [ -72.905273, 10.450000 ], [ -73.026123, 9.736128 ], [ -73.306274, 9.150909 ], [ -72.789917, 9.085824 ], [ -72.658081, 8.624472 ], [ -72.438354, 8.401734 ], [ -72.361450, 7.999397 ], [ -72.476807, 7.629331 ], [ -72.443848, 7.422389 ], [ -72.196655, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.084539 ], [ -70.092773, 6.959144 ], [ -69.389648, 6.096860 ], [ -68.983154, 6.206090 ], [ -68.263550, 6.151478 ], [ -67.692261, 6.266158 ], [ -67.500000, 6.173324 ], [ -67.340698, 6.091398 ], [ -67.500000, 5.621453 ], [ -67.521973, 5.555848 ], [ -67.741699, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.620850, 3.836851 ], [ -67.500000, 3.710782 ], [ -67.335205, 3.540835 ], [ -67.302246, 3.316018 ], [ -67.500000, 3.124061 ], [ -67.807617, 2.816858 ], [ -67.500000, 2.630301 ], [ -67.445068, 2.597377 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.856365 ], [ -67.066040, 1.126026 ], [ -67.258301, 1.719102 ], [ -67.500000, 1.993616 ], [ -67.538452, 2.037534 ], [ -67.868042, 1.691649 ], [ -69.818115, 1.713612 ], [ -69.801636, 1.087581 ], [ -69.219360, 0.983228 ], [ -69.252319, 0.598744 ], [ -69.450073, 0.703107 ], [ -70.015869, 0.538322 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.186767 ], [ -69.708252, -0.439449 ], [ -74.569702, -0.439449 ], [ -75.102539, -0.060425 ], [ -75.371704, -0.153808 ], [ -75.646362, 0.000000 ], [ -75.800171, 0.082397 ], [ -76.289062, 0.411984 ], [ -76.574707, 0.258178 ], [ -77.426147, 0.395505 ], [ -77.667847, 0.823946 ], [ -77.854614, 0.807468 ], [ -78.854370, 1.378651 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.763027 ], [ -78.662109, 2.268084 ], [ -78.425903, 2.630301 ], [ -77.931519, 2.696148 ], [ -77.508545, 3.321502 ], [ -77.124023, 3.847812 ], [ -77.497559, 4.088932 ], [ -77.305298, 4.664030 ], [ -77.530518, 5.583184 ], [ -77.316284, 5.845545 ], [ -77.475586, 6.691887 ], [ -77.882080, 7.220800 ], [ -77.750244, 7.710992 ], [ -77.431641, 7.634776 ], [ -77.239380, 7.934115 ], [ -77.475586, 8.521268 ], [ -77.349243, 8.667918 ], [ -76.832886, 8.635334 ], [ -76.085815, 9.335252 ], [ -75.673828, 9.443643 ], [ -75.662842, 9.774025 ], [ -75.481567, 10.617418 ], [ -74.904785, 11.081385 ], [ -74.273071, 11.102947 ], [ -74.196167, 11.307708 ], [ -73.410645, 11.226898 ], [ -72.625122, 11.732924 ], [ -72.235107, 11.953349 ], [ -71.751709, 12.436577 ] ] ], [ [ [ -71.586914, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.647761 ], [ -69.768677, 19.290406 ], [ -69.219360, 19.311143 ], [ -69.252319, 19.015384 ], [ -68.807373, 18.979026 ], [ -68.318481, 18.609807 ], [ -68.686523, 18.203262 ], [ -69.164429, 18.422290 ], [ -69.620361, 18.380592 ], [ -69.949951, 18.427502 ], [ -70.131226, 18.245003 ], [ -70.515747, 18.182388 ], [ -70.669556, 18.427502 ], [ -70.999146, 18.281518 ], [ -71.400146, 17.596903 ], [ -71.658325, 17.753918 ], [ -71.707764, 18.041421 ], [ -71.685791, 18.312811 ], [ -71.943970, 18.615013 ], [ -71.702271, 18.781517 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.586914, 19.885557 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.854370, 1.378651 ], [ -77.854614, 0.807468 ], [ -77.667847, 0.823946 ], [ -77.426147, 0.395505 ], [ -76.574707, 0.258178 ], [ -76.289062, 0.411984 ], [ -75.800171, 0.082397 ], [ -75.646362, 0.000000 ], [ -75.371704, -0.153808 ], [ -75.102539, -0.060425 ], [ -74.569702, -0.439449 ], [ -80.447388, -0.439449 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.018921, 0.357053 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.983228 ], [ -78.854370, 1.378651 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.944458, 12.162856 ], [ -69.581909, 11.458491 ], [ -68.884277, 11.442339 ], [ -68.230591, 10.881859 ], [ -68.192139, 10.552622 ], [ -67.500000, 10.547221 ], [ -67.296753, 10.541821 ], [ -67.060547, 10.568822 ], [ -67.060547, 1.856365 ], [ -67.181396, 2.251617 ], [ -67.445068, 2.597377 ], [ -67.500000, 2.630301 ], [ -67.807617, 2.816858 ], [ -67.500000, 3.124061 ], [ -67.302246, 3.316018 ], [ -67.335205, 3.540835 ], [ -67.500000, 3.710782 ], [ -67.620850, 3.836851 ], [ -67.824097, 4.505238 ], [ -67.741699, 5.222247 ], [ -67.521973, 5.555848 ], [ -67.500000, 5.621453 ], [ -67.340698, 6.091398 ], [ -67.500000, 6.173324 ], [ -67.692261, 6.266158 ], [ -68.263550, 6.151478 ], [ -68.983154, 6.206090 ], [ -69.389648, 6.096860 ], [ -70.092773, 6.959144 ], [ -70.675049, 7.084539 ], [ -71.960449, 6.991859 ], [ -72.196655, 7.340675 ], [ -72.443848, 7.422389 ], [ -72.476807, 7.629331 ], [ -72.361450, 7.999397 ], [ -72.438354, 8.401734 ], [ -72.658081, 8.624472 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.150909 ], [ -73.026123, 9.736128 ], [ -72.905273, 10.450000 ], [ -72.614136, 10.822515 ], [ -72.224121, 11.108337 ], [ -71.971436, 11.609193 ], [ -71.328735, 11.775948 ], [ -71.356201, 11.539234 ], [ -71.943970, 11.420802 ], [ -71.619873, 10.968157 ], [ -71.630859, 10.444598 ], [ -72.070312, 9.866040 ], [ -71.696777, 9.069551 ], [ -71.262817, 9.134639 ], [ -71.037598, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.400146, 10.968157 ], [ -70.153198, 11.372339 ], [ -70.290527, 11.845847 ], [ -69.944458, 12.162856 ] ] ], [ [ [ -67.060547, 18.521283 ], [ -67.060547, 17.952606 ], [ -67.181396, 17.947381 ], [ -67.241821, 18.375379 ], [ -67.098999, 18.521283 ], [ -67.060547, 18.521283 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.993616 ], [ -67.258301, 1.719102 ], [ -67.066040, 1.126026 ], [ -67.060547, 1.131518 ], [ -67.060547, -0.439449 ], [ -69.708252, -0.439449 ], [ -70.021362, -0.186767 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.538322 ], [ -69.450073, 0.703107 ], [ -69.252319, 0.598744 ], [ -69.219360, 0.983228 ], [ -69.801636, 1.087581 ], [ -69.818115, 1.713612 ], [ -67.868042, 1.691649 ], [ -67.538452, 2.037534 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.854370, 1.378651 ], [ -77.854614, 0.807468 ], [ -77.667847, 0.823946 ], [ -77.426147, 0.395505 ], [ -76.574707, 0.258178 ], [ -76.289062, 0.411984 ], [ -75.800171, 0.082397 ], [ -75.646362, 0.000000 ], [ -75.371704, -0.153808 ], [ -75.102539, -0.060425 ], [ -74.569702, -0.439449 ], [ -80.447388, -0.439449 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.018921, 0.357053 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.983228 ], [ -78.854370, 1.378651 ] ] ], [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.993616 ], [ -67.258301, 1.719102 ], [ -67.066040, 1.126026 ], [ -67.060547, 1.131518 ], [ -67.060547, -0.439449 ], [ -69.708252, -0.439449 ], [ -70.021362, -0.186767 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.538322 ], [ -69.450073, 0.703107 ], [ -69.252319, 0.598744 ], [ -69.219360, 0.983228 ], [ -69.801636, 1.087581 ], [ -69.818115, 1.713612 ], [ -67.868042, 1.691649 ], [ -67.538452, 2.037534 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.050171, 21.539957 ], [ -87.044678, 21.534847 ], [ -87.105103, 21.534847 ], [ -87.050171, 21.539957 ] ] ], [ [ [ -78.189697, 25.209911 ], [ -77.887573, 25.170145 ], [ -77.536011, 24.337087 ], [ -77.536011, 23.760209 ], [ -77.777710, 23.709924 ], [ -78.030396, 24.287027 ], [ -78.409424, 24.572104 ], [ -78.189697, 25.209911 ] ] ], [ [ [ -71.932983, 41.310824 ], [ -72.295532, 41.269550 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.322754, 40.979898 ], [ -72.240601, 41.120746 ], [ -72.020874, 40.979898 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.948975, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.193948 ], [ -75.195923, 39.249271 ], [ -75.525513, 39.495563 ], [ -75.316772, 38.959409 ], [ -75.069580, 38.779781 ], [ -75.053101, 38.401949 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.147103 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.986694, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.057617, 33.491017 ], [ -79.200439, 33.155948 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.438037 ], [ -81.491089, 30.727671 ], [ -81.309814, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.468691 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.084839, 26.204734 ], [ -80.128784, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.326294, 25.636574 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.882784 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.105591, 29.635546 ], [ -85.286865, 29.683281 ], [ -85.770264, 30.149877 ], [ -86.396484, 30.396569 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.382353 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.214478, 29.291190 ], [ -89.406738, 29.156959 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.195328 ], [ -90.153809, 29.118574 ], [ -90.439453, 29.128172 ], [ -90.439453, 41.310824 ], [ -71.932983, 41.310824 ] ] ], [ [ [ -77.788696, 27.039557 ], [ -76.997681, 26.588527 ], [ -77.173462, 25.878994 ], [ -77.354736, 26.007424 ], [ -77.338257, 26.529565 ], [ -77.788696, 26.922070 ], [ -77.788696, 27.039557 ] ] ], [ [ [ -78.508301, 26.868181 ], [ -77.849121, 26.838776 ], [ -77.816162, 26.578702 ], [ -78.909302, 26.416470 ], [ -78.980713, 26.789751 ], [ -78.508301, 26.868181 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.932983, 41.310824 ], [ -72.295532, 41.269550 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.322754, 40.979898 ], [ -72.240601, 41.120746 ], [ -72.020874, 40.979898 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.948975, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.193948 ], [ -75.195923, 39.249271 ], [ -75.525513, 39.495563 ], [ -75.316772, 38.959409 ], [ -75.069580, 38.779781 ], [ -75.053101, 38.401949 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.147103 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.986694, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.057617, 33.491017 ], [ -79.200439, 33.155948 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.438037 ], [ -81.491089, 30.727671 ], [ -81.309814, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.468691 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.084839, 26.204734 ], [ -80.128784, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.326294, 25.636574 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.882784 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.105591, 29.635546 ], [ -85.286865, 29.683281 ], [ -85.770264, 30.149877 ], [ -86.396484, 30.396569 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.382353 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.214478, 29.291190 ], [ -89.406738, 29.156959 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.195328 ], [ -90.153809, 29.118574 ], [ -90.439453, 29.128172 ], [ -90.439453, 41.310824 ], [ -71.932983, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.050171, 21.539957 ], [ -87.044678, 21.534847 ], [ -87.105103, 21.534847 ], [ -87.050171, 21.539957 ] ] ], [ [ [ -78.189697, 25.209911 ], [ -77.887573, 25.170145 ], [ -77.536011, 24.337087 ], [ -77.536011, 23.760209 ], [ -77.777710, 23.709924 ], [ -78.030396, 24.287027 ], [ -78.409424, 24.572104 ], [ -78.189697, 25.209911 ] ] ], [ [ [ -77.788696, 27.039557 ], [ -76.997681, 26.588527 ], [ -77.173462, 25.878994 ], [ -77.354736, 26.007424 ], [ -77.338257, 26.529565 ], [ -77.788696, 26.922070 ], [ -77.788696, 27.039557 ] ] ], [ [ [ -78.508301, 26.868181 ], [ -77.849121, 26.838776 ], [ -77.816162, 26.578702 ], [ -78.909302, 26.416470 ], [ -78.980713, 26.789751 ], [ -78.508301, 26.868181 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.265625, 23.185813 ], [ -81.403198, 23.115102 ], [ -80.617676, 23.104997 ], [ -79.678345, 22.766051 ], [ -79.282837, 22.395793 ], [ -78.343506, 22.512557 ], [ -77.991943, 22.273847 ], [ -77.536011, 21.943046 ], [ -76.975708, 21.534847 ], [ -78.695068, 21.534847 ], [ -78.717041, 21.596151 ], [ -79.282837, 21.560393 ], [ -80.216675, 21.825807 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.034730 ], [ -81.820679, 22.192491 ], [ -82.166748, 22.385635 ], [ -81.793213, 22.634293 ], [ -82.776489, 22.684984 ], [ -83.490601, 22.167058 ], [ -83.908081, 22.151796 ], [ -84.028931, 21.943046 ], [ -84.050903, 21.907375 ], [ -84.545288, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.446411, 22.202663 ], [ -84.226685, 22.563293 ], [ -83.776245, 22.786311 ], [ -83.265381, 22.983681 ], [ -82.507324, 23.079732 ], [ -82.265625, 23.185813 ] ] ] } } ] } @@ -871,7 +943,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 56.022948 ], [ -67.060547, 49.664072 ], [ -67.236328, 49.510944 ], [ -67.500000, 49.418121 ], [ -68.510742, 49.066668 ], [ -69.949951, 47.743017 ], [ -71.103516, 46.822617 ], [ -70.252075, 46.984000 ], [ -68.648071, 48.297812 ], [ -67.500000, 48.759810 ], [ -67.060547, 48.933326 ], [ -67.060547, 45.147179 ], [ -67.137451, 45.135555 ], [ -67.060547, 44.991998 ], [ -67.060547, 44.766237 ], [ -67.500000, 44.566991 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.076294, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.960938, 41.635973 ], [ -70.636597, 41.475660 ], [ -71.119995, 41.492121 ], [ -71.856079, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.322754, 40.979898 ], [ -72.240601, 41.116607 ], [ -72.020874, 40.979898 ], [ -71.943970, 40.930115 ], [ -73.267822, 40.647304 ], [ -73.976440, 40.647304 ], [ -73.948975, 40.751418 ], [ -74.064331, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 56.022948 ], [ -87.363281, 56.022948 ], [ -87.324829, 55.998381 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.301011 ], [ -83.358765, 55.244684 ], [ -82.271118, 55.147488 ], [ -82.435913, 54.281262 ], [ -82.122803, 53.275068 ], [ -81.397705, 52.157085 ], [ -79.909058, 51.206883 ], [ -79.140015, 51.532669 ], [ -78.601685, 52.559656 ], [ -79.123535, 54.139915 ], [ -79.826660, 54.667478 ], [ -78.228149, 55.134930 ], [ -77.195435, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.948242, 56.022948 ], [ -67.060547, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.374023, 48.301467 ], [ -86.462402, 47.550579 ], [ -84.874878, 46.897739 ], [ -84.776001, 46.634351 ], [ -84.539795, 46.536193 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.138794, 46.509735 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.589478, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.133789, 43.568452 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.427511 ], [ -83.117065, 42.077840 ], [ -83.139038, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.672912 ], [ -82.435913, 41.672912 ], [ -81.276855, 42.208176 ], [ -80.244141, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.717041, 43.624147 ], [ -76.816406, 43.628123 ], [ -76.497803, 44.016521 ], [ -76.371460, 44.095476 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.344727, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.081543, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.301514, 45.912944 ], [ -69.999390, 46.690899 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.182246 ], [ -68.230591, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.135555 ], [ -67.060547, 44.991998 ], [ -67.060547, 44.766237 ], [ -67.500000, 44.566991 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.076294, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.960938, 41.635973 ], [ -70.636597, 41.475660 ], [ -71.119995, 41.492121 ], [ -71.856079, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.322754, 40.979898 ], [ -72.240601, 41.116607 ], [ -72.020874, 40.979898 ], [ -71.943970, 40.930115 ], [ -73.267822, 40.647304 ], [ -73.976440, 40.647304 ], [ -73.948975, 40.751418 ], [ -74.064331, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.188063 ], [ -90.000000, 48.096426 ], [ -89.598999, 48.008300 ], [ -89.269409, 48.019324 ], [ -88.374023, 48.301467 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 56.022948 ], [ -67.060547, 49.664072 ], [ -67.236328, 49.510944 ], [ -67.500000, 49.418121 ], [ -68.510742, 49.066668 ], [ -69.949951, 47.743017 ], [ -71.103516, 46.822617 ], [ -70.252075, 46.984000 ], [ -68.648071, 48.297812 ], [ -67.500000, 48.759810 ], [ -67.060547, 48.933326 ], [ -67.060547, 45.147179 ], [ -67.137451, 45.135555 ], [ -67.500000, 45.452424 ], [ -67.791138, 45.702343 ], [ -67.791138, 47.066380 ], [ -68.230591, 47.353711 ], [ -68.906250, 47.182246 ], [ -69.235840, 47.446665 ], [ -69.999390, 46.690899 ], [ -70.301514, 45.912944 ], [ -70.658569, 45.460131 ], [ -71.081543, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.504517, 45.007535 ], [ -73.344727, 45.007535 ], [ -74.866333, 44.999767 ], [ -75.316772, 44.816916 ], [ -76.371460, 44.095476 ], [ -76.497803, 44.016521 ], [ -76.816406, 43.628123 ], [ -78.717041, 43.624147 ], [ -79.172974, 43.464881 ], [ -79.008179, 43.269206 ], [ -78.920288, 42.964463 ], [ -78.936768, 42.863886 ], [ -80.244141, 42.366662 ], [ -81.276855, 42.208176 ], [ -82.435913, 41.672912 ], [ -82.688599, 41.672912 ], [ -83.029175, 41.832735 ], [ -83.139038, 41.975827 ], [ -83.117065, 42.077840 ], [ -82.897339, 42.427511 ], [ -82.430420, 42.980540 ], [ -82.133789, 43.568452 ], [ -82.551270, 45.348285 ], [ -83.589478, 45.817315 ], [ -83.468628, 45.993145 ], [ -83.616943, 46.115134 ], [ -83.891602, 46.115134 ], [ -84.089355, 46.274834 ], [ -84.138794, 46.509735 ], [ -84.336548, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.539795, 46.536193 ], [ -84.776001, 46.634351 ], [ -84.874878, 46.897739 ], [ -86.462402, 47.550579 ], [ -88.374023, 48.301467 ], [ -89.269409, 48.019324 ], [ -89.598999, 48.008300 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.188063 ], [ -90.439453, 56.022948 ], [ -87.363281, 56.022948 ], [ -87.324829, 55.998381 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.301011 ], [ -83.358765, 55.244684 ], [ -82.271118, 55.147488 ], [ -82.435913, 54.281262 ], [ -82.122803, 53.275068 ], [ -81.397705, 52.157085 ], [ -79.909058, 51.206883 ], [ -79.140015, 51.532669 ], [ -78.601685, 52.559656 ], [ -79.123535, 54.139915 ], [ -79.826660, 54.667478 ], [ -78.228149, 55.134930 ], [ -77.195435, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.948242, 56.022948 ], [ -67.060547, 56.022948 ] ] ] } } ] } ] } , @@ -889,13 +963,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 75.969558 ], [ -90.000000, 75.882732 ], [ -89.818726, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.380005, 75.482018 ], [ -84.786987, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.057373, 75.336721 ], [ -79.832153, 74.922284 ], [ -80.458374, 74.657110 ], [ -81.947021, 74.441992 ], [ -83.226929, 74.563812 ], [ -86.094360, 74.409546 ], [ -88.148804, 74.391820 ], [ -89.763794, 74.515490 ], [ -90.000000, 74.544794 ], [ -90.439453, 74.597405 ], [ -90.439453, 75.969558 ] ] ], [ [ [ -76.140747, 79.253586 ], [ -75.525513, 79.198134 ], [ -75.629883, 79.171335 ], [ -76.217651, 79.018574 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.899558 ], [ -78.359985, 77.508873 ], [ -79.760742, 77.209560 ], [ -79.617920, 76.982624 ], [ -77.909546, 77.022159 ], [ -77.887573, 76.778142 ], [ -80.557251, 76.178435 ], [ -83.171997, 76.453917 ], [ -86.110840, 76.298652 ], [ -87.599487, 76.419134 ], [ -89.489136, 76.471918 ], [ -89.615479, 76.951655 ], [ -87.764282, 77.177903 ], [ -88.258667, 77.899558 ], [ -87.648926, 77.969600 ], [ -84.973755, 77.538540 ], [ -86.336060, 78.179588 ], [ -87.962036, 78.371576 ], [ -87.149048, 78.758158 ], [ -85.374756, 78.996578 ], [ -85.237427, 79.171335 ], [ -85.171509, 79.253586 ], [ -76.140747, 79.253586 ] ] ], [ [ [ -67.060547, 77.367899 ], [ -67.060547, 76.104754 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.379089 ], [ -71.400146, 77.008582 ], [ -68.774414, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.060547, 77.367899 ] ] ], [ [ [ -67.060547, 79.219732 ], [ -67.060547, 77.394300 ], [ -67.500000, 77.420647 ], [ -71.043091, 77.635365 ], [ -73.295288, 78.043795 ], [ -73.157959, 78.432316 ], [ -69.373169, 78.913440 ], [ -67.500000, 79.162043 ], [ -67.060547, 79.219732 ] ] ], [ [ [ -86.204224, 79.253586 ], [ -86.583252, 79.171335 ], [ -87.187500, 79.039482 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.248032 ], [ -90.439453, 78.230117 ], [ -90.439453, 79.253586 ], [ -86.204224, 79.253586 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.367899 ], [ -67.060547, 76.104754 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.379089 ], [ -71.400146, 77.008582 ], [ -68.774414, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.060547, 77.367899 ] ] ], [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.420647 ], [ -71.043091, 77.635365 ], [ -73.295288, 78.043795 ], [ -73.157959, 78.432316 ], [ -69.373169, 78.913440 ], [ -67.500000, 79.162043 ], [ -67.060547, 79.219732 ], [ -67.060547, 77.394300 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 75.969558 ], [ -90.000000, 75.882732 ], [ -89.818726, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.380005, 75.482018 ], [ -84.786987, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.057373, 75.336721 ], [ -79.832153, 74.922284 ], [ -80.458374, 74.657110 ], [ -81.947021, 74.441992 ], [ -83.226929, 74.563812 ], [ -86.094360, 74.409546 ], [ -88.148804, 74.391820 ], [ -89.763794, 74.515490 ], [ -90.000000, 74.544794 ], [ -90.439453, 74.597405 ], [ -90.439453, 75.969558 ] ] ], [ [ [ -76.140747, 79.253586 ], [ -75.525513, 79.198134 ], [ -75.629883, 79.171335 ], [ -76.217651, 79.018574 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.899558 ], [ -78.359985, 77.508873 ], [ -79.760742, 77.209560 ], [ -79.617920, 76.982624 ], [ -77.909546, 77.022159 ], [ -77.887573, 76.778142 ], [ -80.557251, 76.178435 ], [ -83.171997, 76.453917 ], [ -86.110840, 76.298652 ], [ -87.599487, 76.419134 ], [ -89.489136, 76.471918 ], [ -89.615479, 76.951655 ], [ -87.764282, 77.177903 ], [ -88.258667, 77.899558 ], [ -87.648926, 77.969600 ], [ -84.973755, 77.538540 ], [ -86.336060, 78.179588 ], [ -87.962036, 78.371576 ], [ -87.149048, 78.758158 ], [ -85.374756, 78.996578 ], [ -85.237427, 79.171335 ], [ -85.171509, 79.253586 ], [ -76.140747, 79.253586 ] ] ], [ [ [ -86.204224, 79.253586 ], [ -86.583252, 79.171335 ], [ -87.187500, 79.039482 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.248032 ], [ -90.439453, 78.230117 ], [ -90.439453, 79.253586 ], [ -86.204224, 79.253586 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.219732 ], [ -67.060547, 79.088462 ], [ -68.060303, 79.088462 ], [ -67.060547, 79.219732 ] ] ], [ [ [ -90.439453, 80.636316 ], [ -90.000000, 80.579842 ], [ -89.450684, 80.509454 ], [ -87.808228, 80.320120 ], [ -87.017212, 79.659613 ], [ -85.814209, 79.336236 ], [ -86.583252, 79.171335 ], [ -86.962280, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ] ] ], [ [ [ -67.060547, 82.732092 ], [ -67.060547, 81.649320 ], [ -67.500000, 81.540120 ], [ -67.653809, 81.501241 ], [ -67.500000, 81.501241 ], [ -67.060547, 81.502864 ], [ -67.060547, 81.105113 ], [ -67.500000, 80.989712 ], [ -67.840576, 80.899800 ], [ -69.466553, 80.616633 ], [ -71.180420, 79.799664 ], [ -73.240356, 79.633945 ], [ -73.877563, 79.430356 ], [ -76.904297, 79.323013 ], [ -75.525513, 79.197105 ], [ -75.629883, 79.171335 ], [ -75.953979, 79.088462 ], [ -85.303345, 79.088462 ], [ -85.237427, 79.171335 ], [ -85.094604, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.929321, 80.251531 ], [ -84.199219, 80.207718 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464060 ], [ -84.100342, 80.579842 ], [ -87.599487, 80.515792 ], [ -89.362793, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.041938 ], [ -90.098877, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.928833, 82.117630 ], [ -86.967773, 82.279430 ], [ -85.501099, 82.652438 ], [ -84.259644, 82.599562 ], [ -83.177490, 82.319912 ], [ -82.683105, 82.676285 ], [ -82.606201, 82.732092 ], [ -67.060547, 82.732092 ] ] ], [ [ [ -67.060547, 80.534782 ], [ -67.060547, 79.990487 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.116678 ], [ -67.500000, 80.357916 ], [ -67.148438, 80.515792 ], [ -67.060547, 80.534782 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.219732 ], [ -67.060547, 79.088462 ], [ -68.060303, 79.088462 ], [ -67.060547, 79.219732 ] ] ], [ [ [ -67.060547, 79.990487 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.116678 ], [ -67.500000, 80.357916 ], [ -67.148438, 80.515792 ], [ -67.060547, 80.534782 ], [ -67.060547, 79.990487 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 80.636316 ], [ -90.000000, 80.579842 ], [ -89.450684, 80.509454 ], [ -87.808228, 80.320120 ], [ -87.017212, 79.659613 ], [ -85.814209, 79.336236 ], [ -86.583252, 79.171335 ], [ -86.962280, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ] ] ], [ [ [ -67.060547, 82.732092 ], [ -67.060547, 81.649320 ], [ -67.500000, 81.540120 ], [ -67.653809, 81.501241 ], [ -67.500000, 81.501241 ], [ -67.060547, 81.502864 ], [ -67.060547, 81.105113 ], [ -67.500000, 80.989712 ], [ -67.840576, 80.899800 ], [ -69.466553, 80.616633 ], [ -71.180420, 79.799664 ], [ -73.240356, 79.633945 ], [ -73.877563, 79.430356 ], [ -76.904297, 79.323013 ], [ -75.525513, 79.197105 ], [ -75.629883, 79.171335 ], [ -75.953979, 79.088462 ], [ -85.303345, 79.088462 ], [ -85.237427, 79.171335 ], [ -85.094604, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.929321, 80.251531 ], [ -84.199219, 80.207718 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464060 ], [ -84.100342, 80.579842 ], [ -87.599487, 80.515792 ], [ -89.362793, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.041938 ], [ -90.098877, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.928833, 82.117630 ], [ -86.967773, 82.279430 ], [ -85.501099, 82.652438 ], [ -84.259644, 82.599562 ], [ -83.177490, 82.319912 ], [ -82.683105, 82.676285 ], [ -82.606201, 82.732092 ], [ -67.060547, 82.732092 ] ] ] ] } } ] } ] } , @@ -931,31 +1009,33 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -57.810059, -63.270712 ], [ -57.222290, -63.526522 ], [ -57.595825, -63.860036 ], [ -58.612061, -64.153742 ], [ -59.046021, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.308967 ], [ -61.298218, -64.546079 ], [ -62.023315, -64.799865 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.116699, -66.191574 ], [ -62.803345, -66.425537 ], [ -63.742676, -66.504502 ], [ -63.759155, -66.513260 ], [ -64.050293, -66.687784 ], [ -66.901245, -66.687784 ], [ -66.582642, -66.513260 ], [ -66.055298, -66.211524 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.603878 ], [ -64.176636, -65.171500 ], [ -63.627319, -64.897920 ], [ -63.001099, -64.642704 ], [ -62.039795, -64.583827 ], [ -61.413574, -64.270839 ], [ -60.710449, -64.074601 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.702289 ], [ -58.595581, -63.389061 ], [ -57.810059, -63.270712 ] ] ], [ [ [ -67.917480, -55.528631 ], [ -67.939453, -55.537957 ], [ -67.939453, -55.528631 ], [ -67.917480, -55.528631 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.917480, -55.528631 ], [ -67.939453, -55.537957 ], [ -67.939453, -55.528631 ], [ -67.917480, -55.528631 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.810059, -63.270712 ], [ -57.222290, -63.526522 ], [ -57.595825, -63.860036 ], [ -58.612061, -64.153742 ], [ -59.046021, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.308967 ], [ -61.298218, -64.546079 ], [ -62.023315, -64.799865 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.116699, -66.191574 ], [ -62.803345, -66.425537 ], [ -63.742676, -66.504502 ], [ -63.759155, -66.513260 ], [ -64.050293, -66.687784 ], [ -66.901245, -66.687784 ], [ -66.582642, -66.513260 ], [ -66.055298, -66.211524 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.603878 ], [ -64.176636, -65.171500 ], [ -63.627319, -64.897920 ], [ -63.001099, -64.642704 ], [ -62.039795, -64.583827 ], [ -61.413574, -64.270839 ], [ -60.710449, -64.074601 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.702289 ], [ -58.595581, -63.389061 ], [ -57.810059, -63.270712 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -53.566414 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.450880 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.200818 ], [ -66.450806, -55.250946 ], [ -66.956177, -54.898724 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -67.939453, -55.537957 ], [ -67.939453, -53.566414 ] ] ], [ [ [ -62.155151, -40.647304 ], [ -62.144165, -40.676472 ], [ -62.660522, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.770142, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.066928 ], [ -64.978638, -42.057450 ], [ -64.302979, -42.358544 ], [ -63.753662, -42.045213 ], [ -63.457031, -42.565219 ], [ -64.379883, -42.875964 ], [ -65.181885, -43.496768 ], [ -65.324707, -44.500423 ], [ -65.566406, -45.038597 ], [ -66.511230, -45.042478 ], [ -67.291260, -45.552525 ], [ -67.500000, -46.092281 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.593628, -47.036439 ], [ -65.637817, -47.238219 ], [ -65.983887, -48.133101 ], [ -67.164917, -48.698212 ], [ -67.500000, -49.303636 ], [ -67.818604, -49.869857 ], [ -67.939453, -49.922935 ], [ -67.939453, -40.647304 ], [ -62.155151, -40.647304 ] ] ], [ [ [ -58.546143, -51.100073 ], [ -57.749634, -51.549751 ], [ -58.046265, -51.900223 ], [ -59.397583, -52.200874 ], [ -59.848022, -51.849353 ], [ -60.699463, -52.301761 ], [ -61.199341, -51.849353 ], [ -59.996338, -51.251601 ], [ -59.150391, -51.501904 ], [ -58.546143, -51.100073 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -53.566414 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.450880 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.200818 ], [ -66.450806, -55.250946 ], [ -66.956177, -54.898724 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -67.939453, -55.537957 ], [ -67.939453, -53.566414 ] ] ], [ [ [ -62.155151, -40.647304 ], [ -62.144165, -40.676472 ], [ -62.660522, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.770142, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.066928 ], [ -64.978638, -42.057450 ], [ -64.302979, -42.358544 ], [ -63.753662, -42.045213 ], [ -63.457031, -42.565219 ], [ -64.379883, -42.875964 ], [ -65.181885, -43.496768 ], [ -65.324707, -44.500423 ], [ -65.566406, -45.038597 ], [ -66.511230, -45.042478 ], [ -67.291260, -45.552525 ], [ -67.500000, -46.092281 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.593628, -47.036439 ], [ -65.637817, -47.238219 ], [ -65.983887, -48.133101 ], [ -67.164917, -48.698212 ], [ -67.500000, -49.303636 ], [ -67.818604, -49.869857 ], [ -67.939453, -49.922935 ], [ -67.939453, -40.647304 ], [ -62.155151, -40.647304 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.546143, -51.100073 ], [ -57.749634, -51.549751 ], [ -58.046265, -51.900223 ], [ -59.397583, -52.200874 ], [ -59.848022, -51.849353 ], [ -60.699463, -52.301761 ], [ -61.199341, -51.849353 ], [ -59.996338, -51.251601 ], [ -59.150391, -51.501904 ], [ -58.546143, -51.100073 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.332168 ], [ -44.648438, -23.352343 ], [ -45.000000, -23.574057 ], [ -45.351562, -23.800424 ], [ -46.472168, -24.091604 ], [ -47.647705, -24.886436 ], [ -48.493652, -25.878994 ], [ -48.641968, -26.622908 ], [ -48.471680, -27.176469 ], [ -48.658447, -28.188244 ], [ -48.889160, -28.676130 ], [ -49.586792, -29.224096 ], [ -50.696411, -30.987028 ], [ -51.575317, -31.779547 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.197328 ], [ -53.371582, -33.770015 ], [ -53.651733, -33.201924 ], [ -53.206787, -32.727220 ], [ -53.789062, -32.049989 ], [ -54.569092, -31.494262 ], [ -55.601807, -30.855079 ], [ -55.969849, -30.883369 ], [ -56.975098, -30.111870 ], [ -57.623291, -30.216355 ], [ -56.288452, -28.854296 ], [ -55.162354, -27.882784 ], [ -54.486694, -27.474161 ], [ -53.646240, -26.926968 ], [ -53.624268, -26.125850 ], [ -54.129639, -25.547398 ], [ -54.624023, -25.740529 ], [ -54.426270, -25.165173 ], [ -54.294434, -24.572104 ], [ -54.288940, -24.021379 ], [ -54.651489, -23.840626 ], [ -55.025024, -24.001308 ], [ -55.398560, -23.956136 ], [ -55.513916, -23.574057 ], [ -55.607300, -22.654572 ], [ -55.794067, -22.360236 ], [ -56.469727, -22.085640 ], [ -56.881714, -22.284014 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.908936, -21.534847 ], [ -44.560547, -21.534847 ] ] ], [ [ [ -62.451782, -21.534847 ], [ -62.682495, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.984375, -21.993989 ], [ -64.374390, -22.801503 ], [ -64.962158, -22.075459 ], [ -65.681763, -21.943046 ], [ -66.269531, -21.830907 ], [ -66.373901, -21.943046 ], [ -67.104492, -22.735657 ], [ -66.983643, -22.988738 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.101633 ], [ -67.939453, -24.302047 ], [ -67.939453, -21.534847 ], [ -62.451782, -21.534847 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.332168 ], [ -44.648438, -23.352343 ], [ -45.000000, -23.574057 ], [ -45.351562, -23.800424 ], [ -46.472168, -24.091604 ], [ -47.647705, -24.886436 ], [ -48.493652, -25.878994 ], [ -48.641968, -26.622908 ], [ -48.471680, -27.176469 ], [ -48.658447, -28.188244 ], [ -48.889160, -28.676130 ], [ -49.586792, -29.224096 ], [ -50.696411, -30.987028 ], [ -51.575317, -31.779547 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.197328 ], [ -53.371582, -33.770015 ], [ -53.651733, -33.201924 ], [ -53.206787, -32.727220 ], [ -53.789062, -32.049989 ], [ -54.569092, -31.494262 ], [ -55.601807, -30.855079 ], [ -55.969849, -30.883369 ], [ -56.975098, -30.111870 ], [ -57.623291, -30.216355 ], [ -57.875977, -31.019987 ], [ -58.139648, -32.045333 ], [ -58.128662, -33.040903 ], [ -58.348389, -33.266250 ], [ -58.496704, -34.434098 ], [ -57.222290, -35.290469 ], [ -57.359619, -35.978006 ], [ -56.733398, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.186387 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.929502 ], [ -62.336426, -38.826871 ], [ -62.122192, -39.423464 ], [ -62.330933, -40.174676 ], [ -62.144165, -40.676472 ], [ -62.660522, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.770142, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.805494 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.066928 ], [ -65.083008, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -21.534847 ], [ -62.451782, -21.534847 ], [ -62.682495, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.036431 ], [ -58.804321, -24.771772 ], [ -57.777100, -25.165173 ], [ -57.634277, -25.606856 ], [ -58.617554, -27.122702 ], [ -57.606812, -27.396155 ], [ -56.486206, -27.552112 ], [ -55.695190, -27.391278 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.740529 ], [ -54.426270, -25.165173 ], [ -54.294434, -24.572104 ], [ -54.288940, -24.021379 ], [ -54.651489, -23.840626 ], [ -55.025024, -24.001308 ], [ -55.398560, -23.956136 ], [ -55.513916, -23.574057 ], [ -55.607300, -22.654572 ], [ -55.794067, -22.360236 ], [ -56.469727, -22.085640 ], [ -56.881714, -22.284014 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.908936, -21.534847 ], [ -44.560547, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.269531, -21.830907 ], [ -65.681763, -21.943046 ], [ -64.962158, -22.075459 ], [ -64.374390, -22.801503 ], [ -63.984375, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.682495, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.036431 ], [ -58.804321, -24.771772 ], [ -57.777100, -25.165173 ], [ -57.634277, -25.606856 ], [ -58.617554, -27.122702 ], [ -57.606812, -27.396155 ], [ -56.486206, -27.552112 ], [ -55.695190, -27.391278 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.547398 ], [ -53.624268, -26.125850 ], [ -53.646240, -26.926968 ], [ -54.486694, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.288452, -28.854296 ], [ -57.623291, -30.216355 ], [ -57.875977, -31.019987 ], [ -58.139648, -32.045333 ], [ -58.128662, -33.040903 ], [ -58.348389, -33.266250 ], [ -58.496704, -34.434098 ], [ -57.222290, -35.290469 ], [ -57.359619, -35.978006 ], [ -56.733398, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.186387 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.929502 ], [ -62.336426, -38.826871 ], [ -62.122192, -39.423464 ], [ -62.330933, -40.174676 ], [ -62.144165, -40.676472 ], [ -62.660522, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.770142, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.805494 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.066928 ], [ -65.083008, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.302047 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.269531, -21.830907 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.908936, -21.534847 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.284014 ], [ -56.469727, -22.085640 ], [ -55.794067, -22.360236 ], [ -55.607300, -22.654572 ], [ -55.513916, -23.574057 ], [ -55.398560, -23.956136 ], [ -55.025024, -24.001308 ], [ -54.651489, -23.840626 ], [ -54.288940, -24.021379 ], [ -54.294434, -24.572104 ], [ -54.426270, -25.165173 ], [ -54.624023, -25.740529 ], [ -54.788818, -26.622908 ], [ -55.695190, -27.391278 ], [ -56.486206, -27.552112 ], [ -57.606812, -27.396155 ], [ -58.617554, -27.122702 ], [ -57.634277, -25.606856 ], [ -57.777100, -25.165173 ], [ -58.804321, -24.771772 ], [ -60.029297, -24.036431 ], [ -60.847778, -23.880815 ], [ -62.682495, -22.248429 ], [ -62.451782, -21.534847 ], [ -57.908936, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.975098, -30.111870 ], [ -55.969849, -30.883369 ], [ -55.601807, -30.855079 ], [ -54.569092, -31.494262 ], [ -53.789062, -32.049989 ], [ -53.206787, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.805542, -34.397845 ], [ -54.937134, -34.953493 ], [ -55.673218, -34.755153 ], [ -56.211548, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.815552, -34.465806 ], [ -58.425293, -33.911454 ], [ -58.348389, -33.266250 ], [ -58.128662, -33.040903 ], [ -58.139648, -32.045333 ], [ -57.875977, -31.019987 ], [ -57.623291, -30.216355 ], [ -56.975098, -30.111870 ] ] ], [ [ [ -57.908936, -21.534847 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.284014 ], [ -56.469727, -22.085640 ], [ -55.794067, -22.360236 ], [ -55.607300, -22.654572 ], [ -55.513916, -23.574057 ], [ -55.398560, -23.956136 ], [ -55.025024, -24.001308 ], [ -54.651489, -23.840626 ], [ -54.288940, -24.021379 ], [ -54.294434, -24.572104 ], [ -54.426270, -25.165173 ], [ -54.624023, -25.740529 ], [ -54.788818, -26.622908 ], [ -55.695190, -27.391278 ], [ -56.486206, -27.552112 ], [ -57.606812, -27.396155 ], [ -58.617554, -27.122702 ], [ -57.634277, -25.606856 ], [ -57.777100, -25.165173 ], [ -58.804321, -24.771772 ], [ -60.029297, -24.036431 ], [ -60.847778, -23.880815 ], [ -62.682495, -22.248429 ], [ -62.451782, -21.534847 ], [ -57.908936, -21.534847 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.975098, -30.111870 ], [ -55.969849, -30.883369 ], [ -55.601807, -30.855079 ], [ -54.569092, -31.494262 ], [ -53.789062, -32.049989 ], [ -53.206787, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.805542, -34.397845 ], [ -54.937134, -34.953493 ], [ -55.673218, -34.755153 ], [ -56.211548, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.815552, -34.465806 ], [ -58.425293, -33.911454 ], [ -58.348389, -33.266250 ], [ -58.128662, -33.040903 ], [ -58.139648, -32.045333 ], [ -57.875977, -31.019987 ], [ -57.623291, -30.216355 ], [ -56.975098, -30.111870 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.498657, 0.439449 ], [ -50.696411, 0.225219 ], [ -50.388794, -0.082397 ], [ -48.619995, -0.236205 ], [ -48.581543, -1.241358 ], [ -47.823486, -0.582265 ], [ -46.565552, -0.944781 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.554375 ], [ -44.560547, -1.966167 ], [ -44.560547, -2.619326 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.685174 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.469727, -22.085640 ], [ -56.881714, -22.284014 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.870483, -20.735566 ], [ -58.167114, -20.179724 ], [ -58.183594, -19.870060 ], [ -59.111938, -19.357794 ], [ -60.040283, -19.342245 ], [ -61.787109, -19.637414 ], [ -62.265015, -20.514499 ], [ -62.292480, -21.053744 ], [ -62.583618, -21.943046 ], [ -62.682495, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.984375, -21.993989 ], [ -64.160156, -22.350076 ], [ -64.742432, -22.350076 ], [ -64.962158, -22.075459 ], [ -65.681763, -21.943046 ], [ -66.269531, -21.836006 ], [ -66.373901, -21.943046 ], [ -66.747437, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, 0.439449 ], [ -50.498657, 0.439449 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.269531, -21.836006 ], [ -65.681763, -21.943046 ], [ -64.962158, -22.075459 ], [ -64.742432, -22.350076 ], [ -66.747437, -22.350076 ], [ -66.373901, -21.943046 ], [ -66.269531, -21.836006 ] ] ], [ [ [ -64.160156, -22.350076 ], [ -63.984375, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.682495, -22.248429 ], [ -62.572632, -22.350076 ], [ -64.160156, -22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.498657, 0.439449 ], [ -50.696411, 0.225219 ], [ -50.388794, -0.082397 ], [ -48.619995, -0.236205 ], [ -48.581543, -1.241358 ], [ -47.823486, -0.582265 ], [ -46.565552, -0.944781 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.554375 ], [ -44.560547, -1.966167 ], [ -44.560547, -2.619326 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.685174 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.469727, -22.085640 ], [ -56.881714, -22.284014 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.870483, -20.735566 ], [ -58.167114, -20.179724 ], [ -58.183594, -19.870060 ], [ -59.111938, -19.357794 ], [ -60.040283, -19.342245 ], [ -61.787109, -19.637414 ], [ -62.265015, -20.514499 ], [ -62.292480, -21.053744 ], [ -62.583618, -21.943046 ], [ -62.682495, -22.248429 ], [ -62.572632, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, 0.439449 ], [ -50.498657, 0.439449 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.040283, -19.342245 ], [ -59.111938, -19.357794 ], [ -58.183594, -19.870060 ], [ -58.167114, -20.179724 ], [ -57.870483, -20.735566 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.284014 ], [ -56.469727, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.572632, -22.350076 ], [ -62.682495, -22.248429 ], [ -62.583618, -21.943046 ], [ -62.292480, -21.053744 ], [ -62.265015, -20.514499 ], [ -61.787109, -19.637414 ], [ -60.040283, -19.342245 ] ] ] } } ] } @@ -963,33 +1043,39 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.880493, 10.714587 ], [ -62.726440, 10.417586 ], [ -62.385864, 9.947209 ], [ -61.589355, 9.871452 ], [ -60.831299, 9.378612 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.602747 ], [ -59.754639, 8.363693 ], [ -60.551147, 7.776309 ], [ -60.639038, 7.411495 ], [ -60.292969, 7.040927 ], [ -60.540161, 6.855532 ], [ -61.155396, 6.697343 ], [ -61.138916, 6.233395 ], [ -61.408081, 5.960290 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.963135, 4.532618 ], [ -62.083740, 4.160158 ], [ -62.803345, 4.006740 ], [ -63.094482, 3.771078 ], [ -63.885498, 4.017699 ], [ -64.627075, 4.149201 ], [ -64.813843, 4.056056 ], [ -64.368896, 3.798484 ], [ -64.407349, 3.124061 ], [ -64.270020, 2.493109 ], [ -63.424072, 2.410787 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.198608, 1.493971 ], [ -64.610596, 1.329226 ], [ -65.352173, 1.093073 ], [ -65.544434, 0.785498 ], [ -66.324463, 0.725078 ], [ -66.873779, 1.252342 ], [ -67.066040, 1.126026 ], [ -67.258301, 1.719102 ], [ -67.500000, 1.993616 ], [ -67.538452, 2.037534 ], [ -67.868042, 1.691649 ], [ -67.939453, 1.691649 ], [ -67.939453, 10.552622 ], [ -67.500000, 10.547221 ], [ -67.296753, 10.541821 ], [ -66.225586, 10.649811 ], [ -65.654297, 10.201407 ], [ -64.890747, 10.077037 ], [ -64.330444, 10.390572 ], [ -64.313965, 10.639014 ], [ -63.078003, 10.698394 ], [ -61.880493, 10.714587 ] ] ], [ [ [ -67.098999, 18.521283 ], [ -66.280518, 18.510866 ], [ -65.769653, 18.427502 ], [ -65.588379, 18.224134 ], [ -65.846558, 17.973508 ], [ -66.599121, 17.978733 ], [ -67.181396, 17.947381 ], [ -67.241821, 18.375379 ], [ -67.098999, 18.521283 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.697754, 6.266158 ], [ -67.500000, 6.173324 ], [ -67.340698, 6.091398 ], [ -67.500000, 5.621453 ], [ -67.521973, 5.555848 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.620850, 3.836851 ], [ -67.500000, 3.710782 ], [ -67.335205, 3.540835 ], [ -67.302246, 3.316018 ], [ -67.500000, 3.124061 ], [ -67.813110, 2.816858 ], [ -67.500000, 2.630301 ], [ -67.445068, 2.597377 ], [ -67.181396, 2.251617 ], [ -66.873779, 1.252342 ], [ -67.066040, 1.126026 ], [ -67.258301, 1.719102 ], [ -67.500000, 1.993616 ], [ -67.538452, 2.037534 ], [ -67.868042, 1.691649 ], [ -67.939453, 1.691649 ], [ -67.939453, 6.217012 ], [ -67.697754, 6.266158 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.887254 ], [ -60.891724, 10.854886 ], [ -60.935669, 10.109486 ], [ -61.770630, 10.001310 ], [ -61.946411, 10.087854 ], [ -61.660767, 10.363555 ], [ -61.677246, 10.757763 ], [ -61.105957, 10.887254 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.880493, 10.714587 ], [ -62.726440, 10.417586 ], [ -62.385864, 9.947209 ], [ -61.589355, 9.871452 ], [ -60.831299, 9.378612 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.602747 ], [ -59.754639, 8.363693 ], [ -60.551147, 7.776309 ], [ -60.639038, 7.411495 ], [ -60.292969, 7.040927 ], [ -60.540161, 6.855532 ], [ -61.155396, 6.697343 ], [ -61.138916, 6.233395 ], [ -61.408081, 5.960290 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.963135, 4.532618 ], [ -62.083740, 4.160158 ], [ -62.803345, 4.006740 ], [ -63.094482, 3.771078 ], [ -63.885498, 4.017699 ], [ -64.627075, 4.149201 ], [ -64.813843, 4.056056 ], [ -64.368896, 3.798484 ], [ -64.407349, 3.124061 ], [ -64.270020, 2.493109 ], [ -63.424072, 2.410787 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.198608, 1.493971 ], [ -64.610596, 1.329226 ], [ -65.352173, 1.093073 ], [ -65.544434, 0.785498 ], [ -66.324463, 0.725078 ], [ -66.873779, 1.252342 ], [ -67.181396, 2.251617 ], [ -67.445068, 2.597377 ], [ -67.500000, 2.630301 ], [ -67.813110, 2.816858 ], [ -67.500000, 3.124061 ], [ -67.302246, 3.316018 ], [ -67.335205, 3.540835 ], [ -67.500000, 3.710782 ], [ -67.620850, 3.836851 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.555848 ], [ -67.500000, 5.621453 ], [ -67.340698, 6.091398 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.266158 ], [ -67.939453, 6.217012 ], [ -67.939453, 10.552622 ], [ -67.500000, 10.547221 ], [ -67.296753, 10.541821 ], [ -66.225586, 10.649811 ], [ -65.654297, 10.201407 ], [ -64.890747, 10.077037 ], [ -64.330444, 10.390572 ], [ -64.313965, 10.639014 ], [ -63.078003, 10.698394 ], [ -61.880493, 10.714587 ] ] ], [ [ [ -67.098999, 18.521283 ], [ -66.280518, 18.510866 ], [ -65.769653, 18.427502 ], [ -65.588379, 18.224134 ], [ -65.846558, 17.973508 ], [ -66.599121, 17.978733 ], [ -67.181396, 17.947381 ], [ -67.241821, 18.375379 ], [ -67.098999, 18.521283 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.754639, 8.363693 ], [ -59.100952, 7.999397 ], [ -58.480225, 7.346123 ], [ -58.452759, 6.833716 ], [ -58.079224, 6.806444 ], [ -57.145386, 5.971217 ], [ -55.947876, 5.769036 ], [ -55.838013, 5.949363 ], [ -55.030518, 6.025848 ], [ -53.959351, 5.752640 ], [ -54.475708, 4.893941 ], [ -54.398804, 4.209465 ], [ -54.003296, 3.617589 ], [ -54.179077, 3.189879 ], [ -54.266968, 2.729070 ], [ -54.525146, 2.311994 ], [ -55.096436, 2.520549 ], [ -55.568848, 2.421764 ], [ -55.969849, 2.509573 ], [ -56.074219, 2.218684 ], [ -55.903931, 2.021065 ], [ -55.991821, 1.817932 ], [ -56.535645, 1.900286 ], [ -56.782837, 1.861855 ], [ -57.332153, 1.949697 ], [ -57.661743, 1.680667 ], [ -58.112183, 1.504954 ], [ -58.430786, 1.461023 ], [ -58.540649, 1.268817 ], [ -59.029541, 1.318243 ], [ -59.644775, 1.784990 ], [ -59.716187, 2.246129 ], [ -59.974365, 2.756504 ], [ -59.815063, 3.606625 ], [ -59.534912, 3.957421 ], [ -59.765625, 4.423090 ], [ -60.111694, 4.570949 ], [ -59.979858, 5.014339 ], [ -60.210571, 5.244128 ], [ -60.732422, 5.200365 ], [ -61.408081, 5.960290 ], [ -61.138916, 6.233395 ], [ -61.155396, 6.697343 ], [ -60.540161, 6.855532 ], [ -60.292969, 7.040927 ], [ -60.639038, 7.411495 ], [ -60.551147, 7.776309 ], [ -59.754639, 8.363693 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.887254 ], [ -60.891724, 10.854886 ], [ -60.935669, 10.109486 ], [ -61.770630, 10.001310 ], [ -61.946411, 10.087854 ], [ -61.660767, 10.363555 ], [ -61.677246, 10.757763 ], [ -61.105957, 10.887254 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.210571, 5.244128 ], [ -59.979858, 5.014339 ], [ -60.111694, 4.570949 ], [ -59.765625, 4.423090 ], [ -59.534912, 3.957421 ], [ -59.815063, 3.606625 ], [ -59.974365, 2.756504 ], [ -59.716187, 2.246129 ], [ -59.644775, 1.784990 ], [ -59.029541, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.461023 ], [ -58.112183, 1.504954 ], [ -57.661743, 1.680667 ], [ -57.332153, 1.949697 ], [ -56.782837, 1.861855 ], [ -56.535645, 1.900286 ], [ -55.991821, 1.817932 ], [ -55.903931, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.969849, 2.509573 ], [ -55.568848, 2.421764 ], [ -55.096436, 2.520549 ], [ -54.525146, 2.311994 ], [ -54.085693, 2.103409 ], [ -53.778076, 2.377857 ], [ -53.552856, 2.333949 ], [ -53.415527, 2.054003 ], [ -52.937622, 2.125367 ], [ -52.553101, 2.504085 ], [ -52.245483, 3.239240 ], [ -51.657715, 4.154679 ], [ -51.317139, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.900286 ], [ -49.971313, 1.735574 ], [ -49.943848, 1.043643 ], [ -50.696411, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.082397 ], [ -48.619995, -0.236205 ], [ -48.614502, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.691649 ], [ -67.868042, 1.691649 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.993616 ], [ -67.258301, 1.719102 ], [ -67.066040, 1.126026 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.544434, 0.785498 ], [ -65.352173, 1.093073 ], [ -64.610596, 1.329226 ], [ -64.198608, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.410787 ], [ -64.270020, 2.493109 ], [ -64.407349, 3.124061 ], [ -64.368896, 3.798484 ], [ -64.813843, 4.056056 ], [ -64.627075, 4.149201 ], [ -63.885498, 4.017699 ], [ -63.094482, 3.771078 ], [ -62.803345, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.963135, 4.532618 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.210571, 5.244128 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.754639, 8.363693 ], [ -59.100952, 7.999397 ], [ -58.480225, 7.346123 ], [ -58.452759, 6.833716 ], [ -58.079224, 6.806444 ], [ -57.145386, 5.971217 ], [ -57.304688, 5.074529 ], [ -57.914429, 4.811839 ], [ -57.859497, 4.576425 ], [ -58.040771, 4.061536 ], [ -57.601318, 3.332470 ], [ -57.282715, 3.332470 ], [ -57.150879, 2.767478 ], [ -56.535645, 1.900286 ], [ -56.782837, 1.861855 ], [ -57.332153, 1.949697 ], [ -57.661743, 1.680667 ], [ -58.112183, 1.504954 ], [ -58.430786, 1.461023 ], [ -58.540649, 1.268817 ], [ -59.029541, 1.318243 ], [ -59.644775, 1.784990 ], [ -59.716187, 2.246129 ], [ -59.974365, 2.756504 ], [ -59.815063, 3.606625 ], [ -59.534912, 3.957421 ], [ -59.765625, 4.423090 ], [ -60.111694, 4.570949 ], [ -59.979858, 5.014339 ], [ -60.210571, 5.244128 ], [ -60.732422, 5.200365 ], [ -61.408081, 5.960290 ], [ -61.138916, 6.233395 ], [ -61.155396, 6.697343 ], [ -60.540161, 6.855532 ], [ -60.292969, 7.040927 ], [ -60.639038, 7.411495 ], [ -60.551147, 7.776309 ], [ -59.754639, 8.363693 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.752640 ], [ -52.882690, 5.408211 ], [ -51.822510, 4.565474 ], [ -51.657715, 4.154679 ], [ -52.245483, 3.239240 ], [ -52.553101, 2.504085 ], [ -52.937622, 2.125367 ], [ -53.415527, 2.054003 ], [ -53.552856, 2.333949 ], [ -53.778076, 2.377857 ], [ -54.085693, 2.103409 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.008789, 3.623071 ], [ -54.398804, 4.209465 ], [ -54.475708, 4.893941 ], [ -53.959351, 5.752640 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.030518, 6.025848 ], [ -53.959351, 5.752640 ], [ -52.882690, 5.408211 ], [ -51.822510, 4.565474 ], [ -51.657715, 4.154679 ], [ -51.317139, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.900286 ], [ -49.971313, 1.735574 ], [ -49.943848, 1.043643 ], [ -50.696411, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.082397 ], [ -48.619995, -0.236205 ], [ -48.614502, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.691649 ], [ -67.868042, 1.691649 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.993616 ], [ -67.258301, 1.719102 ], [ -67.066040, 1.126026 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.544434, 0.785498 ], [ -65.352173, 1.093073 ], [ -64.610596, 1.329226 ], [ -64.198608, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.410787 ], [ -64.270020, 2.493109 ], [ -64.407349, 3.124061 ], [ -64.368896, 3.798484 ], [ -64.813843, 4.056056 ], [ -64.627075, 4.149201 ], [ -63.885498, 4.017699 ], [ -63.094482, 3.771078 ], [ -62.803345, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.963135, 4.532618 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.210571, 5.244128 ], [ -59.979858, 5.014339 ], [ -60.111694, 4.570949 ], [ -59.765625, 4.423090 ], [ -59.534912, 3.957421 ], [ -59.815063, 3.606625 ], [ -59.974365, 2.756504 ], [ -59.716187, 2.246129 ], [ -59.644775, 1.784990 ], [ -59.029541, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.461023 ], [ -58.112183, 1.504954 ], [ -57.661743, 1.680667 ], [ -57.332153, 1.949697 ], [ -56.782837, 1.861855 ], [ -56.535645, 1.900286 ], [ -57.150879, 2.767478 ], [ -57.282715, 3.332470 ], [ -57.601318, 3.332470 ], [ -58.040771, 4.061536 ], [ -57.859497, 4.576425 ], [ -57.914429, 4.811839 ], [ -57.304688, 5.074529 ], [ -57.145386, 5.971217 ], [ -55.947876, 5.769036 ], [ -55.838013, 5.949363 ], [ -55.030518, 6.025848 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.055542, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.991494 ], [ -64.473267, 46.236853 ], [ -63.171387, 45.736860 ], [ -61.517944, 45.882361 ], [ -60.518188, 47.006480 ], [ -60.446777, 46.282428 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.263289 ], [ -63.253784, 44.668653 ], [ -64.242554, 44.264871 ], [ -65.363159, 43.544567 ], [ -66.121216, 43.616194 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.022339, 45.259422 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -67.500000, 44.566991 ], [ -67.939453, 44.367060 ], [ -67.939453, 48.582058 ], [ -67.500000, 48.759810 ], [ -66.549683, 49.131408 ], [ -65.055542, 49.231947 ] ] ], [ [ [ -64.011841, 47.036439 ], [ -63.665771, 46.547528 ], [ -62.935181, 46.415139 ], [ -62.012329, 46.441642 ], [ -62.501221, 46.031296 ], [ -62.874756, 45.966425 ], [ -64.143677, 46.392411 ], [ -64.390869, 46.724800 ], [ -64.011841, 47.036439 ] ] ], [ [ [ -55.870972, 51.631657 ], [ -55.404053, 51.587310 ], [ -55.596313, 51.316881 ], [ -56.134644, 50.687758 ], [ -56.793823, 49.813176 ], [ -56.140137, 50.148746 ], [ -55.469971, 49.933544 ], [ -55.821533, 49.585787 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.557289 ], [ -53.475952, 49.249879 ], [ -53.783569, 48.516604 ], [ -53.085938, 48.687334 ], [ -52.959595, 48.155093 ], [ -52.646484, 47.535747 ], [ -53.069458, 46.653207 ], [ -53.519897, 46.615488 ], [ -54.179077, 46.807580 ], [ -53.959351, 47.624678 ], [ -54.239502, 47.750405 ], [ -55.398560, 46.882723 ], [ -55.997314, 46.920255 ], [ -55.288696, 47.387193 ], [ -56.250000, 47.632082 ], [ -57.321167, 47.572820 ], [ -59.265747, 47.602459 ], [ -59.419556, 47.897931 ], [ -58.793335, 48.250283 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.285970 ], [ -55.870972, 51.631657 ] ] ], [ [ [ -61.051025, 56.022948 ], [ -60.474243, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.332153, 54.626158 ], [ -56.936646, 53.777935 ], [ -56.156616, 53.647894 ], [ -55.755615, 53.268498 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.123413, 51.419764 ], [ -58.771362, 51.062113 ], [ -60.029297, 50.240179 ], [ -61.721191, 50.078295 ], [ -63.863525, 50.289339 ], [ -65.363159, 50.296358 ], [ -66.395874, 50.229638 ], [ -67.236328, 49.510944 ], [ -67.500000, 49.418121 ], [ -67.939453, 49.267805 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ] ] ], [ [ [ -64.171143, 49.954754 ], [ -62.858276, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.803589, 49.102645 ], [ -62.292480, 49.084660 ], [ -63.588867, 49.400250 ], [ -64.517212, 49.873398 ], [ -64.171143, 49.954754 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -67.500000, 44.566991 ], [ -67.939453, 44.367060 ], [ -67.939453, 47.163575 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 49.267805 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ], [ -60.474243, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.332153, 54.626158 ], [ -56.936646, 53.777935 ], [ -56.156616, 53.647894 ], [ -55.755615, 53.268498 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.123413, 51.419764 ], [ -58.771362, 51.062113 ], [ -60.029297, 50.240179 ], [ -61.721191, 50.078295 ], [ -63.863525, 50.289339 ], [ -65.363159, 50.296358 ], [ -66.395874, 50.229638 ], [ -67.236328, 49.510944 ], [ -67.500000, 49.418121 ], [ -67.939453, 49.267805 ] ] ], [ [ [ -64.011841, 47.036439 ], [ -63.665771, 46.547528 ], [ -62.935181, 46.415139 ], [ -62.012329, 46.441642 ], [ -62.501221, 46.031296 ], [ -62.874756, 45.966425 ], [ -64.143677, 46.392411 ], [ -64.390869, 46.724800 ], [ -64.011841, 47.036439 ] ] ], [ [ [ -55.870972, 51.631657 ], [ -55.404053, 51.587310 ], [ -55.596313, 51.316881 ], [ -56.134644, 50.687758 ], [ -56.793823, 49.813176 ], [ -56.140137, 50.148746 ], [ -55.469971, 49.933544 ], [ -55.821533, 49.585787 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.557289 ], [ -53.475952, 49.249879 ], [ -53.783569, 48.516604 ], [ -53.085938, 48.687334 ], [ -52.959595, 48.155093 ], [ -52.646484, 47.535747 ], [ -53.069458, 46.653207 ], [ -53.519897, 46.615488 ], [ -54.179077, 46.807580 ], [ -53.959351, 47.624678 ], [ -54.239502, 47.750405 ], [ -55.398560, 46.882723 ], [ -55.997314, 46.920255 ], [ -55.288696, 47.387193 ], [ -56.250000, 47.632082 ], [ -57.321167, 47.572820 ], [ -59.265747, 47.602459 ], [ -59.419556, 47.897931 ], [ -58.793335, 48.250283 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.285970 ], [ -55.870972, 51.631657 ] ] ], [ [ [ -67.939453, 48.582058 ], [ -67.500000, 48.759810 ], [ -66.549683, 49.131408 ], [ -65.055542, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.991494 ], [ -64.473267, 46.236853 ], [ -63.171387, 45.736860 ], [ -61.517944, 45.882361 ], [ -60.518188, 47.006480 ], [ -60.446777, 46.282428 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.263289 ], [ -63.253784, 44.668653 ], [ -64.242554, 44.264871 ], [ -65.363159, 43.544567 ], [ -66.121216, 43.616194 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.022339, 45.259422 ], [ -67.137451, 45.135555 ], [ -67.500000, 45.452424 ], [ -67.791138, 45.702343 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.582058 ] ] ], [ [ [ -64.171143, 49.954754 ], [ -62.858276, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.803589, 49.102645 ], [ -62.292480, 49.084660 ], [ -63.588867, 49.400250 ], [ -64.517212, 49.873398 ], [ -64.171143, 49.954754 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.583130, 60.335105 ], [ -63.803101, 59.442282 ], [ -62.501221, 58.164908 ], [ -61.397095, 56.965942 ], [ -61.798096, 56.337856 ], [ -60.474243, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.653809, 58.211238 ], [ -67.500000, 58.271954 ], [ -66.198120, 58.765352 ], [ -65.242310, 59.869641 ], [ -64.583130, 60.335105 ] ] ], [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ], [ -44.785767, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.263428, 60.852938 ], [ -48.262939, 60.858288 ], [ -49.229736, 61.407236 ], [ -49.899902, 62.382731 ], [ -51.630249, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.272949, 65.176112 ], [ -53.662720, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.377075, 66.687784 ], [ -44.560547, 66.687784 ] ] ], [ [ [ -67.939453, 63.233627 ], [ -67.500000, 62.962715 ], [ -67.368164, 62.882701 ], [ -66.324463, 62.280701 ], [ -66.165161, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ] ] ], [ [ [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ], [ -67.088013, 65.106836 ], [ -65.731201, 64.647408 ], [ -65.319214, 64.382691 ], [ -64.665527, 63.391522 ], [ -65.011597, 62.674143 ], [ -66.275024, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ] ] ], [ [ [ -61.929932, 66.687784 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.388161 ], [ -67.500000, 66.313242 ], [ -67.939453, 66.269067 ], [ -67.939453, 66.687784 ], [ -61.929932, 66.687784 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ], [ -44.785767, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.263428, 60.852938 ], [ -48.262939, 60.858288 ], [ -49.229736, 61.407236 ], [ -49.899902, 62.382731 ], [ -51.630249, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.272949, 65.176112 ], [ -53.662720, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.377075, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.583130, 60.335105 ], [ -63.803101, 59.442282 ], [ -62.501221, 58.164908 ], [ -61.397095, 56.965942 ], [ -61.798096, 56.337856 ], [ -60.474243, 55.776573 ], [ -60.468750, 55.773483 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.653809, 58.211238 ], [ -67.500000, 58.271954 ], [ -66.198120, 58.765352 ], [ -65.242310, 59.869641 ], [ -64.583130, 60.335105 ] ] ], [ [ [ -67.939453, 66.269067 ], [ -67.939453, 66.687784 ], [ -61.929932, 66.687784 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.388161 ], [ -67.500000, 66.313242 ], [ -67.939453, 66.269067 ] ] ], [ [ [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ], [ -67.088013, 65.106836 ], [ -65.731201, 64.647408 ], [ -65.319214, 64.382691 ], [ -64.665527, 63.391522 ], [ -65.011597, 62.674143 ], [ -66.275024, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ] ] ], [ [ [ -67.939453, 63.233627 ], [ -67.500000, 62.962715 ], [ -67.368164, 62.882701 ], [ -66.324463, 62.280701 ], [ -66.165161, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.547363, 66.337505 ], [ -53.459473, 66.513260 ], [ -53.300171, 66.835165 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.356673 ], [ -51.476440, 68.728413 ], [ -51.080933, 69.146920 ], [ -50.872192, 69.928415 ], [ -52.014771, 69.574813 ], [ -52.558594, 69.424760 ], [ -53.453979, 69.283371 ], [ -54.684448, 69.609292 ], [ -54.750366, 70.289117 ], [ -54.354858, 70.821227 ], [ -53.432007, 70.835658 ], [ -51.388550, 70.568803 ], [ -53.107910, 71.203690 ], [ -54.003296, 71.547525 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.653291 ], [ -54.717407, 72.585761 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -56.530151, 74.019543 ], [ -56.667480, 74.140084 ], [ -44.560547, 74.140084 ] ] ], [ [ [ -67.939453, 68.481941 ], [ -67.500000, 68.360725 ], [ -66.450806, 68.067150 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.927908 ], [ -61.853027, 66.861082 ], [ -62.083740, 66.337505 ], [ -66.637573, 66.337505 ], [ -66.719971, 66.388161 ], [ -67.241821, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.481941 ] ] ], [ [ [ -67.939453, 70.132898 ], [ -67.917480, 70.121695 ], [ -67.500000, 69.716202 ], [ -66.967163, 69.185993 ], [ -67.500000, 69.052858 ], [ -67.939453, 68.940633 ], [ -67.939453, 70.132898 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.547363, 66.337505 ], [ -53.459473, 66.513260 ], [ -53.300171, 66.835165 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.356673 ], [ -51.476440, 68.728413 ], [ -51.080933, 69.146920 ], [ -50.872192, 69.928415 ], [ -52.014771, 69.574813 ], [ -52.558594, 69.424760 ], [ -53.453979, 69.283371 ], [ -54.684448, 69.609292 ], [ -54.750366, 70.289117 ], [ -54.354858, 70.821227 ], [ -53.432007, 70.835658 ], [ -51.388550, 70.568803 ], [ -53.107910, 71.203690 ], [ -54.003296, 71.547525 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.653291 ], [ -54.717407, 72.585761 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -56.530151, 74.019543 ], [ -56.667480, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 68.481941 ], [ -67.500000, 68.360725 ], [ -66.450806, 68.067150 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.927908 ], [ -61.853027, 66.861082 ], [ -62.083740, 66.337505 ], [ -66.637573, 66.337505 ], [ -66.719971, 66.388161 ], [ -67.241821, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.481941 ] ] ], [ [ [ -67.939453, 68.940633 ], [ -67.939453, 70.132898 ], [ -67.917480, 70.121695 ], [ -67.500000, 69.716202 ], [ -66.967163, 69.185993 ], [ -67.500000, 69.052858 ], [ -67.939453, 68.940633 ] ] ] ] } } ] } ] } , @@ -1001,13 +1087,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -50.388794, 82.438651 ], [ -48.004761, 82.064721 ], [ -46.598511, 81.985462 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.105086 ], [ -67.434082, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -67.500000, 80.048561 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.155261 ], [ -67.500000, 80.357916 ], [ -67.148438, 80.515792 ], [ -63.687744, 81.214014 ], [ -62.232056, 81.320764 ], [ -62.649536, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.135132, 82.199320 ], [ -53.041992, 81.888381 ], [ -50.388794, 82.438651 ] ] ], [ [ [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ], [ -61.847534, 82.628514 ], [ -61.891479, 82.361644 ], [ -64.330444, 81.927816 ], [ -66.752930, 81.724769 ], [ -67.500000, 81.540120 ], [ -67.659302, 81.501241 ], [ -67.500000, 81.501241 ], [ -65.478516, 81.506110 ], [ -67.500000, 80.989712 ], [ -67.840576, 80.899800 ], [ -67.939453, 80.883278 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ] ] ], [ [ [ -44.560547, 82.732092 ], [ -44.560547, 81.670037 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.199320 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -46.197510, 82.732092 ], [ -44.560547, 82.732092 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.105086 ], [ -67.434082, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -67.500000, 80.048561 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.155261 ], [ -67.500000, 80.357916 ], [ -67.148438, 80.515792 ], [ -63.687744, 81.214014 ], [ -62.232056, 81.320764 ], [ -62.649536, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.135132, 82.199320 ], [ -53.041992, 81.888381 ], [ -50.388794, 82.438651 ], [ -48.004761, 82.064721 ], [ -46.598511, 81.985462 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ] ] ], [ [ [ -44.560547, 81.670037 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.199320 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -46.197510, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.670037 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ], [ -61.847534, 82.628514 ], [ -61.891479, 82.361644 ], [ -64.330444, 81.927816 ], [ -66.752930, 81.724769 ], [ -67.500000, 81.540120 ], [ -67.659302, 81.501241 ], [ -67.500000, 81.501241 ], [ -65.478516, 81.506110 ], [ -67.500000, 80.989712 ], [ -67.840576, 80.899800 ], [ -67.939453, 80.883278 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 83.025552 ], [ -44.560547, 82.620052 ], [ -46.763306, 82.620052 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -45.000000, 82.947749 ], [ -44.560547, 83.025552 ] ] ], [ [ [ -67.939453, 83.089955 ], [ -67.500000, 83.077387 ], [ -65.824585, 83.027553 ], [ -63.676758, 82.899703 ], [ -62.166138, 82.676285 ], [ -61.847534, 82.628514 ], [ -61.853027, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.089955 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 83.025552 ], [ -44.560547, 82.620052 ], [ -46.763306, 82.620052 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -45.000000, 82.947749 ], [ -44.560547, 83.025552 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 83.089955 ], [ -67.500000, 83.077387 ], [ -65.824585, 83.027553 ], [ -63.676758, 82.899703 ], [ -62.166138, 82.676285 ], [ -61.847534, 82.628514 ], [ -61.853027, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.089955 ] ] ] } } ] } ] } , @@ -1043,13 +1133,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -34.194946, 66.687784 ], [ -34.200439, 66.681261 ], [ -34.722290, 66.513260 ], [ -36.353760, 65.977798 ], [ -37.040405, 65.937514 ], [ -38.375244, 65.692215 ], [ -39.808960, 65.458261 ], [ -40.665894, 64.839597 ], [ -40.682373, 64.139369 ], [ -41.187744, 63.482410 ], [ -42.819214, 62.681707 ], [ -42.412720, 61.900165 ], [ -43.379517, 60.097718 ], [ -44.785767, 60.037417 ], [ -45.000000, 60.155176 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.194946, 66.687784 ] ] ], [ [ [ -22.060547, 64.275608 ], [ -22.060547, 63.881808 ], [ -22.763672, 63.959085 ], [ -22.500000, 64.079404 ], [ -22.060547, 64.275608 ] ] ], [ [ [ -22.131958, 66.410154 ], [ -22.060547, 66.377158 ], [ -22.060547, 64.465691 ], [ -22.500000, 64.564960 ], [ -23.955688, 64.890928 ], [ -22.500000, 65.051285 ], [ -22.181396, 65.083704 ], [ -22.225342, 65.378282 ], [ -22.500000, 65.408017 ], [ -24.323730, 65.610684 ], [ -23.648071, 66.262434 ], [ -22.500000, 66.374956 ], [ -22.131958, 66.410154 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.194946, 66.687784 ], [ -34.200439, 66.681261 ], [ -34.722290, 66.513260 ], [ -36.353760, 65.977798 ], [ -37.040405, 65.937514 ], [ -38.375244, 65.692215 ], [ -39.808960, 65.458261 ], [ -40.665894, 64.839597 ], [ -40.682373, 64.139369 ], [ -41.187744, 63.482410 ], [ -42.819214, 62.681707 ], [ -42.412720, 61.900165 ], [ -43.379517, 60.097718 ], [ -44.785767, 60.037417 ], [ -45.000000, 60.155176 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.194946, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, 64.275608 ], [ -22.060547, 63.881808 ], [ -22.763672, 63.959085 ], [ -22.500000, 64.079404 ], [ -22.060547, 64.275608 ] ] ], [ [ [ -22.060547, 64.465691 ], [ -22.500000, 64.564960 ], [ -23.955688, 64.890928 ], [ -22.500000, 65.051285 ], [ -22.181396, 65.083704 ], [ -22.225342, 65.378282 ], [ -22.500000, 65.408017 ], [ -24.323730, 65.610684 ], [ -23.648071, 66.262434 ], [ -22.500000, 66.374956 ], [ -22.131958, 66.410154 ], [ -22.060547, 66.377158 ], [ -22.060547, 64.465691 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, 74.140084 ], [ -22.060547, 73.321553 ], [ -22.170410, 73.308936 ], [ -22.500000, 73.308936 ], [ -23.565674, 73.305780 ], [ -22.500000, 72.731482 ], [ -22.313232, 72.628454 ], [ -22.296753, 72.183484 ], [ -22.500000, 72.227132 ], [ -24.274292, 72.597266 ], [ -24.790649, 72.329130 ], [ -23.439331, 72.078983 ], [ -22.500000, 71.642914 ], [ -22.131958, 71.469124 ], [ -22.060547, 71.320155 ], [ -22.060547, 70.630841 ], [ -22.500000, 70.583418 ], [ -23.532715, 70.469881 ], [ -24.307251, 70.855485 ], [ -25.543213, 71.430678 ], [ -25.202637, 70.752534 ], [ -26.361694, 70.226028 ], [ -23.724976, 70.183241 ], [ -22.500000, 70.134765 ], [ -22.346191, 70.129165 ], [ -22.500000, 70.080562 ], [ -25.026855, 69.258095 ], [ -27.745972, 68.469848 ], [ -30.673828, 68.124529 ], [ -31.777954, 68.120435 ], [ -32.810669, 67.734435 ], [ -34.200439, 66.679087 ], [ -34.722290, 66.513260 ], [ -35.260620, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ] ] ], [ [ [ -22.131958, 66.410154 ], [ -22.060547, 66.377158 ], [ -22.060547, 66.337505 ], [ -22.879028, 66.337505 ], [ -22.131958, 66.410154 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 74.140084 ], [ -22.060547, 73.321553 ], [ -22.170410, 73.308936 ], [ -22.500000, 73.308936 ], [ -23.565674, 73.305780 ], [ -22.500000, 72.731482 ], [ -22.313232, 72.628454 ], [ -22.296753, 72.183484 ], [ -22.500000, 72.227132 ], [ -24.274292, 72.597266 ], [ -24.790649, 72.329130 ], [ -23.439331, 72.078983 ], [ -22.500000, 71.642914 ], [ -22.131958, 71.469124 ], [ -22.060547, 71.320155 ], [ -22.060547, 70.630841 ], [ -22.500000, 70.583418 ], [ -23.532715, 70.469881 ], [ -24.307251, 70.855485 ], [ -25.543213, 71.430678 ], [ -25.202637, 70.752534 ], [ -26.361694, 70.226028 ], [ -23.724976, 70.183241 ], [ -22.500000, 70.134765 ], [ -22.346191, 70.129165 ], [ -22.500000, 70.080562 ], [ -25.026855, 69.258095 ], [ -27.745972, 68.469848 ], [ -30.673828, 68.124529 ], [ -31.777954, 68.120435 ], [ -32.810669, 67.734435 ], [ -34.200439, 66.679087 ], [ -34.722290, 66.513260 ], [ -35.260620, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.131958, 66.410154 ], [ -22.060547, 66.377158 ], [ -22.060547, 66.337505 ], [ -22.879028, 66.337505 ], [ -22.131958, 66.410154 ] ] ] } } ] } ] } , @@ -1097,17 +1191,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.163330, 22.350076 ], [ -6.113892, 21.943046 ], [ -5.487671, 16.325411 ], [ -5.311890, 16.198850 ], [ -5.537109, 15.501326 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.651245, 15.130462 ], [ -11.348877, 15.411319 ], [ -11.661987, 15.384839 ], [ -11.832275, 14.796128 ], [ -12.167358, 14.615478 ], [ -12.826538, 15.300081 ], [ -13.436279, 16.040534 ], [ -14.095459, 16.304323 ], [ -14.573364, 16.599346 ], [ -15.133667, 16.583552 ], [ -15.622559, 16.367580 ], [ -16.116943, 16.451891 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.144409, 18.109308 ], [ -16.254272, 19.093267 ], [ -16.375122, 19.590844 ], [ -16.276245, 20.092047 ], [ -16.534424, 20.565939 ], [ -17.061768, 20.997343 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.468506, 22.350076 ], [ -6.163330, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.062744, 22.350076 ], [ -13.007812, 21.943046 ], [ -12.925415, 21.325198 ], [ -16.842041, 21.330315 ], [ -17.061768, 20.997343 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.468506, 22.350076 ], [ -13.062744, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.573364, 16.599346 ], [ -14.095459, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.826538, 15.300081 ], [ -12.167358, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.138328 ], [ -11.464233, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.382928 ], [ -12.200317, 12.463396 ], [ -12.277222, 12.350734 ], [ -12.496948, 12.329269 ], [ -13.216553, 12.576010 ], [ -15.545654, 12.624258 ], [ -15.814819, 12.511665 ], [ -16.144409, 12.543840 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.266680 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.277373 ], [ -13.842773, 13.501814 ], [ -14.046021, 13.790071 ], [ -14.375610, 13.624633 ], [ -14.683228, 13.629972 ], [ -15.078735, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.710205, 13.592600 ], [ -17.122192, 14.370834 ], [ -17.622070, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.617747 ], [ -16.463013, 16.135539 ], [ -16.116943, 16.451891 ], [ -15.622559, 16.367580 ], [ -15.133667, 16.583552 ], [ -14.573364, 16.599346 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.163330, 22.350076 ], [ -6.113892, 21.943046 ], [ -5.487671, 16.325411 ], [ -5.311890, 16.198850 ], [ -5.537109, 15.501326 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.651245, 15.130462 ], [ -11.348877, 15.411319 ], [ -11.661987, 15.384839 ], [ -11.832275, 14.796128 ], [ -12.167358, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.138328 ], [ -11.464233, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.382928 ], [ -12.200317, 12.463396 ], [ -12.277222, 12.350734 ], [ -12.496948, 12.329269 ], [ -13.216553, 12.576010 ], [ -13.699951, 12.586732 ], [ -13.716431, 12.243392 ], [ -13.826294, 12.141376 ], [ -13.743896, 11.808211 ], [ -13.897705, 11.679135 ], [ -14.117432, 11.673755 ], [ -14.381104, 11.506940 ], [ -14.683228, 11.528470 ], [ -15.128174, 11.038255 ], [ -15.661011, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.802834 ], [ -16.309204, 11.958723 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.266680 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.277373 ], [ -13.842773, 13.501814 ], [ -14.046021, 13.790071 ], [ -14.375610, 13.624633 ], [ -14.683228, 13.629972 ], [ -15.078735, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.710205, 13.592600 ], [ -17.122192, 14.370834 ], [ -17.622070, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.617747 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.144409, 18.109308 ], [ -16.254272, 19.093267 ], [ -16.375122, 19.590844 ], [ -16.276245, 20.092047 ], [ -16.534424, 20.565939 ], [ -17.061768, 20.997343 ], [ -16.842041, 21.330315 ], [ -12.925415, 21.325198 ], [ -13.007812, 21.943046 ], [ -13.062744, 22.350076 ], [ -6.163330, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -15.545654, 12.624258 ], [ -13.699951, 12.586732 ], [ -13.716431, 12.243392 ], [ -13.826294, 12.141376 ], [ -13.743896, 11.808211 ], [ -13.897705, 11.679135 ], [ -14.117432, 11.673755 ], [ -14.381104, 11.506940 ], [ -14.683228, 11.528470 ], [ -15.128174, 11.038255 ], [ -15.661011, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.802834 ], [ -16.309204, 11.958723 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.144409, 12.543840 ], [ -15.814819, 12.511665 ], [ -15.545654, 12.624258 ] ] ], [ [ [ -15.078735, 13.875413 ], [ -14.683228, 13.629972 ], [ -14.375610, 13.624633 ], [ -14.046021, 13.790071 ], [ -13.842773, 13.501814 ], [ -14.276733, 13.277373 ], [ -14.710693, 13.298757 ], [ -15.139160, 13.507155 ], [ -15.512695, 13.277373 ], [ -15.688477, 13.266680 ], [ -15.930176, 13.127629 ], [ -16.842041, 13.149027 ], [ -16.710205, 13.592600 ], [ -15.622559, 13.624633 ], [ -15.397339, 13.859414 ], [ -15.078735, 13.875413 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.496948, 12.329269 ], [ -12.277222, 12.350734 ], [ -12.200317, 12.463396 ], [ -11.656494, 12.382928 ], [ -11.513672, 12.441941 ], [ -11.453247, 12.076924 ], [ -11.293945, 12.076924 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.590820, 11.921103 ], [ -10.162354, 11.840471 ], [ -9.887695, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ], [ -9.124146, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.783569, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.618774, 10.811724 ], [ -8.404541, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.333130, 10.493213 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.125709 ], [ -8.305664, 9.790264 ], [ -8.080444, 9.373193 ], [ -7.833252, 8.575590 ], [ -8.201294, 8.456072 ], [ -8.300171, 8.314777 ], [ -8.217773, 8.124491 ], [ -8.278198, 7.683773 ], [ -8.437500, 7.683773 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.206543, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.537565 ], [ -10.014038, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.347388 ], [ -10.491943, 8.716789 ], [ -10.651245, 8.977323 ], [ -10.618286, 9.264779 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.914673, 10.044585 ], [ -12.150879, 9.855216 ], [ -12.425537, 9.833567 ], [ -12.595825, 9.616998 ], [ -12.711182, 9.340672 ], [ -13.244019, 8.901353 ], [ -13.683472, 9.492408 ], [ -14.073486, 9.882275 ], [ -14.326172, 10.012130 ], [ -14.578857, 10.212219 ], [ -14.694214, 10.655210 ], [ -14.837036, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.683228, 11.528470 ], [ -14.381104, 11.506940 ], [ -14.117432, 11.673755 ], [ -13.897705, 11.679135 ], [ -13.743896, 11.808211 ], [ -13.826294, 12.141376 ], [ -13.716431, 12.243392 ], [ -13.699951, 12.586732 ] ] ], [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.923554 ], [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.439453, 13.982046 ], [ 0.439453, 11.011297 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.758057, 10.935798 ], [ -1.203003, 11.005904 ], [ -2.938843, 10.962764 ], [ -2.960815, 10.395975 ], [ -2.823486, 9.638661 ], [ -3.510132, 9.898510 ], [ -3.977051, 9.860628 ], [ -4.328613, 9.611582 ], [ -4.779053, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.368958 ], [ -5.471191, 10.951978 ], [ -5.196533, 11.372339 ], [ -5.218506, 11.711410 ], [ -4.427490, 12.543840 ], [ -4.279175, 13.229251 ], [ -4.004517, 13.469764 ], [ -3.521118, 13.336175 ], [ -3.103638, 13.539201 ], [ -2.966309, 13.795406 ], [ -2.191772, 14.243087 ], [ -1.999512, 14.557001 ], [ -1.065674, 14.971320 ], [ -0.516357, 15.114553 ] ] ], [ [ [ -15.078735, 13.875413 ], [ -14.683228, 13.629972 ], [ -14.375610, 13.624633 ], [ -14.046021, 13.790071 ], [ -13.842773, 13.501814 ], [ -14.276733, 13.277373 ], [ -14.710693, 13.298757 ], [ -15.139160, 13.507155 ], [ -15.512695, 13.277373 ], [ -15.688477, 13.266680 ], [ -15.930176, 13.127629 ], [ -16.842041, 13.149027 ], [ -16.710205, 13.592600 ], [ -15.622559, 13.624633 ], [ -15.397339, 13.859414 ], [ -15.078735, 13.875413 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.496948, 12.329269 ], [ -12.277222, 12.350734 ], [ -12.200317, 12.463396 ], [ -11.656494, 12.382928 ], [ -11.513672, 12.441941 ], [ -11.453247, 12.076924 ], [ -11.293945, 12.076924 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.590820, 11.921103 ], [ -10.162354, 11.840471 ], [ -9.887695, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ], [ -9.124146, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.783569, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.618774, 10.811724 ], [ -8.404541, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.333130, 10.493213 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.125709 ], [ -8.305664, 9.790264 ], [ -8.080444, 9.373193 ], [ -7.833252, 8.575590 ], [ -8.201294, 8.456072 ], [ -8.300171, 8.314777 ], [ -8.217773, 8.124491 ], [ -8.278198, 7.683773 ], [ -8.437500, 7.683773 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.206543, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.537565 ], [ -10.014038, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.347388 ], [ -10.491943, 8.716789 ], [ -10.651245, 8.977323 ], [ -10.618286, 9.264779 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.914673, 10.044585 ], [ -12.150879, 9.855216 ], [ -12.425537, 9.833567 ], [ -12.595825, 9.616998 ], [ -12.711182, 9.340672 ], [ -13.244019, 8.901353 ], [ -13.683472, 9.492408 ], [ -14.073486, 9.882275 ], [ -14.326172, 10.012130 ], [ -14.578857, 10.212219 ], [ -14.694214, 10.655210 ], [ -14.837036, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.683228, 11.528470 ], [ -14.381104, 11.506940 ], [ -14.117432, 11.673755 ], [ -13.897705, 11.679135 ], [ -13.743896, 11.808211 ], [ -13.826294, 12.141376 ], [ -13.716431, 12.243392 ], [ -13.699951, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.856934, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.439453, 21.509296 ], [ 0.439453, 14.934170 ], [ 0.000000, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.971320 ], [ -1.999512, 14.557001 ], [ -2.191772, 14.243087 ], [ -2.966309, 13.795406 ], [ -3.103638, 13.539201 ], [ -3.521118, 13.336175 ], [ -4.004517, 13.469764 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.711410 ], [ -5.196533, 11.372339 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.817261, 10.223031 ], [ -6.047974, 10.093262 ], [ -6.201782, 10.520219 ], [ -6.492920, 10.412183 ], [ -6.663208, 10.428391 ], [ -6.849976, 10.136524 ], [ -7.619019, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.333130, 10.493213 ], [ -8.283691, 10.790141 ], [ -8.404541, 10.908830 ], [ -8.618774, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.377075, 11.393879 ], [ -8.783569, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.124146, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.887695, 12.060809 ], [ -10.162354, 11.840471 ], [ -10.590820, 11.921103 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.293945, 12.076924 ], [ -11.453247, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.464233, 12.752874 ], [ -11.552124, 13.138328 ], [ -11.925659, 13.421681 ], [ -12.123413, 13.992706 ], [ -12.167358, 14.615478 ], [ -11.832275, 14.796128 ], [ -11.661987, 15.384839 ], [ -11.348877, 15.411319 ], [ -10.651245, 15.130462 ], [ -10.085449, 15.326572 ], [ -9.700928, 15.262989 ], [ -9.547119, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.311890, 16.198850 ], [ -5.487671, 16.325411 ], [ -6.113892, 21.943046 ], [ -6.163330, 22.350076 ], [ -0.856934, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.856934, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.439453, 21.509296 ], [ 0.439453, 14.934170 ], [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.439453, 13.982046 ], [ 0.439453, 11.011297 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.758057, 10.935798 ], [ -1.203003, 11.005904 ], [ -2.938843, 10.962764 ], [ -2.960815, 10.395975 ], [ -2.823486, 9.638661 ], [ -3.510132, 9.898510 ], [ -3.977051, 9.860628 ], [ -4.328613, 9.611582 ], [ -4.779053, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.368958 ], [ -5.817261, 10.223031 ], [ -6.047974, 10.093262 ], [ -6.201782, 10.520219 ], [ -6.492920, 10.412183 ], [ -6.663208, 10.428391 ], [ -6.849976, 10.136524 ], [ -7.619019, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.333130, 10.493213 ], [ -8.283691, 10.790141 ], [ -8.404541, 10.908830 ], [ -8.618774, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.377075, 11.393879 ], [ -8.783569, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.124146, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.887695, 12.060809 ], [ -10.162354, 11.840471 ], [ -10.590820, 11.921103 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.293945, 12.076924 ], [ -11.453247, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.464233, 12.752874 ], [ -11.552124, 13.138328 ], [ -11.925659, 13.421681 ], [ -12.123413, 13.992706 ], [ -12.167358, 14.615478 ], [ -11.832275, 14.796128 ], [ -11.661987, 15.384839 ], [ -11.348877, 15.411319 ], [ -10.651245, 15.130462 ], [ -10.085449, 15.326572 ], [ -9.700928, 15.262989 ], [ -9.547119, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.311890, 16.198850 ], [ -5.487671, 16.325411 ], [ -6.113892, 21.943046 ], [ -6.163330, 22.350076 ], [ -0.856934, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.537565 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.525873 ], [ -9.206543, 7.313433 ], [ -8.926392, 7.307985 ], [ -8.723145, 7.710992 ], [ -8.437500, 7.683773 ], [ -8.481445, 7.395153 ], [ -8.382568, 6.910067 ], [ -8.602295, 6.468151 ], [ -8.311157, 6.189707 ], [ -7.992554, 6.124170 ], [ -7.569580, 5.703448 ], [ -7.536621, 5.309766 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.362843 ], [ -7.970581, 4.351889 ], [ -9.003296, 4.833733 ], [ -9.909668, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.436768, 6.784626 ], [ -11.200562, 7.106344 ], [ -11.145630, 7.395153 ], [ -10.695190, 7.939556 ], [ -10.228271, 8.407168 ], [ -10.014038, 8.428904 ], [ -9.755859, 8.537565 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.618286, 9.264779 ], [ -10.651245, 8.977323 ], [ -10.491943, 8.716789 ], [ -10.502930, 8.347388 ], [ -10.228271, 8.407168 ], [ -10.014038, 8.428904 ], [ -9.755859, 8.537565 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.525873 ], [ -9.206543, 7.313433 ], [ -8.926392, 7.307985 ], [ -8.723145, 7.710992 ], [ -8.437500, 7.683773 ], [ -8.481445, 7.395153 ], [ -8.382568, 6.910067 ], [ -8.602295, 6.468151 ], [ -8.311157, 6.189707 ], [ -7.992554, 6.124170 ], [ -7.569580, 5.703448 ], [ -7.536621, 5.309766 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.362843 ], [ -7.970581, 4.351889 ], [ -9.003296, 4.833733 ], [ -9.909668, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.436768, 6.784626 ], [ -11.705933, 6.860985 ], [ -12.425537, 7.258945 ], [ -12.947388, 7.798079 ], [ -13.123169, 8.162556 ], [ -13.244019, 8.901353 ], [ -12.711182, 9.340672 ], [ -12.595825, 9.616998 ], [ -12.425537, 9.833567 ], [ -12.150879, 9.855216 ], [ -11.914673, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.618286, 9.264779 ], [ -10.651245, 8.977323 ], [ -10.491943, 8.716789 ], [ -10.502930, 8.347388 ], [ -10.228271, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.395153 ], [ -11.200562, 7.106344 ], [ -11.436768, 6.784626 ], [ -11.705933, 6.860985 ], [ -12.425537, 7.258945 ], [ -12.947388, 7.798079 ], [ -13.123169, 8.162556 ], [ -13.244019, 8.901353 ], [ -12.711182, 9.340672 ], [ -12.595825, 9.616998 ], [ -12.425537, 9.833567 ], [ -12.150879, 9.855216 ], [ -11.914673, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.201782, 10.520219 ], [ -6.047974, 10.093262 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.368958 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.822742 ], [ -4.328613, 9.611582 ], [ -3.977051, 9.860628 ], [ -3.510132, 9.898510 ], [ -2.823486, 9.638661 ], [ -2.559814, 8.216927 ], [ -2.982788, 7.378810 ], [ -3.240967, 6.249776 ], [ -2.807007, 5.386336 ], [ -2.856445, 4.992450 ], [ -3.312378, 4.981505 ], [ -4.010010, 5.178482 ], [ -4.647217, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.525879, 4.702354 ], [ -7.520142, 4.335456 ], [ -7.712402, 4.362843 ], [ -7.635498, 5.189423 ], [ -7.536621, 5.309766 ], [ -7.569580, 5.703448 ], [ -7.992554, 6.124170 ], [ -8.311157, 6.189707 ], [ -8.602295, 6.468151 ], [ -8.382568, 6.910067 ], [ -8.481445, 7.395153 ], [ -8.437500, 7.683773 ], [ -8.278198, 7.683773 ], [ -8.217773, 8.124491 ], [ -8.300171, 8.314777 ], [ -8.201294, 8.456072 ], [ -7.833252, 8.575590 ], [ -8.080444, 9.373193 ], [ -8.305664, 9.790264 ], [ -8.228760, 10.125709 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.298706 ], [ -7.619019, 10.147339 ], [ -6.849976, 10.136524 ], [ -6.663208, 10.428391 ], [ -6.492920, 10.412183 ], [ -6.201782, 10.520219 ] ] ] } } , @@ -1125,17 +1219,17 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.921875, 24.971120 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.069946, 21.534847 ], [ -12.952881, 21.534847 ], [ -13.007812, 21.943046 ], [ -13.117676, 22.771117 ], [ -12.870483, 23.281719 ], [ -11.936646, 23.372514 ], [ -11.969604, 25.933347 ], [ -8.684692, 25.878994 ], [ -8.684692, 27.396155 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.921875, 24.971120 ], [ -1.549072, 22.791375 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.069946, 21.534847 ], [ -6.113892, 21.943046 ], [ -6.454468, 24.956180 ], [ -4.921875, 24.971120 ] ] ], [ [ [ 0.439453, 41.310824 ], [ 0.439453, 40.426042 ], [ 0.109863, 40.124291 ], [ 0.000000, 39.897094 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.903858 ], [ 0.115356, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.466919, 38.289937 ], [ -0.681152, 37.640335 ], [ -1.439209, 37.439974 ], [ -2.142334, 36.672825 ], [ -3.416748, 36.659606 ], [ -4.367065, 36.677231 ], [ -4.993286, 36.323977 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.026889 ], [ -6.234741, 36.368222 ], [ -6.520386, 36.941111 ], [ -7.454224, 37.094622 ], [ -7.536621, 37.426888 ], [ -7.163086, 37.801104 ], [ -7.025757, 38.074041 ], [ -7.371826, 38.371809 ], [ -7.097168, 39.027719 ], [ -7.498169, 39.626846 ], [ -7.064209, 39.711413 ], [ -7.025757, 40.183070 ], [ -6.860962, 40.329796 ], [ -6.849976, 40.979898 ], [ -6.849976, 41.112469 ], [ -6.509399, 41.310824 ], [ 0.439453, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.971120 ], [ -1.549072, 22.791375 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.069946, 21.534847 ], [ -6.113892, 21.943046 ], [ -6.454468, 24.956180 ], [ -4.921875, 24.971120 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 36.261992 ], [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.549072, 22.791375 ], [ -4.921875, 24.971120 ], [ -8.684692, 27.396155 ], [ -8.662720, 27.586198 ], [ -8.673706, 28.839862 ], [ -7.058716, 29.578234 ], [ -6.058960, 29.730992 ], [ -5.240479, 29.997760 ], [ -4.855957, 30.500751 ], [ -3.691406, 30.897511 ], [ -3.647461, 31.634676 ], [ -3.065186, 31.723495 ], [ -2.614746, 32.091883 ], [ -1.307373, 32.263911 ], [ -1.120605, 32.648626 ], [ -1.384277, 32.861132 ], [ -1.730347, 33.920572 ], [ -1.790771, 34.524661 ], [ -2.169800, 35.169318 ], [ -1.208496, 35.715298 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.439453, 36.261992 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.439453, 36.261992 ], [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.549072, 22.791375 ], [ -4.921875, 24.971120 ], [ -8.684692, 27.396155 ], [ -8.662720, 27.586198 ], [ -8.673706, 28.839862 ], [ -7.058716, 29.578234 ], [ -6.058960, 29.730992 ], [ -5.240479, 29.997760 ], [ -4.855957, 30.500751 ], [ -3.691406, 30.897511 ], [ -3.647461, 31.634676 ], [ -3.065186, 31.723495 ], [ -2.614746, 32.091883 ], [ -1.307373, 32.263911 ], [ -1.120605, 32.648626 ], [ -1.384277, 32.861132 ], [ -1.730347, 33.920572 ], [ -1.790771, 34.524661 ], [ -2.169800, 35.169318 ], [ -1.208496, 35.715298 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.439453, 36.261992 ] ] ], [ [ [ 0.439453, 41.310824 ], [ 0.439453, 40.426042 ], [ 0.109863, 40.124291 ], [ 0.000000, 39.897094 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.903858 ], [ 0.115356, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.466919, 38.289937 ], [ -0.681152, 37.640335 ], [ -1.439209, 37.439974 ], [ -2.142334, 36.672825 ], [ -3.416748, 36.659606 ], [ -4.367065, 36.677231 ], [ -4.993286, 36.323977 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.026889 ], [ -6.234741, 36.368222 ], [ -6.520386, 36.941111 ], [ -7.454224, 37.094622 ], [ -7.536621, 37.426888 ], [ -7.163086, 37.801104 ], [ -7.025757, 38.074041 ], [ -7.371826, 38.371809 ], [ -7.097168, 39.027719 ], [ -7.498169, 39.626846 ], [ -7.064209, 39.711413 ], [ -7.025757, 40.183070 ], [ -6.860962, 40.329796 ], [ -6.849976, 40.979898 ], [ -6.849976, 41.112469 ], [ -6.509399, 41.310824 ], [ 0.439453, 41.310824 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -8.261719, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.421265, 41.791793 ], [ -7.250977, 41.918629 ], [ -6.668701, 41.881831 ], [ -6.388550, 41.380930 ], [ -6.849976, 41.108330 ], [ -6.849976, 40.979898 ], [ -6.855469, 40.647304 ], [ -8.811035, 40.647304 ], [ -8.767090, 40.759741 ], [ -8.783569, 40.979898 ], [ -8.789062, 41.182788 ], [ -8.986816, 41.541478 ], [ -9.030762, 41.877741 ], [ -8.668213, 42.134895 ], [ -8.261719, 42.281373 ] ] ], [ [ [ -3.070679, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.081909, 55.912273 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.622978 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.667426 ], [ 0.186768, 53.324312 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.785522, 50.774682 ], [ -2.488403, 50.499452 ], [ -2.955322, 50.694718 ], [ -3.614502, 50.226124 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.958288 ], [ -5.773315, 50.159305 ], [ -4.306641, 51.210325 ], [ -3.411255, 51.426614 ], [ -4.982300, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.218750, 52.301761 ], [ -4.768066, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.402982 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.613436 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.059495 ], [ -4.718628, 55.506861 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.630493, 56.022948 ], [ -3.070679, 56.022948 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.657959, 54.552952 ], [ -6.196289, 53.865486 ], [ -6.031494, 53.153359 ], [ -6.789551, 52.258071 ], [ -8.558350, 51.669148 ], [ -9.975586, 51.818803 ], [ -9.162598, 52.862497 ], [ -9.684448, 53.881679 ], [ -8.327637, 54.664301 ], [ -7.569580, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.070679, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.081909, 55.912273 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.622978 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.667426 ], [ 0.186768, 53.324312 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.785522, 50.774682 ], [ -2.488403, 50.499452 ], [ -2.955322, 50.694718 ], [ -3.614502, 50.226124 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.958288 ], [ -5.773315, 50.159305 ], [ -4.306641, 51.210325 ], [ -3.411255, 51.426614 ], [ -4.982300, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.218750, 52.301761 ], [ -4.768066, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.402982 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.613436 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.059495 ], [ -4.718628, 55.506861 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.630493, 56.022948 ], [ -3.070679, 56.022948 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.657959, 54.552952 ], [ -6.196289, 53.865486 ], [ -6.954346, 54.072283 ], [ -7.569580, 54.059388 ], [ -7.366333, 54.594345 ], [ -7.569580, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 49.827353 ], [ 0.439453, 42.638000 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.662241 ], [ -1.499634, 43.032761 ], [ -1.900635, 43.421009 ], [ -1.384277, 44.020472 ], [ -1.192017, 46.012224 ], [ -2.224731, 47.062638 ], [ -2.960815, 47.569114 ], [ -4.487915, 47.953145 ], [ -4.592285, 48.683708 ], [ -3.295898, 48.900838 ], [ -1.614990, 48.643798 ], [ -1.933594, 49.774170 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.678293 ], [ 0.439453, 49.827353 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -8.261719, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.421265, 41.791793 ], [ -7.250977, 41.918629 ], [ -6.668701, 41.881831 ], [ -6.388550, 41.380930 ], [ -6.849976, 41.108330 ], [ -6.849976, 40.979898 ], [ -6.855469, 40.647304 ], [ -8.811035, 40.647304 ], [ -8.767090, 40.759741 ], [ -8.783569, 40.979898 ], [ -8.789062, 41.182788 ], [ -8.986816, 41.541478 ], [ -9.030762, 41.877741 ], [ -8.668213, 42.134895 ], [ -8.261719, 42.281373 ] ] ], [ [ [ 0.439453, 49.827353 ], [ 0.439453, 42.638000 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.662241 ], [ -1.499634, 43.032761 ], [ -1.900635, 43.421009 ], [ -1.384277, 44.020472 ], [ -1.192017, 46.012224 ], [ -2.224731, 47.062638 ], [ -2.960815, 47.569114 ], [ -4.487915, 47.953145 ], [ -4.592285, 48.683708 ], [ -3.295898, 48.900838 ], [ -1.614990, 48.643798 ], [ -1.933594, 49.774170 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.678293 ], [ 0.439453, 49.827353 ] ] ], [ [ [ -7.569580, 55.131790 ], [ -7.366333, 54.594345 ], [ -7.569580, 54.059388 ], [ -6.954346, 54.072283 ], [ -6.196289, 53.865486 ], [ -6.031494, 53.153359 ], [ -6.789551, 52.258071 ], [ -8.558350, 51.669148 ], [ -9.975586, 51.818803 ], [ -9.162598, 52.862497 ], [ -9.684448, 53.881679 ], [ -8.327637, 54.664301 ], [ -7.569580, 55.131790 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.747289 ], [ -6.751099, 43.568452 ], [ -5.410767, 43.572432 ], [ -4.345093, 43.401056 ], [ -3.515625, 43.452919 ], [ -1.900635, 43.421009 ], [ -1.499634, 43.032761 ], [ 0.000000, 42.662241 ], [ 0.340576, 42.577355 ], [ 0.439453, 42.638000 ], [ 0.439453, 40.647304 ], [ -6.855469, 40.647304 ], [ -6.849976, 40.979898 ], [ -6.849976, 41.108330 ], [ -6.388550, 41.380930 ], [ -6.668701, 41.881831 ], [ -7.250977, 41.918629 ], [ -7.421265, 41.791793 ], [ -8.014526, 41.791793 ], [ -8.261719, 42.281373 ], [ -8.668213, 42.134895 ], [ -9.030762, 41.877741 ], [ -8.981323, 42.593533 ], [ -9.393311, 43.024730 ], [ -7.976074, 43.747289 ] ] ] } } ] } @@ -1149,7 +1243,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.131958, 66.410154 ], [ -21.967163, 66.337505 ], [ -22.879028, 66.337505 ], [ -22.131958, 66.410154 ] ] ], [ [ [ -16.166382, 66.526392 ], [ -15.858765, 66.513260 ], [ -14.507446, 66.456275 ], [ -14.551392, 66.337505 ], [ -16.748657, 66.337505 ], [ -16.210327, 66.513260 ], [ -16.166382, 66.526392 ] ] ], [ [ [ -22.939453, 70.153423 ], [ -22.500000, 70.134765 ], [ -22.346191, 70.129165 ], [ -22.500000, 70.080562 ], [ -22.939453, 69.939723 ], [ -22.939453, 70.153423 ] ] ], [ [ [ -22.939453, 71.847674 ], [ -22.500000, 71.642914 ], [ -22.131958, 71.469124 ], [ -21.752930, 70.663607 ], [ -22.500000, 70.583418 ], [ -22.939453, 70.535883 ], [ -22.939453, 71.847674 ] ] ], [ [ [ -22.939453, 72.971189 ], [ -22.500000, 72.731482 ], [ -22.313232, 72.628454 ], [ -22.296753, 72.183484 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.319122 ], [ -22.939453, 72.971189 ] ] ], [ [ [ -21.351929, 74.140084 ], [ -21.005859, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.758667, 73.464420 ], [ -22.170410, 73.308936 ], [ -22.500000, 73.308936 ], [ -22.939453, 73.307358 ], [ -22.939453, 74.140084 ], [ -21.351929, 74.140084 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 73.307358 ], [ -22.939453, 74.140084 ], [ -21.351929, 74.140084 ], [ -21.005859, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.758667, 73.464420 ], [ -22.170410, 73.308936 ], [ -22.500000, 73.308936 ], [ -22.939453, 73.307358 ] ] ], [ [ [ -22.939453, 71.847674 ], [ -22.500000, 71.642914 ], [ -22.131958, 71.469124 ], [ -21.752930, 70.663607 ], [ -22.500000, 70.583418 ], [ -22.939453, 70.535883 ], [ -22.939453, 71.847674 ] ] ], [ [ [ -22.939453, 72.971189 ], [ -22.500000, 72.731482 ], [ -22.313232, 72.628454 ], [ -22.296753, 72.183484 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.319122 ], [ -22.939453, 72.971189 ] ] ], [ [ [ -22.939453, 70.153423 ], [ -22.500000, 70.134765 ], [ -22.346191, 70.129165 ], [ -22.500000, 70.080562 ], [ -22.939453, 69.939723 ], [ -22.939453, 70.153423 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.131958, 66.410154 ], [ -21.967163, 66.337505 ], [ -22.879028, 66.337505 ], [ -22.131958, 66.410154 ] ] ], [ [ [ -16.748657, 66.337505 ], [ -16.210327, 66.513260 ], [ -16.166382, 66.526392 ], [ -15.858765, 66.513260 ], [ -14.507446, 66.456275 ], [ -14.551392, 66.337505 ], [ -16.748657, 66.337505 ] ] ] ] } } ] } ] } , @@ -1197,17 +1293,25 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -21.534847 ], [ 22.939453, -33.911454 ], [ 22.576904, -33.865854 ], [ 22.500000, -33.893217 ], [ 21.544189, -34.261757 ], [ 20.692749, -34.420505 ], [ 20.072021, -34.795762 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.465806 ], [ 18.858032, -34.447689 ], [ 18.424072, -33.998027 ], [ 18.380127, -34.139088 ], [ 18.248291, -33.870416 ], [ 18.253784, -33.284620 ], [ 17.924194, -32.611616 ], [ 18.248291, -32.430977 ], [ 18.220825, -31.662733 ], [ 17.567139, -30.727671 ], [ 17.061768, -29.878755 ], [ 16.347656, -28.579698 ], [ 15.600586, -27.824503 ], [ 15.210571, -27.093364 ], [ 14.990845, -26.120918 ], [ 14.743652, -25.393661 ], [ 14.408569, -23.855698 ], [ 14.386597, -22.659641 ], [ 14.260254, -22.111088 ], [ 14.100952, -21.943046 ], [ 13.870239, -21.698265 ], [ 13.765869, -21.534847 ], [ 22.939453, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.885010, -21.534847 ], [ 20.885010, -21.810508 ], [ 19.896240, -21.846204 ], [ 19.896240, -28.463862 ], [ 19.000854, -28.974507 ], [ 18.468018, -29.046566 ], [ 17.836304, -28.859108 ], [ 17.391357, -28.786918 ], [ 17.221069, -28.357568 ], [ 16.825562, -28.081674 ], [ 16.347656, -28.579698 ], [ 15.600586, -27.824503 ], [ 15.210571, -27.093364 ], [ 14.990845, -26.120918 ], [ 14.743652, -25.393661 ], [ 14.408569, -23.855698 ], [ 14.386597, -22.659641 ], [ 14.260254, -22.111088 ], [ 14.100952, -21.943046 ], [ 13.870239, -21.698265 ], [ 13.765869, -21.534847 ], [ 20.885010, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -21.534847 ], [ 22.939453, -33.911454 ], [ 22.576904, -33.865854 ], [ 22.500000, -33.893217 ], [ 21.544189, -34.261757 ], [ 20.692749, -34.420505 ], [ 20.072021, -34.795762 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.465806 ], [ 18.858032, -34.447689 ], [ 18.424072, -33.998027 ], [ 18.380127, -34.139088 ], [ 18.248291, -33.870416 ], [ 18.253784, -33.284620 ], [ 17.924194, -32.611616 ], [ 18.248291, -32.430977 ], [ 18.220825, -31.662733 ], [ 17.567139, -30.727671 ], [ 17.061768, -29.878755 ], [ 16.347656, -28.579698 ], [ 16.825562, -28.081674 ], [ 17.221069, -28.357568 ], [ 17.391357, -28.786918 ], [ 17.836304, -28.859108 ], [ 18.468018, -29.046566 ], [ 19.000854, -28.974507 ], [ 19.896240, -28.463862 ], [ 19.896240, -21.846204 ], [ 20.885010, -21.810508 ], [ 20.885010, -21.534847 ], [ 22.939453, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ], [ 22.840576, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.406616, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.898510 ], [ 21.879272, -9.524914 ], [ 21.802368, -8.912207 ], [ 21.950684, -8.309341 ], [ 21.747437, -7.923234 ], [ 21.730957, -7.291639 ], [ 20.516968, -7.302536 ], [ 20.604858, -6.942786 ], [ 20.093994, -6.942786 ], [ 20.039062, -7.117245 ], [ 19.418335, -7.155400 ], [ 19.165649, -7.738208 ], [ 19.017334, -7.988518 ], [ 18.468018, -7.847057 ], [ 18.132935, -7.988518 ], [ 17.473755, -8.070107 ], [ 16.864014, -7.226249 ], [ 16.572876, -6.626414 ], [ 16.325684, -5.878332 ], [ 13.375854, -5.867403 ], [ 13.024292, -5.987607 ], [ 12.738647, -5.965754 ], [ 12.321167, -6.102322 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.687050 ], [ 12.469482, -5.249598 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.784469 ], [ 12.623291, -4.439521 ], [ 12.321167, -4.609278 ], [ 11.914673, -5.041699 ], [ 11.096191, -3.979341 ], [ 10.068970, -2.970470 ], [ 9.404297, -2.147324 ], [ 8.800049, -1.115042 ], [ 8.833008, -0.780005 ], [ 9.047241, -0.461421 ], [ 9.201050, 0.000000 ], [ 9.294434, 0.269164 ], [ 9.338379, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ], [ 22.840576, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.406616, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.898510 ], [ 21.879272, -9.524914 ], [ 21.802368, -8.912207 ], [ 21.950684, -8.309341 ], [ 21.747437, -7.923234 ], [ 21.730957, -7.291639 ], [ 20.516968, -7.302536 ], [ 20.604858, -6.942786 ], [ 20.093994, -6.942786 ], [ 20.039062, -7.117245 ], [ 19.418335, -7.155400 ], [ 19.165649, -7.738208 ], [ 19.017334, -7.988518 ], [ 18.468018, -7.847057 ], [ 18.132935, -7.988518 ], [ 17.473755, -8.070107 ], [ 16.864014, -7.226249 ], [ 16.572876, -6.626414 ], [ 16.325684, -5.878332 ], [ 13.375854, -5.867403 ], [ 13.024292, -5.987607 ], [ 12.738647, -5.965754 ], [ 12.321167, -6.102322 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.687050 ], [ 12.469482, -5.249598 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.784469 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.144897, -4.510714 ], [ 14.210815, -4.795417 ], [ 14.584351, -4.970560 ], [ 15.172119, -4.346411 ], [ 15.754395, -3.858774 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.408081, -1.741065 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.747049 ], [ 17.638550, -0.428463 ], [ 17.666016, -0.060425 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.991089, 0.439449 ], [ 13.842773, 0.038452 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.554801 ], [ 14.425049, -1.334718 ], [ 14.298706, -1.999106 ], [ 13.991089, -2.471157 ], [ 13.112183, -2.432740 ], [ 12.579346, -1.949697 ], [ 12.496948, -2.394322 ], [ 11.821289, -2.515061 ], [ 11.480713, -2.767478 ], [ 11.854248, -3.425692 ], [ 11.096191, -3.979341 ], [ 10.068970, -2.970470 ], [ 9.404297, -2.147324 ], [ 8.800049, -1.115042 ], [ 8.833008, -0.780005 ], [ 9.047241, -0.461421 ], [ 9.201050, 0.000000 ], [ 9.294434, 0.269164 ], [ 9.338379, 0.439449 ], [ 13.991089, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.060425 ], [ 17.638550, -0.428463 ], [ 17.523193, -0.747049 ], [ 16.864014, -1.224882 ], [ 16.408081, -1.741065 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.858774 ], [ 15.172119, -4.346411 ], [ 14.584351, -4.970560 ], [ 14.210815, -4.795417 ], [ 14.144897, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.260498, -4.882994 ], [ 12.996826, -4.784469 ], [ 12.623291, -4.439521 ], [ 12.321167, -4.609278 ], [ 11.914673, -5.041699 ], [ 11.096191, -3.979341 ], [ 11.854248, -3.425692 ], [ 11.480713, -2.767478 ], [ 11.821289, -2.515061 ], [ 12.496948, -2.394322 ], [ 12.579346, -1.949697 ], [ 13.112183, -2.432740 ], [ 13.991089, -2.471157 ], [ 14.298706, -1.999106 ], [ 14.425049, -1.334718 ], [ 14.315186, -0.554801 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.038452 ], [ 13.991089, 0.439449 ], [ 17.808838, 0.439449 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.375854, -5.867403 ], [ 16.325684, -5.878332 ], [ 16.572876, -6.626414 ], [ 16.864014, -7.226249 ], [ 17.473755, -8.070107 ], [ 18.132935, -7.988518 ], [ 18.468018, -7.847057 ], [ 19.017334, -7.988518 ], [ 19.165649, -7.738208 ], [ 19.418335, -7.155400 ], [ 20.039062, -7.117245 ], [ 20.093994, -6.942786 ], [ 20.604858, -6.942786 ], [ 20.516968, -7.302536 ], [ 21.730957, -7.291639 ], [ 21.747437, -7.923234 ], [ 21.950684, -8.309341 ], [ 21.802368, -8.912207 ], [ 21.879272, -9.524914 ], [ 22.208862, -9.898510 ], [ 22.153931, -11.086775 ], [ 22.406616, -10.995120 ], [ 22.500000, -10.995120 ], [ 22.840576, -11.016689 ], [ 22.939453, -10.989728 ], [ 22.939453, -12.902844 ], [ 22.500000, -12.902844 ], [ 21.934204, -12.897489 ], [ 21.890259, -16.082764 ], [ 22.500000, -16.820316 ], [ 22.565918, -16.899172 ], [ 22.939453, -17.261482 ], [ 22.939453, -17.586431 ], [ 22.500000, -17.680662 ], [ 21.379395, -17.931702 ], [ 18.956909, -17.790535 ], [ 18.264771, -17.308688 ], [ 14.210815, -17.355882 ], [ 14.062500, -17.424029 ], [ 13.463745, -16.972741 ], [ 12.815552, -16.941215 ], [ 12.216797, -17.114543 ], [ 11.733398, -17.303443 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.797539 ], [ 12.123413, -14.881087 ], [ 12.178345, -14.450639 ], [ 12.502441, -13.549881 ], [ 12.738647, -13.138328 ], [ 13.315430, -12.484850 ], [ 13.634033, -12.039321 ], [ 13.738403, -11.296934 ], [ 13.688965, -10.730778 ], [ 13.386841, -10.374362 ], [ 13.123169, -9.768611 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.564726 ], [ 12.727661, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.321167, -6.102322 ], [ 12.738647, -5.965754 ], [ 13.024292, -5.987607 ], [ 13.375854, -5.867403 ] ] ], [ [ [ 12.623291, -4.439521 ], [ 12.996826, -4.784469 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.249598 ], [ 12.436523, -5.687050 ], [ 12.183838, -5.790897 ], [ 11.914673, -5.041699 ], [ 12.321167, -4.609278 ], [ 12.623291, -4.439521 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.815552, -16.941215 ], [ 13.463745, -16.972741 ], [ 14.062500, -17.424029 ], [ 14.210815, -17.355882 ], [ 18.264771, -17.308688 ], [ 18.956909, -17.790535 ], [ 21.379395, -17.931702 ], [ 22.500000, -17.680662 ], [ 22.939453, -17.586431 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.912476, -18.255437 ], [ 20.885010, -21.815608 ], [ 19.896240, -21.851302 ], [ 19.896240, -22.350076 ], [ 14.315186, -22.350076 ], [ 14.260254, -22.111088 ], [ 14.100952, -21.943046 ], [ 13.870239, -21.698265 ], [ 13.353882, -20.874210 ], [ 12.826538, -19.673626 ], [ 12.612305, -19.046541 ], [ 11.793823, -18.072757 ], [ 11.733398, -17.303443 ], [ 12.216797, -17.114543 ], [ 12.815552, -16.941215 ] ] ], [ [ [ 21.934204, -12.897489 ], [ 22.500000, -12.902844 ], [ 22.939453, -12.902844 ], [ 22.939453, -17.261482 ], [ 22.565918, -16.899172 ], [ 22.500000, -16.820316 ], [ 21.890259, -16.082764 ], [ 21.934204, -12.897489 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.815552, -16.941215 ], [ 13.463745, -16.972741 ], [ 14.062500, -17.424029 ], [ 14.210815, -17.355882 ], [ 18.264771, -17.308688 ], [ 18.956909, -17.790535 ], [ 21.379395, -17.931702 ], [ 22.500000, -17.680662 ], [ 22.939453, -17.586431 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.912476, -18.255437 ], [ 20.885010, -21.815608 ], [ 19.896240, -21.851302 ], [ 19.896240, -22.350076 ], [ 14.315186, -22.350076 ], [ 14.260254, -22.111088 ], [ 14.100952, -21.943046 ], [ 13.870239, -21.698265 ], [ 13.353882, -20.874210 ], [ 12.826538, -19.673626 ], [ 12.612305, -19.046541 ], [ 11.793823, -18.072757 ], [ 11.733398, -17.303443 ], [ 12.216797, -17.114543 ], [ 12.815552, -16.941215 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.934204, -12.897489 ], [ 22.500000, -12.902844 ], [ 22.939453, -12.902844 ], [ 22.939453, -17.261482 ], [ 22.565918, -16.899172 ], [ 22.500000, -16.820316 ], [ 21.890259, -16.082764 ], [ 21.934204, -12.897489 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ], [ 19.896240, -22.350076 ], [ 19.896240, -21.851302 ], [ 20.885010, -21.815608 ], [ 20.912476, -18.255437 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ] ] ] } } ] } @@ -1215,25 +1319,29 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.080550 ], [ 0.000000, 21.795208 ], [ 1.823730, 20.607078 ], [ 2.059937, 20.138470 ], [ 2.686157, 19.854561 ], [ 3.147583, 19.694314 ], [ 3.158569, 19.056926 ], [ 4.268188, 19.155547 ], [ 4.273682, 16.851862 ], [ 3.724365, 16.183024 ], [ 3.641968, 15.564836 ], [ 2.752075, 15.406024 ], [ 1.384277, 15.321274 ], [ 1.016235, 14.966013 ], [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.433960, 13.987376 ], [ 0.994263, 13.336175 ], [ 1.027222, 12.849293 ], [ 2.180786, 12.624258 ], [ 2.153320, 11.937227 ], [ 1.939087, 11.641476 ], [ 1.450195, 11.544616 ], [ 1.246948, 11.108337 ], [ 0.900879, 10.995120 ], [ 0.027466, 11.016689 ], [ 0.000000, 10.914224 ], [ -0.049438, 10.703792 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.461426, 8.673348 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.840454, 6.277078 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.439453, 5.369929 ], [ -0.439453, 22.080550 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 15.056210 ], [ -0.269165, 14.923554 ], [ 0.000000, 14.923554 ], [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.433960, 13.987376 ], [ 0.994263, 13.336175 ], [ 1.027222, 12.849293 ], [ 2.180786, 12.624258 ], [ 2.153320, 11.937227 ], [ 1.939087, 11.641476 ], [ 1.450195, 11.544616 ], [ 1.246948, 11.108337 ], [ 0.900879, 10.995120 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.439453, 15.056210 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.080550 ], [ 0.000000, 21.795208 ], [ 1.823730, 20.607078 ], [ 2.059937, 20.138470 ], [ 2.686157, 19.854561 ], [ 3.147583, 19.694314 ], [ 3.158569, 19.056926 ], [ 4.268188, 19.155547 ], [ 4.273682, 16.851862 ], [ 3.724365, 16.183024 ], [ 3.641968, 15.564836 ], [ 2.752075, 15.406024 ], [ 1.384277, 15.321274 ], [ 1.016235, 14.966013 ], [ 0.373535, 14.928862 ], [ 0.000000, 14.923554 ], [ -0.269165, 14.923554 ], [ -0.439453, 15.056210 ], [ -0.439453, 22.080550 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.975586, 22.350076 ], [ 9.244995, 21.943046 ], [ 8.574829, 21.565502 ], [ 5.679932, 19.601194 ], [ 4.268188, 19.155547 ], [ 3.158569, 19.056926 ], [ 3.147583, 19.694314 ], [ 2.686157, 19.854561 ], [ 2.059937, 20.138470 ], [ 1.823730, 20.607078 ], [ 0.000000, 21.795208 ], [ -0.439453, 22.080550 ], [ -0.439453, 22.350076 ], [ 9.975586, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.027466, 11.016689 ], [ 0.000000, 10.914224 ], [ -0.049438, 10.703792 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.461426, 8.673348 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.840454, 6.277078 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.439453, 5.369929 ], [ -0.439453, 11.097556 ] ] ], [ [ [ 9.975586, 22.350076 ], [ 9.244995, 21.943046 ], [ 8.574829, 21.565502 ], [ 5.679932, 19.601194 ], [ 4.268188, 19.155547 ], [ 3.158569, 19.056926 ], [ 3.147583, 19.694314 ], [ 2.686157, 19.854561 ], [ 2.059937, 20.138470 ], [ 1.823730, 20.607078 ], [ 0.000000, 21.795208 ], [ -0.439453, 22.080550 ], [ -0.439453, 22.350076 ], [ 9.975586, 22.350076 ] ] ], [ [ [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.852295, 21.493964 ], [ 18.918457, 21.943046 ], [ 18.072510, 22.350076 ], [ 22.939453, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.930420, 22.350076 ], [ 14.996338, 21.943046 ], [ 15.100708, 21.304728 ], [ 15.474243, 21.048618 ], [ 15.490723, 20.730428 ], [ 15.902710, 20.385825 ], [ 15.688477, 19.957860 ], [ 15.303955, 17.926476 ], [ 15.249023, 16.625665 ], [ 13.974609, 15.681221 ], [ 13.540649, 14.365513 ], [ 13.958130, 13.992706 ], [ 13.958130, 13.352210 ], [ 14.595337, 13.330830 ], [ 14.496460, 12.860004 ], [ 14.216309, 12.801088 ], [ 14.183350, 12.484850 ], [ 13.996582, 12.458033 ], [ 13.320923, 13.555222 ], [ 13.084717, 13.592600 ], [ 12.304688, 13.036669 ], [ 11.530151, 13.325485 ], [ 10.991821, 13.384276 ], [ 10.700684, 13.245293 ], [ 10.118408, 13.277373 ], [ 9.525146, 12.849293 ], [ 9.014282, 12.827870 ], [ 7.805786, 13.341520 ], [ 7.333374, 13.095530 ], [ 6.822510, 13.111580 ], [ 6.448975, 13.491131 ], [ 5.443726, 13.864747 ], [ 4.367065, 13.747389 ], [ 4.108887, 13.528519 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.549202 ], [ 3.614502, 11.657616 ], [ 2.850952, 12.232655 ], [ 2.493896, 12.232655 ], [ 2.153320, 11.937227 ], [ 2.180786, 12.624258 ], [ 1.027222, 12.849293 ], [ 0.994263, 13.336175 ], [ 0.433960, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 1.016235, 14.966013 ], [ 1.384277, 15.321274 ], [ 2.752075, 15.406024 ], [ 3.641968, 15.564836 ], [ 3.724365, 16.183024 ], [ 4.273682, 16.851862 ], [ 4.268188, 19.155547 ], [ 5.679932, 19.601194 ], [ 8.574829, 21.565502 ], [ 9.244995, 21.943046 ], [ 9.975586, 22.350076 ], [ 14.930420, 22.350076 ] ] ], [ [ [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.852295, 21.493964 ], [ 18.918457, 21.943046 ], [ 18.072510, 22.350076 ], [ 22.939453, 22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.996338, 21.943046 ], [ 15.100708, 21.304728 ], [ 15.474243, 21.048618 ], [ 15.490723, 20.730428 ], [ 15.902710, 20.385825 ], [ 15.688477, 19.957860 ], [ 15.303955, 17.926476 ], [ 15.249023, 16.625665 ], [ 13.974609, 15.681221 ], [ 13.540649, 14.365513 ], [ 13.958130, 13.992706 ], [ 13.958130, 13.352210 ], [ 14.595337, 13.330830 ], [ 14.496460, 12.860004 ], [ 14.216309, 12.801088 ], [ 14.183350, 12.484850 ], [ 13.996582, 12.458033 ], [ 13.320923, 13.555222 ], [ 13.084717, 13.592600 ], [ 12.304688, 13.036669 ], [ 11.530151, 13.325485 ], [ 10.991821, 13.384276 ], [ 10.700684, 13.245293 ], [ 10.118408, 13.277373 ], [ 9.525146, 12.849293 ], [ 9.014282, 12.827870 ], [ 7.805786, 13.341520 ], [ 7.333374, 13.095530 ], [ 6.822510, 13.111580 ], [ 6.448975, 13.491131 ], [ 5.443726, 13.864747 ], [ 4.367065, 13.747389 ], [ 4.108887, 13.528519 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.549202 ], [ 3.614502, 11.657616 ], [ 3.576050, 11.329253 ], [ 3.795776, 10.730778 ], [ 3.603516, 10.331132 ], [ 3.707886, 10.060811 ], [ 3.218994, 9.443643 ], [ 2.911377, 9.134639 ], [ 2.724609, 8.504970 ], [ 2.752075, 7.868823 ], [ 2.691650, 6.255237 ], [ 1.867676, 6.140555 ], [ 1.620483, 6.828261 ], [ 1.664429, 9.129216 ], [ 1.466675, 9.335252 ], [ 1.428223, 9.822742 ], [ 0.774536, 10.471607 ], [ 0.900879, 10.995120 ], [ 1.246948, 11.108337 ], [ 1.450195, 11.544616 ], [ 1.939087, 11.641476 ], [ 2.153320, 11.937227 ], [ 2.180786, 12.624258 ], [ 1.027222, 12.849293 ], [ 0.994263, 13.336175 ], [ 0.433960, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 1.016235, 14.966013 ], [ 1.384277, 15.321274 ], [ 2.752075, 15.406024 ], [ 3.641968, 15.564836 ], [ 3.724365, 16.183024 ], [ 4.273682, 16.851862 ], [ 4.268188, 19.155547 ], [ 5.679932, 19.601194 ], [ 8.574829, 21.565502 ], [ 9.244995, 21.943046 ], [ 9.975586, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.850952, 12.232655 ], [ 3.614502, 11.657616 ], [ 3.576050, 11.329253 ], [ 3.795776, 10.730778 ], [ 3.603516, 10.331132 ], [ 3.707886, 10.060811 ], [ 3.218994, 9.443643 ], [ 2.911377, 9.134639 ], [ 2.724609, 8.504970 ], [ 2.752075, 7.868823 ], [ 2.691650, 6.255237 ], [ 1.867676, 6.140555 ], [ 1.620483, 6.828261 ], [ 1.664429, 9.129216 ], [ 1.466675, 9.335252 ], [ 1.428223, 9.822742 ], [ 0.774536, 10.471607 ], [ 0.900879, 10.995120 ], [ 1.246948, 11.108337 ], [ 1.450195, 11.544616 ], [ 1.939087, 11.641476 ], [ 2.153320, 11.937227 ], [ 2.493896, 12.232655 ], [ 2.850952, 12.232655 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 11.016689 ], [ 0.900879, 10.995120 ], [ 0.774536, 10.471607 ], [ 1.428223, 9.822742 ], [ 1.466675, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.620483, 6.828261 ], [ 1.867676, 6.140555 ], [ 1.060181, 5.927508 ], [ 0.840454, 6.277078 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.411495 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.673348 ], [ 0.368042, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.703792 ], [ 0.000000, 10.914224 ], [ 0.027466, 11.016689 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.443726, 13.864747 ], [ 6.448975, 13.491131 ], [ 6.822510, 13.111580 ], [ 7.333374, 13.095530 ], [ 7.805786, 13.341520 ], [ 9.014282, 12.827870 ], [ 9.525146, 12.849293 ], [ 10.118408, 13.277373 ], [ 10.700684, 13.245293 ], [ 10.991821, 13.384276 ], [ 11.530151, 13.325485 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.592600 ], [ 13.320923, 13.555222 ], [ 13.996582, 12.458033 ], [ 14.183350, 12.484850 ], [ 14.578857, 12.082296 ], [ 14.468994, 11.904979 ], [ 14.414062, 11.571525 ], [ 13.573608, 10.795537 ], [ 13.309937, 10.158153 ], [ 13.167114, 9.638661 ], [ 12.958374, 9.416548 ], [ 12.755127, 8.716789 ], [ 12.222290, 8.303906 ], [ 12.062988, 7.798079 ], [ 11.843262, 7.395153 ], [ 11.749878, 6.980954 ], [ 11.057739, 6.642783 ], [ 10.497437, 7.051831 ], [ 10.118408, 7.035476 ], [ 9.525146, 6.451776 ], [ 9.234009, 6.440859 ], [ 8.761597, 5.479300 ], [ 8.503418, 4.768047 ], [ 7.465210, 4.412137 ], [ 7.086182, 4.461427 ], [ 6.701660, 4.236856 ], [ 5.899658, 4.258768 ], [ 5.366821, 4.888467 ], [ 5.037231, 5.610519 ], [ 4.328613, 6.271618 ], [ 3.576050, 6.255237 ], [ 2.691650, 6.255237 ], [ 2.752075, 7.868823 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.134639 ], [ 3.218994, 9.443643 ], [ 3.707886, 10.060811 ], [ 3.603516, 10.331132 ], [ 3.795776, 10.730778 ], [ 3.576050, 11.329253 ], [ 3.614502, 11.657616 ], [ 3.680420, 12.549202 ], [ 3.966064, 12.956383 ], [ 4.108887, 13.528519 ], [ 4.367065, 13.747389 ], [ 5.443726, 13.864747 ] ] ], [ [ [ 0.027466, 11.016689 ], [ 0.900879, 10.995120 ], [ 0.774536, 10.471607 ], [ 1.428223, 9.822742 ], [ 1.466675, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.620483, 6.828261 ], [ 1.867676, 6.140555 ], [ 1.060181, 5.927508 ], [ 0.840454, 6.277078 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.411495 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.673348 ], [ 0.368042, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.703792 ], [ 0.000000, 10.914224 ], [ 0.027466, 11.016689 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.443726, 13.864747 ], [ 6.448975, 13.491131 ], [ 6.822510, 13.111580 ], [ 7.333374, 13.095530 ], [ 7.805786, 13.341520 ], [ 9.014282, 12.827870 ], [ 9.525146, 12.849293 ], [ 10.118408, 13.277373 ], [ 10.700684, 13.245293 ], [ 10.991821, 13.384276 ], [ 11.530151, 13.325485 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.592600 ], [ 13.320923, 13.555222 ], [ 13.996582, 12.458033 ], [ 14.183350, 12.484850 ], [ 14.578857, 12.082296 ], [ 14.468994, 11.904979 ], [ 14.414062, 11.571525 ], [ 13.573608, 10.795537 ], [ 13.309937, 10.158153 ], [ 13.167114, 9.638661 ], [ 12.958374, 9.416548 ], [ 12.755127, 8.716789 ], [ 12.222290, 8.303906 ], [ 12.062988, 7.798079 ], [ 11.843262, 7.395153 ], [ 11.749878, 6.980954 ], [ 11.057739, 6.642783 ], [ 10.497437, 7.051831 ], [ 10.118408, 7.035476 ], [ 9.525146, 6.451776 ], [ 9.234009, 6.440859 ], [ 8.761597, 5.479300 ], [ 8.503418, 4.768047 ], [ 7.465210, 4.412137 ], [ 7.086182, 4.461427 ], [ 6.701660, 4.236856 ], [ 5.899658, 4.258768 ], [ 5.366821, 4.888467 ], [ 5.037231, 5.610519 ], [ 4.328613, 6.271618 ], [ 3.576050, 6.255237 ], [ 2.691650, 6.255237 ], [ 2.752075, 7.868823 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.134639 ], [ 3.218994, 9.443643 ], [ 3.707886, 10.060811 ], [ 3.603516, 10.331132 ], [ 3.795776, 10.730778 ], [ 3.576050, 11.329253 ], [ 3.614502, 11.657616 ], [ 3.680420, 12.549202 ], [ 3.966064, 12.956383 ], [ 4.108887, 13.528519 ], [ 4.367065, 13.747389 ], [ 5.443726, 13.864747 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496460, 12.860004 ], [ 14.897461, 12.216549 ], [ 14.963379, 11.555380 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.017539 ], [ 13.958130, 9.546583 ], [ 14.545898, 8.966471 ], [ 14.979858, 8.792797 ], [ 15.122681, 8.379997 ], [ 15.435791, 7.689217 ], [ 15.281982, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.540405, 6.227934 ], [ 14.463501, 5.451959 ], [ 14.562378, 5.030755 ], [ 14.479980, 4.729727 ], [ 14.952393, 4.209465 ], [ 15.040283, 3.847812 ], [ 15.408325, 3.332470 ], [ 15.864258, 3.014356 ], [ 15.908203, 2.553476 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.724593 ], [ 15.150146, 1.960677 ], [ 14.337158, 2.224173 ], [ 13.079224, 2.268084 ], [ 12.952881, 2.322972 ], [ 12.359619, 2.191238 ], [ 11.755371, 2.322972 ], [ 11.277466, 2.257106 ], [ 11.288452, 1.054628 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.158979 ], [ 9.651489, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.948364, 3.902618 ], [ 8.745117, 4.351889 ], [ 8.492432, 4.494285 ], [ 8.503418, 4.768047 ], [ 8.761597, 5.479300 ], [ 9.234009, 6.440859 ], [ 9.525146, 6.451776 ], [ 10.118408, 7.035476 ], [ 10.497437, 7.051831 ], [ 11.057739, 6.642783 ], [ 11.749878, 6.980954 ], [ 11.843262, 7.395153 ], [ 12.062988, 7.798079 ], [ 12.222290, 8.303906 ], [ 12.755127, 8.716789 ], [ 12.958374, 9.416548 ], [ 13.167114, 9.638661 ], [ 13.309937, 10.158153 ], [ 13.573608, 10.795537 ], [ 14.414062, 11.571525 ], [ 14.468994, 11.904979 ], [ 14.578857, 12.082296 ], [ 14.183350, 12.484850 ], [ 14.216309, 12.801088 ], [ 14.496460, 12.860004 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496460, 12.860004 ], [ 14.897461, 12.216549 ], [ 14.963379, 11.555380 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.017539 ], [ 13.958130, 9.546583 ], [ 14.545898, 8.966471 ], [ 14.979858, 8.792797 ], [ 15.122681, 8.379997 ], [ 15.435791, 7.689217 ], [ 15.281982, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.540405, 6.227934 ], [ 14.463501, 5.451959 ], [ 14.562378, 5.030755 ], [ 14.479980, 4.729727 ], [ 14.952393, 4.209465 ], [ 15.040283, 3.847812 ], [ 15.408325, 3.332470 ], [ 15.864258, 3.014356 ], [ 15.908203, 2.553476 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.724593 ], [ 15.150146, 1.960677 ], [ 14.337158, 2.224173 ], [ 13.079224, 2.268084 ], [ 12.952881, 2.322972 ], [ 12.359619, 2.191238 ], [ 11.755371, 2.322972 ], [ 11.277466, 2.257106 ], [ 9.651489, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.948364, 3.902618 ], [ 8.745117, 4.351889 ], [ 8.492432, 4.494285 ], [ 8.503418, 4.768047 ], [ 8.761597, 5.479300 ], [ 9.234009, 6.440859 ], [ 9.525146, 6.451776 ], [ 10.118408, 7.035476 ], [ 10.497437, 7.051831 ], [ 11.057739, 6.642783 ], [ 11.749878, 6.980954 ], [ 11.843262, 7.395153 ], [ 12.062988, 7.798079 ], [ 12.222290, 8.303906 ], [ 12.755127, 8.716789 ], [ 12.958374, 9.416548 ], [ 13.167114, 9.638661 ], [ 13.309937, 10.158153 ], [ 13.573608, 10.795537 ], [ 14.414062, 11.571525 ], [ 14.468994, 11.904979 ], [ 14.578857, 12.082296 ], [ 14.183350, 12.484850 ], [ 14.216309, 12.801088 ], [ 14.496460, 12.860004 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.072510, 22.350076 ], [ 18.918457, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.543668 ], [ 22.571411, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.322937 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.186890, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.939697, 12.586732 ], [ 22.291260, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.500000, 12.114523 ], [ 22.510986, 11.679135 ], [ 22.879028, 11.383109 ], [ 22.868042, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.968157 ], [ 21.725464, 10.563422 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.009877 ], [ 19.094238, 9.074976 ], [ 18.814087, 8.982749 ], [ 18.912964, 8.629903 ], [ 18.391113, 8.282163 ], [ 17.968140, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.281982, 7.422389 ], [ 15.435791, 7.689217 ], [ 15.122681, 8.379997 ], [ 14.979858, 8.792797 ], [ 14.545898, 8.966471 ], [ 13.958130, 9.546583 ], [ 14.172363, 10.017539 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.924927, 10.892648 ], [ 14.963379, 11.555380 ], [ 14.897461, 12.216549 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.958130, 13.352210 ], [ 13.958130, 13.992706 ], [ 13.540649, 14.365513 ], [ 13.974609, 15.681221 ], [ 15.249023, 16.625665 ], [ 15.303955, 17.926476 ], [ 15.688477, 19.957860 ], [ 15.902710, 20.385825 ], [ 15.490723, 20.730428 ], [ 15.474243, 21.048618 ], [ 15.100708, 21.304728 ], [ 14.996338, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.072510, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.651489, 2.284551 ], [ 11.277466, 2.257106 ], [ 11.288452, 1.054628 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.158979 ], [ 9.651489, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 15.543668 ], [ 22.939453, 4.685930 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.406616, 4.028659 ], [ 21.659546, 4.220421 ], [ 20.928955, 4.319024 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.934937, 4.707828 ], [ 18.544922, 4.198508 ], [ 18.457031, 3.502455 ], [ 17.808838, 3.557283 ], [ 17.133179, 3.727227 ], [ 16.539917, 3.195364 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.553476 ], [ 15.864258, 3.014356 ], [ 15.408325, 3.332470 ], [ 15.040283, 3.847812 ], [ 14.952393, 4.209465 ], [ 14.479980, 4.729727 ], [ 14.562378, 5.030755 ], [ 14.463501, 5.451959 ], [ 14.540405, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.281982, 7.422389 ], [ 16.105957, 7.493196 ], [ 16.292725, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.704712, 7.509535 ], [ 17.968140, 7.890588 ], [ 18.391113, 8.282163 ], [ 18.912964, 8.629903 ], [ 18.814087, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.009877 ], [ 21.000366, 9.476154 ], [ 21.725464, 10.563422 ], [ 22.230835, 10.968157 ], [ 22.500000, 11.043647 ], [ 22.868042, 11.140677 ], [ 22.879028, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.114523 ], [ 22.500000, 12.259496 ], [ 22.291260, 12.645698 ], [ 21.939697, 12.586732 ], [ 22.038574, 12.956383 ], [ 22.296753, 13.373588 ], [ 22.186890, 13.784737 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.104613 ], [ 22.302246, 14.322937 ], [ 22.500000, 14.785505 ], [ 22.571411, 14.944785 ], [ 22.939453, 15.543668 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.072510, 22.350076 ], [ 18.918457, 21.943046 ], [ 19.852295, 21.493964 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 4.685930 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.406616, 4.028659 ], [ 21.659546, 4.220421 ], [ 20.928955, 4.319024 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.934937, 4.707828 ], [ 18.544922, 4.198508 ], [ 18.457031, 3.502455 ], [ 17.808838, 3.557283 ], [ 17.133179, 3.727227 ], [ 16.539917, 3.195364 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.553476 ], [ 15.864258, 3.014356 ], [ 15.408325, 3.332470 ], [ 15.040283, 3.847812 ], [ 14.952393, 4.209465 ], [ 14.479980, 4.729727 ], [ 14.562378, 5.030755 ], [ 14.463501, 5.451959 ], [ 14.540405, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.281982, 7.422389 ], [ 15.435791, 7.689217 ], [ 15.122681, 8.379997 ], [ 14.979858, 8.792797 ], [ 14.545898, 8.966471 ], [ 13.958130, 9.546583 ], [ 14.172363, 10.017539 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.924927, 10.892648 ], [ 14.963379, 11.555380 ], [ 14.897461, 12.216549 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.958130, 13.352210 ], [ 13.958130, 13.992706 ], [ 13.540649, 14.365513 ], [ 13.974609, 15.681221 ], [ 15.249023, 16.625665 ], [ 15.303955, 17.926476 ], [ 15.688477, 19.957860 ], [ 15.902710, 20.385825 ], [ 15.490723, 20.730428 ], [ 15.474243, 21.048618 ], [ 15.100708, 21.304728 ], [ 14.996338, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.072510, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.030755 ], [ 20.291748, 4.691404 ], [ 20.928955, 4.319024 ], [ 21.659546, 4.220421 ], [ 22.406616, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 22.939453, 4.685930 ], [ 22.939453, -0.439449 ], [ 17.633057, -0.439449 ], [ 17.666016, -0.060425 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.902222, 1.741065 ], [ 18.094482, 2.366880 ], [ 18.396606, 2.899153 ], [ 18.457031, 3.502455 ], [ 18.544922, 4.198508 ], [ 18.934937, 4.707828 ], [ 19.467773, 5.030755 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.557283 ], [ 18.457031, 3.502455 ], [ 18.396606, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.902222, 1.741065 ], [ 17.775879, 0.856902 ], [ 17.825317, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.060425 ], [ 17.633057, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.201050, 0.000000 ], [ 9.294434, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.288452, 1.054628 ], [ 11.277466, 2.257106 ], [ 11.755371, 2.322972 ], [ 12.359619, 2.191238 ], [ 12.952881, 2.322972 ], [ 13.079224, 2.268084 ], [ 14.337158, 2.224173 ], [ 15.150146, 1.960677 ], [ 15.941162, 1.724593 ], [ 16.012573, 2.268084 ], [ 16.539917, 3.195364 ], [ 17.133179, 3.727227 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.952881, 2.322972 ], [ 13.079224, 2.268084 ], [ 13.002319, 1.828913 ], [ 13.282471, 1.312751 ], [ 14.029541, 1.395126 ], [ 14.276733, 1.197423 ], [ 13.842773, 0.038452 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.201050, 0.000000 ], [ 9.294434, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.288452, 1.054628 ], [ 11.277466, 2.257106 ], [ 11.755371, 2.322972 ], [ 12.359619, 2.191238 ], [ 12.952881, 2.322972 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.557283 ], [ 18.457031, 3.502455 ], [ 18.396606, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.902222, 1.741065 ], [ 17.775879, 0.856902 ], [ 17.825317, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.060425 ], [ 17.633057, -0.439449 ], [ 14.227295, -0.439449 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.038452 ], [ 14.276733, 1.197423 ], [ 14.029541, 1.395126 ], [ 13.282471, 1.312751 ], [ 13.002319, 1.828913 ], [ 13.079224, 2.268084 ], [ 14.337158, 2.224173 ], [ 15.150146, 1.960677 ], [ 15.941162, 1.724593 ], [ 16.012573, 2.268084 ], [ 16.539917, 3.195364 ], [ 17.133179, 3.727227 ] ] ] } } ] } ] } , @@ -1241,13 +1349,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.439453, 22.080550 ], [ 0.401001, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.080550 ] ] ], [ [ [ 15.523682, 38.229550 ], [ 15.161133, 37.444335 ], [ 15.309448, 37.134045 ], [ 15.100708, 36.619937 ], [ 14.337158, 36.993778 ], [ 13.826294, 37.103384 ], [ 12.431030, 37.609880 ], [ 12.573853, 38.125915 ], [ 13.743896, 38.035112 ], [ 14.760132, 38.143198 ], [ 15.523682, 38.229550 ] ] ], [ [ [ 16.457520, 41.310824 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.876141 ], [ 18.380127, 40.354917 ], [ 18.479004, 40.166281 ], [ 18.292236, 39.808536 ], [ 17.737427, 40.275335 ], [ 16.869507, 40.442767 ], [ 16.452026, 39.795876 ], [ 17.171631, 39.423464 ], [ 17.056274, 38.903858 ], [ 16.638794, 38.843986 ], [ 16.100464, 37.983175 ], [ 15.682983, 37.909534 ], [ 15.688477, 38.212288 ], [ 15.891724, 38.749799 ], [ 16.111450, 38.963680 ], [ 15.721436, 39.542176 ], [ 15.413818, 40.048643 ], [ 15.001831, 40.170479 ], [ 14.705200, 40.601441 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.191056 ], [ 12.886963, 41.253032 ], [ 12.788086, 41.310824 ], [ 16.457520, 41.310824 ] ] ], [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.673462, 39.176917 ], [ 9.217529, 39.240763 ], [ 8.811035, 38.903858 ], [ 8.432007, 39.172659 ], [ 8.388062, 40.375844 ], [ 8.162842, 40.950863 ], [ 8.712158, 40.896906 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ], [ [ [ 22.796631, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.527954, 41.310824 ], [ 22.796631, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 7.333374, 37.116526 ], [ 7.739868, 36.884014 ], [ 8.421021, 36.945502 ], [ 8.217773, 36.430122 ], [ 8.377075, 35.478565 ], [ 8.140869, 34.655804 ], [ 7.525635, 34.098159 ], [ 7.613525, 33.344296 ], [ 8.432007, 32.745703 ], [ 8.442993, 32.505129 ], [ 9.058228, 32.101190 ], [ 9.481201, 30.306503 ], [ 9.805298, 29.425245 ], [ 9.860229, 28.960089 ], [ 9.684448, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.629517, 27.137368 ], [ 9.717407, 26.509905 ], [ 9.321899, 26.091322 ], [ 9.909668, 25.363882 ], [ 9.948120, 24.936257 ], [ 10.305176, 24.377121 ], [ 10.772095, 24.562112 ], [ 11.563110, 24.096619 ], [ 12.002563, 23.468285 ], [ 9.244995, 21.943046 ], [ 8.525391, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.080550 ], [ -0.439453, 35.840082 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.505371, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.164062, 36.782892 ], [ 4.817505, 36.862043 ], [ 5.322876, 36.716871 ], [ 6.262207, 37.107765 ], [ 7.333374, 37.116526 ] ] ], [ [ [ 2.213745, 41.310824 ], [ 2.092896, 41.228249 ], [ 0.812988, 41.017211 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.676472 ], [ 0.109863, 40.124291 ], [ 0.000000, 39.897094 ], [ -0.280151, 39.308800 ], [ 0.000000, 38.903858 ], [ 0.115356, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.439453, 38.311491 ], [ -0.439453, 41.310824 ], [ 2.213745, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.508667, 37.348326 ], [ 10.211792, 37.230328 ], [ 10.184326, 36.721274 ], [ 11.030273, 37.090240 ], [ 11.101685, 36.897194 ], [ 10.601807, 36.408021 ], [ 10.596313, 35.946883 ], [ 10.942383, 35.697456 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.329828 ], [ 10.343628, 33.783713 ], [ 10.859985, 33.765449 ], [ 11.107178, 33.293804 ], [ 11.491699, 33.137551 ], [ 11.431274, 32.366043 ], [ 10.947876, 32.082575 ], [ 10.640259, 31.760867 ], [ 9.953613, 31.377089 ], [ 10.057983, 30.958769 ], [ 9.970093, 30.538608 ], [ 9.481201, 30.306503 ], [ 9.805298, 29.425245 ], [ 9.860229, 28.960089 ], [ 9.684448, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.629517, 27.137368 ], [ 9.717407, 26.509905 ], [ 9.321899, 26.091322 ], [ 9.909668, 25.363882 ], [ 9.948120, 24.936257 ], [ 10.305176, 24.377121 ], [ 10.772095, 24.562112 ], [ 11.563110, 24.096619 ], [ 12.002563, 23.468285 ], [ 9.244995, 21.943046 ], [ 8.525391, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.080550 ], [ -0.439453, 35.840082 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.505371, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.164062, 36.782892 ], [ 4.817505, 36.862043 ], [ 5.322876, 36.716871 ], [ 6.262207, 37.107765 ], [ 7.333374, 37.116526 ], [ 7.739868, 36.884014 ], [ 8.421021, 36.945502 ], [ 9.508667, 37.348326 ] ] ], [ [ [ 2.213745, 41.310824 ], [ 2.092896, 41.228249 ], [ 0.812988, 41.017211 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.676472 ], [ 0.109863, 40.124291 ], [ 0.000000, 39.897094 ], [ -0.280151, 39.308800 ], [ 0.000000, 38.903858 ], [ 0.115356, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.439453, 38.311491 ], [ -0.439453, 41.310824 ], [ 2.213745, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.348326 ], [ 10.211792, 37.230328 ], [ 10.184326, 36.721274 ], [ 11.030273, 37.090240 ], [ 11.101685, 36.897194 ], [ 10.601807, 36.408021 ], [ 10.596313, 35.946883 ], [ 10.942383, 35.697456 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.329828 ], [ 10.343628, 33.783713 ], [ 10.859985, 33.765449 ], [ 11.107178, 33.293804 ], [ 11.491699, 33.137551 ], [ 11.431274, 32.366043 ], [ 10.947876, 32.082575 ], [ 10.640259, 31.760867 ], [ 9.953613, 31.377089 ], [ 10.057983, 30.958769 ], [ 9.970093, 30.538608 ], [ 9.481201, 30.306503 ], [ 9.058228, 32.101190 ], [ 8.442993, 32.505129 ], [ 8.432007, 32.745703 ], [ 7.613525, 33.344296 ], [ 7.525635, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.377075, 35.478565 ], [ 8.217773, 36.430122 ], [ 8.421021, 36.945502 ], [ 9.508667, 37.348326 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.527954, 41.310824 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.022339, 40.842905 ], [ 21.000366, 40.580585 ], [ 20.676270, 40.434405 ], [ 20.615845, 40.107487 ], [ 20.148926, 39.622615 ], [ 19.978638, 39.694507 ], [ 19.962158, 39.913950 ], [ 19.407349, 40.250184 ], [ 19.319458, 40.726446 ], [ 19.352417, 40.979898 ], [ 19.390869, 41.310824 ], [ 20.527954, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.254377 ], [ 22.851562, 39.656456 ], [ 22.939453, 39.571822 ], [ 22.939453, 37.330857 ], [ 22.774658, 37.304645 ], [ 22.939453, 36.923548 ], [ 22.939453, 36.421282 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.408021 ], [ 21.670532, 36.844461 ], [ 21.296997, 37.644685 ], [ 21.121216, 38.307181 ], [ 20.731201, 38.766933 ], [ 20.220337, 39.338546 ], [ 20.148926, 39.622615 ], [ 19.978638, 39.694507 ], [ 19.962158, 39.913950 ], [ 19.407349, 40.250184 ], [ 19.319458, 40.726446 ], [ 19.352417, 40.979898 ], [ 19.390869, 41.310824 ], [ 20.527954, 41.310824 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.598877, 41.133159 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 22.939453, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.491699, 33.137551 ], [ 12.667236, 32.791892 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.708733 ], [ 15.249023, 32.263911 ], [ 15.715942, 31.377089 ], [ 16.611328, 31.179910 ], [ 18.023071, 30.760719 ], [ 19.088745, 30.263812 ], [ 19.577637, 30.524413 ], [ 20.055542, 30.982319 ], [ 19.819336, 31.751525 ], [ 20.137939, 32.236036 ], [ 20.857544, 32.704111 ], [ 21.544189, 32.842674 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.764404, 21.534847 ], [ 18.918457, 21.943046 ], [ 15.864258, 23.407806 ], [ 14.853516, 22.862256 ], [ 14.144897, 22.492257 ], [ 13.584595, 23.039298 ], [ 12.002563, 23.468285 ], [ 11.563110, 24.096619 ], [ 10.772095, 24.562112 ], [ 10.305176, 24.377121 ], [ 9.948120, 24.936257 ], [ 9.909668, 25.363882 ], [ 9.321899, 26.091322 ], [ 9.717407, 26.509905 ], [ 9.629517, 27.137368 ], [ 9.755859, 27.688392 ], [ 9.684448, 28.144660 ], [ 9.860229, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.306503 ], [ 9.970093, 30.538608 ], [ 10.057983, 30.958769 ], [ 9.953613, 31.377089 ], [ 10.640259, 31.760867 ], [ 10.947876, 32.082575 ], [ 11.431274, 32.366043 ], [ 11.491699, 33.137551 ] ] ], [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.254377 ], [ 22.851562, 39.656456 ], [ 22.939453, 39.571822 ], [ 22.939453, 37.330857 ], [ 22.774658, 37.304645 ], [ 22.939453, 36.923548 ], [ 22.939453, 36.421282 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.408021 ], [ 21.670532, 36.844461 ], [ 21.296997, 37.644685 ], [ 21.121216, 38.307181 ], [ 20.731201, 38.766933 ], [ 20.220337, 39.338546 ], [ 20.148926, 39.622615 ], [ 20.615845, 40.107487 ], [ 20.676270, 40.434405 ], [ 21.000366, 40.580585 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.598877, 41.133159 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 22.939453, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.491699, 33.137551 ], [ 12.667236, 32.791892 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.708733 ], [ 15.249023, 32.263911 ], [ 15.715942, 31.377089 ], [ 16.611328, 31.179910 ], [ 18.023071, 30.760719 ], [ 19.088745, 30.263812 ], [ 19.577637, 30.524413 ], [ 20.055542, 30.982319 ], [ 19.819336, 31.751525 ], [ 20.137939, 32.236036 ], [ 20.857544, 32.704111 ], [ 21.544189, 32.842674 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.764404, 21.534847 ], [ 18.918457, 21.943046 ], [ 15.864258, 23.407806 ], [ 14.853516, 22.862256 ], [ 14.996338, 21.943046 ], [ 15.062256, 21.534847 ], [ 8.525391, 21.534847 ], [ 9.244995, 21.943046 ], [ 12.002563, 23.468285 ], [ 11.563110, 24.096619 ], [ 10.772095, 24.562112 ], [ 10.305176, 24.377121 ], [ 9.948120, 24.936257 ], [ 9.909668, 25.363882 ], [ 9.321899, 26.091322 ], [ 9.717407, 26.509905 ], [ 9.629517, 27.137368 ], [ 9.755859, 27.688392 ], [ 9.684448, 28.144660 ], [ 9.860229, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.306503 ], [ 9.970093, 30.538608 ], [ 10.057983, 30.958769 ], [ 9.953613, 31.377089 ], [ 10.640259, 31.760867 ], [ 10.947876, 32.082575 ], [ 11.431274, 32.366043 ], [ 11.491699, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.002563, 23.468285 ], [ 13.584595, 23.039298 ], [ 14.144897, 22.492257 ], [ 14.853516, 22.862256 ], [ 14.996338, 21.943046 ], [ 15.062256, 21.534847 ], [ 8.525391, 21.534847 ], [ 9.244995, 21.943046 ], [ 12.002563, 23.468285 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.407806 ], [ 18.918457, 21.943046 ], [ 19.764404, 21.534847 ], [ 15.062256, 21.534847 ], [ 14.996338, 21.943046 ], [ 14.853516, 22.862256 ], [ 15.864258, 23.407806 ] ] ] } } ] } @@ -1255,39 +1363,39 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.439453, 54.466845 ], [ -0.433960, 54.463653 ], [ 0.000000, 53.667426 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 1.680908, 52.739618 ], [ 1.560059, 52.099757 ], [ 1.049194, 51.805218 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.439453, 50.771208 ], [ -0.439453, 54.466845 ] ] ], [ [ [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.046753, 55.363503 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.975098, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.200806, 56.022948 ], [ 9.953613, 55.776573 ], [ 9.651489, 55.469513 ], [ 9.920654, 54.980766 ], [ 9.283447, 54.829172 ], [ 8.525391, 54.961848 ], [ 8.124390, 55.516192 ], [ 8.113403, 55.776573 ], [ 8.107910, 56.022948 ], [ 10.200806, 56.022948 ] ] ], [ [ [ 14.540405, 56.022948 ], [ 14.364624, 55.776573 ], [ 14.100952, 55.407189 ], [ 12.941895, 55.360381 ], [ 12.804565, 55.776573 ], [ 12.722168, 56.022948 ], [ 14.540405, 56.022948 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.466845 ], [ -0.433960, 54.463653 ], [ 0.000000, 53.667426 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 1.680908, 52.739618 ], [ 1.560059, 52.099757 ], [ 1.049194, 51.805218 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.439453, 50.771208 ], [ -0.439453, 54.466845 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.510918 ], [ 6.904907, 53.481508 ], [ 7.091675, 53.143476 ], [ 6.844482, 52.227799 ], [ 6.591797, 51.852746 ], [ 5.987549, 51.849353 ], [ 6.157837, 50.802463 ], [ 6.042480, 50.127622 ], [ 5.784302, 50.088869 ], [ 5.674438, 49.528774 ], [ 4.801025, 49.983020 ], [ 4.284668, 49.905249 ], [ 3.587036, 50.376999 ], [ 3.125610, 50.778155 ], [ 2.658691, 50.795519 ], [ 2.515869, 51.148340 ], [ 3.317871, 51.344339 ], [ 3.834229, 51.618017 ], [ 4.707642, 53.090725 ], [ 6.075439, 53.510918 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.046753, 55.363503 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.975098, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.200806, 56.022948 ], [ 9.953613, 55.776573 ], [ 9.651489, 55.469513 ], [ 9.920654, 54.980766 ], [ 9.283447, 54.829172 ], [ 8.525391, 54.961848 ], [ 8.124390, 55.516192 ], [ 8.113403, 55.776573 ], [ 8.107910, 56.022948 ], [ 10.200806, 56.022948 ] ] ], [ [ [ 14.540405, 56.022948 ], [ 14.364624, 55.776573 ], [ 14.100952, 55.407189 ], [ 12.941895, 55.360381 ], [ 12.804565, 55.776573 ], [ 12.722168, 56.022948 ], [ 14.540405, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.245728, 49.901711 ], [ 6.185303, 49.464554 ], [ 5.899658, 49.443129 ], [ 5.674438, 49.528774 ], [ 5.784302, 50.088869 ], [ 6.042480, 50.127622 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.510918 ], [ 6.904907, 53.481508 ], [ 7.091675, 53.143476 ], [ 6.844482, 52.227799 ], [ 6.591797, 51.852746 ], [ 5.987549, 51.849353 ], [ 6.157837, 50.802463 ], [ 5.608521, 51.037940 ], [ 4.976807, 51.474540 ], [ 4.048462, 51.265352 ], [ 3.317871, 51.344339 ], [ 3.834229, 51.618017 ], [ 4.707642, 53.090725 ], [ 6.075439, 53.510918 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.393311, 43.008664 ], [ 9.563599, 42.151187 ], [ 9.228516, 41.380930 ], [ 8.778076, 41.582580 ], [ 8.547363, 42.256984 ], [ 8.745117, 42.625876 ], [ 9.393311, 43.008664 ] ] ], [ [ [ 2.515869, 51.148340 ], [ 2.658691, 50.795519 ], [ 3.125610, 50.778155 ], [ 3.587036, 50.376999 ], [ 4.284668, 49.905249 ], [ 4.801025, 49.983020 ], [ 5.674438, 49.528774 ], [ 5.899658, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.199654 ], [ 8.102417, 49.016257 ], [ 7.597046, 48.330691 ], [ 7.470703, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.525391, 47.831596 ], [ 9.596558, 47.524620 ], [ 9.635010, 47.346267 ], [ 9.481201, 47.100045 ], [ 9.931641, 46.920255 ], [ 10.442505, 46.893985 ], [ 10.365601, 46.483265 ], [ 9.926147, 46.312790 ], [ 9.184570, 46.437857 ], [ 8.970337, 46.035109 ], [ 8.492432, 46.004593 ], [ 8.316650, 46.160810 ], [ 7.756348, 45.824971 ], [ 7.272949, 45.775186 ], [ 6.844482, 45.989329 ], [ 6.806030, 45.706179 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.553101, 44.127028 ], [ 7.437744, 43.691708 ], [ 6.531372, 43.129052 ], [ 4.559326, 43.397065 ], [ 3.103638, 43.072901 ], [ 2.988281, 42.472097 ], [ 1.829224, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.662241 ], [ -0.439453, 42.771211 ], [ -0.439453, 49.532339 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.642456, 50.944584 ], [ 2.515869, 51.148340 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.393311, 43.008664 ], [ 9.563599, 42.151187 ], [ 9.228516, 41.380930 ], [ 8.778076, 41.582580 ], [ 8.547363, 42.256984 ], [ 8.745117, 42.625876 ], [ 9.393311, 43.008664 ] ] ], [ [ [ 4.976807, 51.474540 ], [ 5.608521, 51.037940 ], [ 6.157837, 50.802463 ], [ 6.042480, 50.127622 ], [ 6.245728, 49.901711 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.199654 ], [ 8.102417, 49.016257 ], [ 7.597046, 48.330691 ], [ 7.470703, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.525391, 47.831596 ], [ 9.596558, 47.524620 ], [ 9.635010, 47.346267 ], [ 9.481201, 47.100045 ], [ 9.931641, 46.920255 ], [ 10.442505, 46.893985 ], [ 10.365601, 46.483265 ], [ 9.926147, 46.312790 ], [ 9.184570, 46.437857 ], [ 8.970337, 46.035109 ], [ 8.492432, 46.004593 ], [ 8.316650, 46.160810 ], [ 7.756348, 45.824971 ], [ 7.272949, 45.775186 ], [ 6.844482, 45.989329 ], [ 6.806030, 45.706179 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.553101, 44.127028 ], [ 7.437744, 43.691708 ], [ 6.531372, 43.129052 ], [ 4.559326, 43.397065 ], [ 3.103638, 43.072901 ], [ 2.988281, 42.472097 ], [ 1.829224, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.662241 ], [ -0.439453, 42.771211 ], [ -0.439453, 49.532339 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.642456, 50.944584 ], [ 2.515869, 51.148340 ], [ 3.317871, 51.344339 ], [ 4.048462, 51.265352 ], [ 4.976807, 51.474540 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.980766 ], [ 9.942627, 54.594345 ], [ 10.953369, 54.361358 ], [ 10.942383, 54.007769 ], [ 11.958618, 54.194583 ], [ 12.518921, 54.470038 ], [ 13.650513, 54.075506 ], [ 14.122925, 53.755207 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.441528, 52.623060 ], [ 14.688721, 52.089633 ], [ 14.606323, 51.744038 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.721191, 50.215580 ], [ 16.869507, 50.471491 ], [ 17.556152, 50.362985 ], [ 17.649536, 50.046557 ], [ 18.396606, 49.986552 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.493107 ], [ 18.402100, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.041469 ], [ 17.913208, 48.994636 ], [ 17.885742, 48.900838 ], [ 17.545166, 48.799627 ], [ 17.105713, 48.817716 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.254517, 49.037868 ], [ 14.902954, 48.962187 ], [ 14.342651, 48.552978 ], [ 13.595581, 48.875554 ], [ 13.244019, 48.414619 ], [ 12.886963, 48.286848 ], [ 13.029785, 47.635784 ], [ 12.936401, 47.465236 ], [ 12.623291, 47.672786 ], [ 12.145386, 47.702368 ], [ 11.425781, 47.524620 ], [ 10.546875, 47.565407 ], [ 10.404053, 47.301585 ], [ 9.898682, 47.580231 ], [ 9.596558, 47.524620 ], [ 8.525391, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.470703, 47.620975 ], [ 7.597046, 48.330691 ], [ 8.102417, 49.016257 ], [ 6.657715, 49.199654 ], [ 6.185303, 49.464554 ], [ 6.245728, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.802463 ], [ 5.987549, 51.849353 ], [ 6.591797, 51.852746 ], [ 6.844482, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.102661, 53.693454 ], [ 7.937622, 53.748711 ], [ 8.124390, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.574829, 54.393352 ], [ 8.525391, 54.961848 ], [ 9.283447, 54.829172 ], [ 9.920654, 54.980766 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.309692, 51.117317 ], [ 14.573364, 50.999929 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.721191, 50.215580 ], [ 16.869507, 50.471491 ], [ 17.556152, 50.362985 ], [ 17.649536, 50.046557 ], [ 18.396606, 49.986552 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.493107 ], [ 18.402100, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.041469 ], [ 17.913208, 48.994636 ], [ 17.885742, 48.900838 ], [ 17.545166, 48.799627 ], [ 17.105713, 48.817716 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.254517, 49.037868 ], [ 14.902954, 48.962187 ], [ 14.342651, 48.552978 ], [ 13.595581, 48.875554 ], [ 13.035278, 49.307217 ], [ 12.524414, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.264765 ], [ 12.969360, 50.481978 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.309692, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.254517, 49.037868 ], [ 16.029053, 48.734455 ], [ 16.501465, 48.785152 ], [ 16.962891, 48.596592 ], [ 16.880493, 48.469279 ], [ 16.979370, 48.122101 ], [ 16.902466, 47.713458 ], [ 16.342163, 47.713458 ], [ 16.534424, 47.494937 ], [ 16.204834, 46.852678 ], [ 16.012573, 46.683363 ], [ 15.139160, 46.656977 ], [ 14.633789, 46.430285 ], [ 13.809814, 46.509735 ], [ 12.376099, 46.766206 ], [ 12.156372, 47.115000 ], [ 11.167603, 46.939012 ], [ 11.052246, 46.751153 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.100045 ], [ 9.635010, 47.346267 ], [ 9.596558, 47.524620 ], [ 9.898682, 47.580231 ], [ 10.404053, 47.301585 ], [ 10.546875, 47.565407 ], [ 11.425781, 47.524620 ], [ 12.145386, 47.702368 ], [ 12.623291, 47.672786 ], [ 12.936401, 47.465236 ], [ 13.029785, 47.635784 ], [ 12.886963, 48.286848 ], [ 13.244019, 48.414619 ], [ 13.595581, 48.875554 ], [ 14.342651, 48.552978 ], [ 14.902954, 48.962187 ], [ 15.254517, 49.037868 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.980766 ], [ 9.942627, 54.594345 ], [ 10.953369, 54.361358 ], [ 10.942383, 54.007769 ], [ 11.958618, 54.194583 ], [ 12.518921, 54.470038 ], [ 13.650513, 54.075506 ], [ 14.122925, 53.755207 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.441528, 52.623060 ], [ 14.688721, 52.089633 ], [ 14.606323, 51.744038 ], [ 15.018311, 51.106971 ], [ 14.573364, 50.999929 ], [ 14.309692, 51.117317 ], [ 14.057007, 50.927276 ], [ 13.337402, 50.732978 ], [ 12.969360, 50.481978 ], [ 12.238770, 50.264765 ], [ 12.414551, 49.968889 ], [ 12.524414, 49.546598 ], [ 13.035278, 49.307217 ], [ 13.595581, 48.875554 ], [ 13.244019, 48.414619 ], [ 12.886963, 48.286848 ], [ 13.029785, 47.635784 ], [ 12.936401, 47.465236 ], [ 12.623291, 47.672786 ], [ 12.145386, 47.702368 ], [ 11.425781, 47.524620 ], [ 10.546875, 47.565407 ], [ 10.404053, 47.301585 ], [ 9.898682, 47.580231 ], [ 9.596558, 47.524620 ], [ 8.525391, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.470703, 47.620975 ], [ 7.597046, 48.330691 ], [ 8.102417, 49.016257 ], [ 6.657715, 49.199654 ], [ 6.185303, 49.464554 ], [ 6.245728, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.802463 ], [ 5.987549, 51.849353 ], [ 6.591797, 51.852746 ], [ 6.844482, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.102661, 53.693454 ], [ 7.937622, 53.748711 ], [ 8.124390, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.574829, 54.393352 ], [ 8.525391, 54.961848 ], [ 9.283447, 54.829172 ], [ 9.920654, 54.980766 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212036, 41.207589 ], [ 9.404297, 40.979898 ], [ 9.684448, 40.647304 ], [ 8.283691, 40.647304 ], [ 8.162842, 40.950863 ], [ 8.712158, 40.896906 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.207589 ] ] ], [ [ [ 12.156372, 47.115000 ], [ 12.376099, 46.766206 ], [ 13.809814, 46.509735 ], [ 14.633789, 46.430285 ], [ 15.139160, 46.656977 ], [ 16.012573, 46.683363 ], [ 16.204834, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.567383, 46.502173 ], [ 15.770874, 46.236853 ], [ 15.671997, 45.832627 ], [ 15.325928, 45.729191 ], [ 15.331421, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.633246 ], [ 14.414062, 45.463983 ], [ 13.716431, 45.498647 ], [ 13.941650, 45.590978 ], [ 13.145142, 45.736860 ], [ 12.332153, 45.379161 ], [ 12.387085, 44.883120 ], [ 12.260742, 44.598290 ], [ 12.590332, 44.091531 ], [ 13.529663, 43.588349 ], [ 14.029541, 42.759113 ], [ 15.144653, 41.955405 ], [ 15.930176, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.891724, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.876141 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.701627 ], [ 11.195068, 42.354485 ], [ 10.513916, 42.932296 ], [ 10.200806, 43.917680 ], [ 9.706421, 44.036270 ], [ 8.887939, 44.367060 ], [ 8.432007, 44.229457 ], [ 7.849731, 43.767127 ], [ 7.437744, 43.691708 ], [ 7.553101, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.751099, 45.026950 ], [ 7.097168, 45.332840 ], [ 6.806030, 45.706179 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.824971 ], [ 8.316650, 46.160810 ], [ 8.492432, 46.004593 ], [ 8.970337, 46.035109 ], [ 9.184570, 46.437857 ], [ 9.926147, 46.312790 ], [ 10.365601, 46.483265 ], [ 10.442505, 46.893985 ], [ 11.052246, 46.751153 ], [ 11.167603, 46.939012 ], [ 12.156372, 47.115000 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212036, 41.207589 ], [ 9.404297, 40.979898 ], [ 9.684448, 40.647304 ], [ 8.283691, 40.647304 ], [ 8.162842, 40.950863 ], [ 8.712158, 40.896906 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.207589 ] ] ], [ [ [ 15.254517, 49.037868 ], [ 16.029053, 48.734455 ], [ 16.501465, 48.785152 ], [ 16.962891, 48.596592 ], [ 16.880493, 48.469279 ], [ 16.979370, 48.122101 ], [ 16.902466, 47.713458 ], [ 16.342163, 47.713458 ], [ 16.534424, 47.494937 ], [ 16.204834, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.567383, 46.502173 ], [ 15.770874, 46.236853 ], [ 15.671997, 45.832627 ], [ 15.325928, 45.729191 ], [ 15.331421, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.633246 ], [ 14.414062, 45.463983 ], [ 13.716431, 45.498647 ], [ 13.941650, 45.590978 ], [ 13.145142, 45.736860 ], [ 12.332153, 45.379161 ], [ 12.387085, 44.883120 ], [ 12.260742, 44.598290 ], [ 12.590332, 44.091531 ], [ 13.529663, 43.588349 ], [ 14.029541, 42.759113 ], [ 15.144653, 41.955405 ], [ 15.930176, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.891724, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.876141 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.701627 ], [ 11.195068, 42.354485 ], [ 10.513916, 42.932296 ], [ 10.200806, 43.917680 ], [ 9.706421, 44.036270 ], [ 8.887939, 44.367060 ], [ 8.432007, 44.229457 ], [ 7.849731, 43.767127 ], [ 7.437744, 43.691708 ], [ 7.553101, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.751099, 45.026950 ], [ 7.097168, 45.332840 ], [ 6.806030, 45.706179 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.824971 ], [ 8.316650, 46.160810 ], [ 8.492432, 46.004593 ], [ 8.970337, 46.035109 ], [ 9.184570, 46.437857 ], [ 9.926147, 46.312790 ], [ 10.365601, 46.483265 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.100045 ], [ 9.635010, 47.346267 ], [ 9.596558, 47.524620 ], [ 9.898682, 47.580231 ], [ 10.404053, 47.301585 ], [ 10.546875, 47.565407 ], [ 11.425781, 47.524620 ], [ 12.145386, 47.702368 ], [ 12.623291, 47.672786 ], [ 12.936401, 47.465236 ], [ 13.029785, 47.635784 ], [ 12.886963, 48.286848 ], [ 13.244019, 48.414619 ], [ 13.595581, 48.875554 ], [ 14.342651, 48.552978 ], [ 14.902954, 48.962187 ], [ 15.254517, 49.037868 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.802612, 48.622016 ], [ 21.873779, 48.319734 ], [ 22.088013, 48.421910 ], [ 22.500000, 48.217353 ], [ 22.642822, 48.147763 ], [ 22.714233, 47.879513 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 21.626587, 46.991494 ], [ 21.022339, 46.316584 ], [ 20.220337, 46.126556 ], [ 19.599609, 46.172223 ], [ 18.830566, 45.909122 ], [ 18.457031, 45.759859 ], [ 17.633057, 45.951150 ], [ 16.885986, 46.381044 ], [ 16.567383, 46.502173 ], [ 16.369629, 46.841407 ], [ 16.204834, 46.852678 ], [ 16.534424, 47.494937 ], [ 16.342163, 47.713458 ], [ 16.902466, 47.713458 ], [ 16.979370, 48.122101 ], [ 17.490234, 47.864774 ], [ 17.858276, 47.757791 ], [ 18.698730, 47.879513 ], [ 18.781128, 48.081749 ], [ 19.176636, 48.111099 ], [ 19.660034, 48.264913 ], [ 19.769897, 48.202710 ], [ 20.242310, 48.327039 ], [ 20.473022, 48.560250 ], [ 20.802612, 48.622016 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.567383, 46.502173 ], [ 16.885986, 46.381044 ], [ 17.633057, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.555908, 45.081279 ], [ 17.863770, 45.065762 ], [ 17.001343, 45.232349 ], [ 16.534424, 45.209134 ], [ 16.320190, 45.003651 ], [ 15.963135, 45.232349 ], [ 15.748901, 44.816916 ], [ 16.243286, 44.351350 ], [ 16.457520, 44.040219 ], [ 16.918945, 43.667872 ], [ 17.297974, 43.444943 ], [ 17.677002, 43.028745 ], [ 18.561401, 42.650122 ], [ 18.451538, 42.480200 ], [ 17.512207, 42.847779 ], [ 16.929932, 43.209180 ], [ 16.018066, 43.504737 ], [ 15.177612, 44.241264 ], [ 15.375366, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.073521 ], [ 14.260254, 45.232349 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.683472, 45.483244 ], [ 13.716431, 45.498647 ], [ 14.414062, 45.463983 ], [ 14.595337, 45.633246 ], [ 14.935913, 45.471688 ], [ 15.331421, 45.452424 ], [ 15.325928, 45.729191 ], [ 15.671997, 45.832627 ], [ 15.770874, 46.236853 ], [ 16.567383, 46.502173 ] ] ], [ [ [ 19.319458, 49.571540 ], [ 19.824829, 49.217597 ], [ 20.418091, 49.428840 ], [ 20.890503, 49.328702 ], [ 21.610107, 49.468124 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.088013, 48.421910 ], [ 21.873779, 48.319734 ], [ 20.802612, 48.622016 ], [ 20.473022, 48.560250 ], [ 20.242310, 48.327039 ], [ 19.769897, 48.202710 ], [ 19.660034, 48.264913 ], [ 19.176636, 48.111099 ], [ 18.781128, 48.081749 ], [ 18.698730, 47.879513 ], [ 17.858276, 47.757791 ], [ 17.490234, 47.864774 ], [ 16.979370, 48.122101 ], [ 16.880493, 48.469279 ], [ 17.105713, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.900838 ], [ 17.913208, 48.994636 ], [ 18.105469, 49.041469 ], [ 18.171387, 49.271389 ], [ 18.402100, 49.314380 ], [ 18.555908, 49.493107 ], [ 18.852539, 49.496675 ], [ 18.912964, 49.435985 ], [ 19.319458, 49.571540 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.502173 ], [ 16.885986, 46.381044 ], [ 17.633057, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.555908, 45.081279 ], [ 17.863770, 45.065762 ], [ 17.001343, 45.232349 ], [ 16.534424, 45.209134 ], [ 16.320190, 45.003651 ], [ 15.963135, 45.232349 ], [ 15.748901, 44.816916 ], [ 16.243286, 44.351350 ], [ 16.457520, 44.040219 ], [ 16.918945, 43.667872 ], [ 17.297974, 43.444943 ], [ 17.677002, 43.028745 ], [ 18.561401, 42.650122 ], [ 18.451538, 42.480200 ], [ 17.512207, 42.847779 ], [ 16.929932, 43.209180 ], [ 16.018066, 43.504737 ], [ 15.177612, 44.241264 ], [ 15.375366, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.073521 ], [ 14.260254, 45.232349 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.683472, 45.483244 ], [ 13.716431, 45.498647 ], [ 14.414062, 45.463983 ], [ 14.595337, 45.633246 ], [ 14.935913, 45.471688 ], [ 15.331421, 45.452424 ], [ 15.325928, 45.729191 ], [ 15.671997, 45.832627 ], [ 15.770874, 46.236853 ], [ 16.567383, 46.502173 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.232349 ], [ 17.863770, 45.065762 ], [ 18.555908, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.368896, 44.863656 ], [ 19.121704, 44.422011 ], [ 19.599609, 44.036270 ], [ 19.456787, 43.568452 ], [ 19.220581, 43.524655 ], [ 19.033813, 43.432977 ], [ 18.709717, 43.197167 ], [ 18.561401, 42.650122 ], [ 17.677002, 43.028745 ], [ 17.297974, 43.444943 ], [ 16.918945, 43.667872 ], [ 16.457520, 44.040219 ], [ 16.243286, 44.351350 ], [ 15.748901, 44.816916 ], [ 15.963135, 45.232349 ], [ 16.320190, 45.003651 ], [ 16.534424, 45.209134 ], [ 17.001343, 45.232349 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.001343, 45.232349 ], [ 17.863770, 45.065762 ], [ 18.555908, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.368896, 44.863656 ], [ 19.121704, 44.422011 ], [ 19.599609, 44.036270 ], [ 19.456787, 43.568452 ], [ 19.220581, 43.524655 ], [ 19.033813, 43.432977 ], [ 18.709717, 43.197167 ], [ 18.561401, 42.650122 ], [ 17.677002, 43.028745 ], [ 17.297974, 43.444943 ], [ 16.918945, 43.667872 ], [ 16.457520, 44.040219 ], [ 16.243286, 44.351350 ], [ 15.748901, 44.816916 ], [ 15.963135, 45.232349 ], [ 16.320190, 45.003651 ], [ 16.534424, 45.209134 ], [ 17.001343, 45.232349 ] ] ], [ [ [ 19.319458, 49.571540 ], [ 19.824829, 49.217597 ], [ 20.418091, 49.428840 ], [ 20.890503, 49.328702 ], [ 21.610107, 49.468124 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.088013, 48.421910 ], [ 21.873779, 48.319734 ], [ 20.802612, 48.622016 ], [ 20.473022, 48.560250 ], [ 20.242310, 48.327039 ], [ 19.769897, 48.202710 ], [ 19.660034, 48.264913 ], [ 19.176636, 48.111099 ], [ 18.781128, 48.081749 ], [ 18.698730, 47.879513 ], [ 17.858276, 47.757791 ], [ 17.490234, 47.864774 ], [ 16.979370, 48.122101 ], [ 16.880493, 48.469279 ], [ 17.105713, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.900838 ], [ 17.913208, 48.994636 ], [ 18.105469, 49.041469 ], [ 18.171387, 49.271389 ], [ 18.402100, 49.314380 ], [ 18.555908, 49.493107 ], [ 18.852539, 49.496675 ], [ 18.912964, 49.435985 ], [ 19.319458, 49.571540 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.384644, 42.317939 ], [ 22.500000, 42.244785 ], [ 22.884521, 41.996243 ], [ 22.939453, 41.463312 ], [ 22.939453, 41.335576 ], [ 22.763672, 41.302571 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.083492 ], [ 20.462036, 41.512691 ], [ 20.593872, 41.853196 ], [ 20.720215, 41.845013 ], [ 20.764160, 42.049293 ], [ 21.351929, 42.204107 ], [ 21.917725, 42.301690 ], [ 22.384644, 42.317939 ] ] ], [ [ [ 19.220581, 43.524655 ], [ 19.484253, 43.353144 ], [ 19.632568, 43.213183 ], [ 19.962158, 43.104994 ], [ 20.341187, 42.896089 ], [ 20.258789, 42.811522 ], [ 20.072021, 42.589489 ], [ 19.802856, 42.500453 ], [ 19.736938, 42.686473 ], [ 19.308472, 42.195969 ], [ 19.374390, 41.877741 ], [ 19.165649, 41.955405 ], [ 18.885498, 42.281373 ], [ 18.451538, 42.480200 ], [ 18.561401, 42.650122 ], [ 18.709717, 43.197167 ], [ 19.033813, 43.432977 ], [ 19.220581, 43.524655 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.764160, 45.733025 ], [ 20.874023, 45.413876 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.766237 ], [ 22.148438, 44.476911 ], [ 22.461548, 44.699898 ], [ 22.500000, 44.680372 ], [ 22.708740, 44.578730 ], [ 22.500000, 44.425934 ], [ 22.478027, 44.406316 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.640051 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.173135 ], [ 22.604370, 42.896089 ], [ 22.500000, 42.698586 ], [ 22.439575, 42.577355 ], [ 22.500000, 42.508552 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.384644, 42.317939 ], [ 22.500000, 42.244785 ], [ 22.884521, 41.996243 ], [ 22.939453, 41.463312 ], [ 22.939453, 41.335576 ], [ 22.763672, 41.302571 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.083492 ], [ 20.462036, 41.512691 ], [ 20.593872, 41.853196 ], [ 20.522461, 42.216314 ], [ 20.286255, 42.317939 ], [ 20.072021, 42.589489 ], [ 19.802856, 42.500453 ], [ 19.736938, 42.686473 ], [ 19.308472, 42.195969 ], [ 19.374390, 41.877741 ], [ 19.165649, 41.955405 ], [ 18.885498, 42.281373 ], [ 18.451538, 42.480200 ], [ 18.561401, 42.650122 ], [ 18.709717, 43.197167 ], [ 19.033813, 43.432977 ], [ 19.220581, 43.524655 ], [ 19.456787, 43.568452 ], [ 19.599609, 44.036270 ], [ 19.121704, 44.422011 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.599609, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.764160, 45.733025 ], [ 20.874023, 45.413876 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.766237 ], [ 22.148438, 44.476911 ], [ 22.461548, 44.699898 ], [ 22.500000, 44.680372 ], [ 22.708740, 44.578730 ], [ 22.500000, 44.425934 ], [ 22.478027, 44.406316 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.640051 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.173135 ], [ 22.604370, 42.896089 ], [ 22.500000, 42.698586 ], [ 22.439575, 42.577355 ], [ 22.500000, 42.508552 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.384644, 42.317939 ], [ 21.917725, 42.301690 ], [ 21.351929, 42.204107 ], [ 20.764160, 42.049293 ], [ 20.720215, 41.845013 ], [ 20.593872, 41.853196 ], [ 20.522461, 42.216314 ], [ 20.286255, 42.317939 ], [ 20.072021, 42.589489 ], [ 20.258789, 42.811522 ], [ 20.341187, 42.896089 ], [ 19.962158, 43.104994 ], [ 19.632568, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.220581, 43.524655 ], [ 19.456787, 43.568452 ], [ 19.599609, 44.036270 ], [ 19.121704, 44.422011 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.599609, 46.172223 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 49.862776 ], [ 22.521973, 49.475263 ], [ 22.780151, 49.027063 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.109838 ], [ 21.610107, 49.468124 ], [ 20.890503, 49.328702 ], [ 20.418091, 49.428840 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.571540 ], [ 18.912964, 49.435985 ], [ 18.396606, 49.986552 ], [ 17.649536, 50.046557 ], [ 17.556152, 50.362985 ], [ 16.869507, 50.471491 ], [ 16.721191, 50.215580 ], [ 16.177368, 50.422519 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.106971 ], [ 14.606323, 51.744038 ], [ 14.688721, 52.089633 ], [ 14.441528, 52.623060 ], [ 14.073486, 52.981723 ], [ 14.353638, 53.248782 ], [ 14.122925, 53.755207 ], [ 14.804077, 54.049714 ], [ 16.364136, 54.511516 ], [ 17.622070, 54.851315 ], [ 18.621826, 54.683359 ], [ 18.698730, 54.438103 ], [ 19.660034, 54.425322 ], [ 19.890747, 54.863963 ], [ 21.269531, 55.188277 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.269531, 55.188277 ], [ 22.318726, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.758179, 54.854478 ], [ 22.653809, 54.581613 ], [ 22.730713, 54.326135 ], [ 22.500000, 54.326135 ], [ 20.895996, 54.313319 ], [ 19.660034, 54.425322 ], [ 19.890747, 54.863963 ], [ 21.269531, 55.188277 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 47.993598 ], [ 22.939453, 43.830564 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.478027, 44.406316 ], [ 22.500000, 44.425934 ], [ 22.708740, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.699898 ], [ 22.148438, 44.476911 ], [ 21.560669, 44.766237 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.413876 ], [ 20.764160, 45.733025 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.991494 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.714233, 47.879513 ], [ 22.939453, 47.993598 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 49.862776 ], [ 22.521973, 49.475263 ], [ 22.780151, 49.027063 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.109838 ], [ 21.610107, 49.468124 ], [ 20.890503, 49.328702 ], [ 20.418091, 49.428840 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.571540 ], [ 18.912964, 49.435985 ], [ 18.396606, 49.986552 ], [ 17.649536, 50.046557 ], [ 17.556152, 50.362985 ], [ 16.869507, 50.471491 ], [ 16.721191, 50.215580 ], [ 16.177368, 50.422519 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.106971 ], [ 14.606323, 51.744038 ], [ 14.688721, 52.089633 ], [ 14.441528, 52.623060 ], [ 14.073486, 52.981723 ], [ 14.353638, 53.248782 ], [ 14.122925, 53.755207 ], [ 14.804077, 54.049714 ], [ 16.364136, 54.511516 ], [ 17.622070, 54.851315 ], [ 18.621826, 54.683359 ], [ 18.698730, 54.438103 ], [ 19.660034, 54.425322 ], [ 20.895996, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.326135 ], [ 22.653809, 54.581613 ], [ 22.758179, 54.854478 ], [ 22.500000, 54.949231 ], [ 22.318726, 55.015426 ], [ 21.269531, 55.188277 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.173135 ], [ 22.939453, 41.463312 ], [ 22.884521, 41.996243 ], [ 22.500000, 42.244785 ], [ 22.384644, 42.317939 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.508552 ], [ 22.439575, 42.577355 ], [ 22.500000, 42.698586 ], [ 22.604370, 42.896089 ], [ 22.939453, 43.173135 ] ] ], [ [ [ 22.939453, 43.253205 ], [ 22.500000, 43.640051 ], [ 22.412109, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ], [ 22.939453, 43.830564 ], [ 22.939453, 43.253205 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 47.993598 ], [ 22.939453, 43.830564 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.478027, 44.406316 ], [ 22.500000, 44.425934 ], [ 22.708740, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.699898 ], [ 22.148438, 44.476911 ], [ 21.560669, 44.766237 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.413876 ], [ 20.764160, 45.733025 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.991494 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.714233, 47.879513 ], [ 22.939453, 47.993598 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 49.862776 ], [ 22.939453, 47.993598 ], [ 22.714233, 47.879513 ], [ 22.642822, 48.147763 ], [ 22.500000, 48.217353 ], [ 22.088013, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.780151, 49.027063 ], [ 22.521973, 49.475263 ], [ 22.939453, 49.862776 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.173135 ], [ 22.939453, 41.463312 ], [ 22.884521, 41.996243 ], [ 22.500000, 42.244785 ], [ 22.384644, 42.317939 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.508552 ], [ 22.439575, 42.577355 ], [ 22.500000, 42.698586 ], [ 22.604370, 42.896089 ], [ 22.939453, 43.173135 ] ] ], [ [ [ 22.659302, 44.233393 ], [ 22.939453, 43.830564 ], [ 22.939453, 43.253205 ], [ 22.500000, 43.640051 ], [ 22.412109, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ] ] ], [ [ [ 22.939453, 49.862776 ], [ 22.939453, 47.993598 ], [ 22.714233, 47.879513 ], [ 22.642822, 48.147763 ], [ 22.500000, 48.217353 ], [ 22.088013, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.780151, 49.027063 ], [ 22.521973, 49.475263 ], [ 22.939453, 49.862776 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 42.795401 ], [ 1.829224, 42.342305 ], [ 2.988281, 42.472097 ], [ 3.043213, 41.890010 ], [ 2.092896, 41.224118 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.676472 ], [ 0.686646, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.771211 ], [ 0.000000, 42.662241 ], [ 0.340576, 42.577355 ], [ 0.703125, 42.795401 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.703125, 42.795401 ], [ 1.829224, 42.342305 ], [ 2.988281, 42.472097 ], [ 3.043213, 41.890010 ], [ 2.092896, 41.224118 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.676472 ], [ 0.686646, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.771211 ], [ 0.000000, 42.662241 ], [ 0.340576, 42.577355 ], [ 0.703125, 42.795401 ] ] ], [ [ [ 19.736938, 42.686473 ], [ 19.802856, 42.500453 ], [ 20.072021, 42.589489 ], [ 20.286255, 42.317939 ], [ 20.522461, 42.216314 ], [ 20.593872, 41.853196 ], [ 20.462036, 41.512691 ], [ 20.604858, 41.083492 ], [ 20.786133, 40.979898 ], [ 21.022339, 40.842905 ], [ 21.005859, 40.647304 ], [ 19.335938, 40.647304 ], [ 19.319458, 40.726446 ], [ 19.352417, 40.979898 ], [ 19.407349, 41.409776 ], [ 19.539185, 41.718030 ], [ 19.374390, 41.877741 ], [ 19.308472, 42.195969 ], [ 19.736938, 42.686473 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.686473 ], [ 19.802856, 42.500453 ], [ 20.072021, 42.589489 ], [ 20.286255, 42.317939 ], [ 20.522461, 42.216314 ], [ 20.593872, 41.853196 ], [ 20.462036, 41.512691 ], [ 20.604858, 41.083492 ], [ 20.786133, 40.979898 ], [ 21.022339, 40.842905 ], [ 21.005859, 40.647304 ], [ 19.335938, 40.647304 ], [ 19.319458, 40.726446 ], [ 19.352417, 40.979898 ], [ 19.407349, 41.409776 ], [ 19.539185, 41.718030 ], [ 19.374390, 41.877741 ], [ 19.308472, 42.195969 ], [ 19.736938, 42.686473 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.335576 ], [ 22.939453, 40.647304 ], [ 21.005859, 40.647304 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.939453, 41.335576 ] ] ] } } ] } @@ -1295,19 +1403,23 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.847768 ], [ 22.500000, 65.775744 ], [ 22.186890, 65.723852 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.413549 ], [ 19.780884, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.122192, 61.341444 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.869263, 58.952841 ], [ 16.831055, 58.719747 ], [ 16.446533, 57.040730 ], [ 15.880737, 56.102683 ], [ 14.666748, 56.200593 ], [ 14.364624, 55.776573 ], [ 14.188843, 55.528631 ], [ 12.886963, 55.528631 ], [ 12.804565, 55.776573 ], [ 12.628784, 56.307396 ], [ 11.788330, 57.441993 ], [ 11.030273, 58.856383 ], [ 10.360107, 59.470199 ], [ 8.382568, 58.312374 ], [ 7.047729, 58.077876 ], [ 5.668945, 58.588299 ], [ 5.311890, 59.662192 ], [ 4.993286, 61.969943 ], [ 5.916138, 62.613562 ], [ 8.552856, 63.452964 ], [ 10.530396, 64.484627 ], [ 12.359619, 65.879215 ], [ 13.128662, 66.513260 ], [ 13.342896, 66.687784 ], [ 22.939453, 66.687784 ] ] ], [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.628784, 55.528631 ], [ 10.986328, 55.528631 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.213660 ], [ 10.250244, 56.888003 ], [ 10.371094, 56.607885 ], [ 10.914917, 56.456420 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.188368 ], [ 9.953613, 55.776573 ], [ 9.706421, 55.528631 ], [ 8.118896, 55.528631 ], [ 8.113403, 55.776573 ], [ 8.091431, 56.538287 ], [ 8.256226, 56.809901 ], [ 8.547363, 57.109402 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.847768 ], [ 22.500000, 65.775744 ], [ 22.186890, 65.723852 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.413549 ], [ 19.780884, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.122192, 61.341444 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.869263, 58.952841 ], [ 16.831055, 58.719747 ], [ 16.446533, 57.040730 ], [ 15.880737, 56.102683 ], [ 14.666748, 56.200593 ], [ 14.364624, 55.776573 ], [ 14.188843, 55.528631 ], [ 12.886963, 55.528631 ], [ 12.804565, 55.776573 ], [ 12.628784, 56.307396 ], [ 11.788330, 57.441993 ], [ 11.030273, 58.856383 ], [ 11.469727, 59.431110 ], [ 12.299194, 60.116882 ], [ 12.634277, 61.293988 ], [ 11.991577, 61.799093 ], [ 11.931152, 63.127055 ], [ 12.579346, 64.064993 ], [ 13.573608, 64.048171 ], [ 13.919678, 64.444372 ], [ 13.557129, 64.785828 ], [ 15.111694, 66.193792 ], [ 15.391846, 66.513260 ], [ 15.551147, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.527466, 57.754007 ], [ 22.939453, 57.365052 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.325675 ], [ 22.203369, 56.337856 ], [ 21.055298, 56.029087 ], [ 21.093750, 56.782827 ], [ 21.582642, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.527466, 57.754007 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.628784, 55.528631 ], [ 10.986328, 55.528631 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.213660 ], [ 10.250244, 56.888003 ], [ 10.371094, 56.607885 ], [ 10.914917, 56.456420 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.188368 ], [ 9.953613, 55.776573 ], [ 9.706421, 55.528631 ], [ 8.118896, 55.528631 ], [ 8.113403, 55.776573 ], [ 8.091431, 56.538287 ], [ 8.256226, 56.809901 ], [ 8.547363, 57.109402 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.447905 ], [ 10.579834, 57.730552 ] ] ], [ [ [ 15.551147, 66.687784 ], [ 15.391846, 66.513260 ], [ 15.111694, 66.193792 ], [ 13.557129, 64.785828 ], [ 13.919678, 64.444372 ], [ 13.573608, 64.048171 ], [ 12.579346, 64.064993 ], [ 11.931152, 63.127055 ], [ 11.991577, 61.799093 ], [ 12.634277, 61.293988 ], [ 12.299194, 60.116882 ], [ 11.469727, 59.431110 ], [ 11.030273, 58.856383 ], [ 10.360107, 59.470199 ], [ 8.382568, 58.312374 ], [ 7.047729, 58.077876 ], [ 5.668945, 58.588299 ], [ 5.311890, 59.662192 ], [ 4.993286, 61.969943 ], [ 5.916138, 62.613562 ], [ 8.552856, 63.452964 ], [ 10.530396, 64.484627 ], [ 12.359619, 65.879215 ], [ 13.128662, 66.513260 ], [ 13.342896, 66.687784 ], [ 15.551147, 66.687784 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 64.057785 ], [ 22.939453, 59.855851 ], [ 22.873535, 59.844815 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 21.324463, 60.718885 ], [ 21.544189, 61.705499 ], [ 21.060791, 62.605981 ], [ 21.538696, 63.189064 ], [ 22.445068, 63.816440 ], [ 22.500000, 63.845512 ], [ 22.939453, 64.057785 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.527466, 57.754007 ], [ 22.939453, 57.365052 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.325675 ], [ 22.203369, 56.337856 ], [ 21.055298, 56.029087 ], [ 21.093750, 56.782827 ], [ 21.582642, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.527466, 57.754007 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.203369, 56.337856 ], [ 22.500000, 56.325675 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.181641, 55.528631 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.029087 ], [ 22.203369, 56.337856 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.203369, 56.337856 ], [ 22.500000, 56.325675 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.181641, 55.528631 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.029087 ], [ 22.203369, 56.337856 ] ] ], [ [ [ 22.939453, 64.057785 ], [ 22.939453, 59.855851 ], [ 22.873535, 59.844815 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 21.324463, 60.718885 ], [ 21.544189, 61.705499 ], [ 21.060791, 62.605981 ], [ 21.538696, 63.189064 ], [ 22.445068, 63.816440 ], [ 22.500000, 63.845512 ], [ 22.939453, 64.057785 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.379395, 70.253885 ], [ 22.500000, 70.218593 ], [ 22.939453, 70.203715 ], [ 22.939453, 66.337505 ], [ 12.914429, 66.337505 ], [ 13.128662, 66.513260 ], [ 14.760132, 67.809245 ], [ 16.435547, 68.562391 ], [ 19.187622, 69.816891 ], [ 21.379395, 70.253885 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.648804, 69.105818 ], [ 21.978149, 68.616534 ], [ 22.500000, 68.391090 ], [ 22.939453, 68.200133 ], [ 22.939453, 66.337505 ], [ 15.238037, 66.337505 ], [ 15.391846, 66.513260 ], [ 16.111450, 67.301737 ], [ 16.770630, 68.013742 ], [ 17.731934, 68.009628 ], [ 17.995605, 68.566406 ], [ 19.879761, 68.407268 ], [ 20.028076, 69.064638 ], [ 20.648804, 69.105818 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.379395, 70.253885 ], [ 22.500000, 70.218593 ], [ 22.939453, 70.203715 ], [ 22.939453, 68.863517 ], [ 22.500000, 68.847665 ], [ 22.357178, 68.841718 ], [ 21.247559, 69.370638 ], [ 20.648804, 69.105818 ], [ 20.028076, 69.064638 ], [ 19.879761, 68.407268 ], [ 17.995605, 68.566406 ], [ 17.731934, 68.009628 ], [ 16.770630, 68.013742 ], [ 15.391846, 66.513260 ], [ 15.238037, 66.337505 ], [ 12.914429, 66.337505 ], [ 13.128662, 66.513260 ], [ 14.760132, 67.809245 ], [ 16.435547, 68.562391 ], [ 19.187622, 69.816891 ], [ 21.379395, 70.253885 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.247559, 69.370638 ], [ 22.357178, 68.841718 ], [ 22.500000, 68.847665 ], [ 22.939453, 68.863517 ], [ 22.939453, 68.200133 ], [ 22.500000, 68.391090 ], [ 21.978149, 68.616534 ], [ 20.648804, 69.105818 ], [ 21.247559, 69.370638 ] ] ] } } ] } ] } , @@ -1349,57 +1461,65 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.271606, -21.534847 ], [ 35.375977, -21.841105 ], [ 35.375977, -21.943046 ], [ 35.386963, -22.141620 ], [ 35.562744, -22.090730 ], [ 35.535278, -23.069624 ], [ 35.370483, -23.538809 ], [ 35.606689, -23.709924 ], [ 35.458374, -24.121689 ], [ 35.040894, -24.477150 ], [ 34.216919, -24.816654 ], [ 33.013916, -25.358919 ], [ 32.574463, -25.730633 ], [ 32.662354, -26.150507 ], [ 32.915039, -26.219519 ], [ 32.832642, -26.745610 ], [ 32.074585, -26.735799 ], [ 31.986694, -26.293415 ], [ 31.838379, -25.844393 ], [ 31.755981, -25.487910 ], [ 31.931763, -24.372117 ], [ 31.673584, -23.659619 ], [ 31.190186, -22.253513 ], [ 30.662842, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.105999 ], [ 29.432373, -22.090730 ], [ 28.020630, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.790161, -24.241956 ], [ 26.488037, -24.617057 ], [ 25.944214, -24.696934 ], [ 25.768433, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.735962, -25.393661 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.502785 ], [ 22.582397, -25.982737 ], [ 22.500000, -26.032106 ], [ 22.104492, -26.283565 ], [ 22.060547, -26.322960 ], [ 22.060547, -21.534847 ], [ 35.271606, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.267822, -21.534847 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.020630, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.790161, -24.241956 ], [ 26.488037, -24.617057 ], [ 25.944214, -24.696934 ], [ 25.768433, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.735962, -25.393661 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.502785 ], [ 22.582397, -25.982737 ], [ 22.500000, -26.032106 ], [ 22.104492, -26.283565 ], [ 22.060547, -26.322960 ], [ 22.060547, -21.534847 ], [ 28.267822, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.854858, -21.534847 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.662842, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.105999 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.637005 ], [ 28.267822, -21.534847 ], [ 31.854858, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.432373, -22.090730 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.273847 ], [ 30.662842, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.673584, -23.659619 ], [ 31.931763, -24.372117 ], [ 31.755981, -25.487910 ], [ 31.838379, -25.844393 ], [ 31.986694, -26.293415 ], [ 32.074585, -26.735799 ], [ 32.832642, -26.745610 ], [ 32.579956, -27.469287 ], [ 32.464600, -28.304381 ], [ 32.206421, -28.753213 ], [ 31.327515, -29.401320 ], [ 30.904541, -29.912091 ], [ 30.624390, -30.424993 ], [ 30.058594, -31.142305 ], [ 28.927002, -32.170963 ], [ 28.218384, -32.773419 ], [ 27.465820, -33.229498 ], [ 26.422119, -33.614619 ], [ 25.911255, -33.669497 ], [ 25.779419, -33.947917 ], [ 25.175171, -33.797409 ], [ 24.680786, -33.988918 ], [ 23.593140, -33.797409 ], [ 22.988892, -33.916013 ], [ 22.576904, -33.865854 ], [ 22.500000, -33.893217 ], [ 22.060547, -34.061761 ], [ 22.060547, -26.322960 ], [ 22.104492, -26.283565 ], [ 22.500000, -26.032106 ], [ 22.582397, -25.982737 ], [ 22.824097, -25.502785 ], [ 23.312988, -25.269536 ], [ 23.735962, -25.393661 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.768433, -25.175117 ], [ 25.944214, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.790161, -24.241956 ], [ 27.119751, -23.574057 ], [ 28.020630, -22.826820 ], [ 29.432373, -22.090730 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.854296 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.878755 ], [ 27.751465, -30.647364 ], [ 28.108521, -30.548070 ], [ 28.289795, -30.225848 ], [ 28.850098, -30.069094 ], [ 29.020386, -29.745302 ], [ 29.328003, -29.257649 ], [ 28.981934, -28.955282 ], [ 28.542480, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.271606, -21.534847 ], [ 35.375977, -21.841105 ], [ 35.375977, -21.943046 ], [ 35.386963, -22.141620 ], [ 35.562744, -22.090730 ], [ 35.535278, -23.069624 ], [ 35.370483, -23.538809 ], [ 35.606689, -23.709924 ], [ 35.458374, -24.121689 ], [ 35.040894, -24.477150 ], [ 34.216919, -24.816654 ], [ 33.013916, -25.358919 ], [ 32.574463, -25.730633 ], [ 32.662354, -26.150507 ], [ 32.915039, -26.219519 ], [ 32.832642, -26.745610 ], [ 32.579956, -27.469287 ], [ 32.464600, -28.304381 ], [ 32.206421, -28.753213 ], [ 31.327515, -29.401320 ], [ 30.904541, -29.912091 ], [ 30.624390, -30.424993 ], [ 30.058594, -31.142305 ], [ 28.927002, -32.170963 ], [ 28.218384, -32.773419 ], [ 27.465820, -33.229498 ], [ 26.422119, -33.614619 ], [ 25.911255, -33.669497 ], [ 25.779419, -33.947917 ], [ 25.175171, -33.797409 ], [ 24.680786, -33.988918 ], [ 23.593140, -33.797409 ], [ 22.988892, -33.916013 ], [ 22.576904, -33.865854 ], [ 22.500000, -33.893217 ], [ 22.060547, -34.061761 ], [ 22.060547, -26.322960 ], [ 22.104492, -26.283565 ], [ 22.500000, -26.032106 ], [ 22.582397, -25.982737 ], [ 22.824097, -25.502785 ], [ 23.312988, -25.269536 ], [ 23.735962, -25.393661 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.768433, -25.175117 ], [ 25.944214, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.790161, -24.241956 ], [ 27.119751, -23.574057 ], [ 28.020630, -22.826820 ], [ 29.432373, -22.090730 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.273847 ], [ 30.662842, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.475830, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.271606, -21.534847 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.854296 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.878755 ], [ 27.751465, -30.647364 ], [ 28.108521, -30.548070 ], [ 28.289795, -30.225848 ], [ 28.850098, -30.069094 ], [ 29.020386, -29.745302 ], [ 29.328003, -29.257649 ], [ 28.981934, -28.955282 ], [ 28.542480, -28.647210 ] ], [ [ 31.333008, -25.661333 ], [ 31.047363, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.679321, -26.401711 ], [ 30.684814, -26.745610 ], [ 31.283569, -27.288808 ], [ 31.871338, -27.181356 ], [ 32.074585, -26.735799 ], [ 31.986694, -26.293415 ], [ 31.838379, -25.844393 ], [ 31.333008, -25.661333 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.542480, -28.647210 ], [ 28.981934, -28.955282 ], [ 29.328003, -29.257649 ], [ 29.020386, -29.745302 ], [ 28.850098, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.108521, -30.548070 ], [ 27.751465, -30.647364 ], [ 26.998901, -29.878755 ], [ 27.531738, -29.243270 ], [ 28.075562, -28.854296 ], [ 28.542480, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.661333 ], [ 31.838379, -25.844393 ], [ 31.986694, -26.293415 ], [ 32.074585, -26.735799 ], [ 31.871338, -27.181356 ], [ 31.283569, -27.288808 ], [ 30.684814, -26.745610 ], [ 30.679321, -26.401711 ], [ 30.948486, -26.022234 ], [ 31.047363, -25.730633 ], [ 31.333008, -25.661333 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.587040 ], [ 45.411987, -25.601902 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.991037 ], [ 43.764038, -24.462151 ], [ 43.698120, -23.574057 ], [ 43.346558, -22.776182 ], [ 43.253174, -22.060187 ], [ 43.280640, -21.943046 ], [ 43.385010, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.542480, -28.647210 ], [ 28.981934, -28.955282 ], [ 29.328003, -29.257649 ], [ 29.020386, -29.745302 ], [ 28.850098, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.108521, -30.548070 ], [ 27.751465, -30.647364 ], [ 26.998901, -29.878755 ], [ 27.531738, -29.243270 ], [ 28.075562, -28.854296 ], [ 28.542480, -28.647210 ] ] ], [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.587040 ], [ 45.411987, -25.601902 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.991037 ], [ 43.764038, -24.462151 ], [ 43.698120, -23.574057 ], [ 43.346558, -22.776182 ], [ 43.253174, -22.060187 ], [ 43.280640, -21.943046 ], [ 43.385010, -21.534847 ], [ 45.439453, -21.534847 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.439449 ], [ 40.989990, 0.000000 ], [ 40.995483, -0.862394 ], [ 41.588745, -1.686158 ], [ 40.885620, -2.081451 ], [ 40.638428, -2.498597 ], [ 40.264893, -2.575426 ], [ 40.122070, -3.277630 ], [ 39.803467, -3.683373 ], [ 39.605713, -4.346411 ], [ 39.204712, -4.680455 ], [ 37.770996, -3.677892 ], [ 37.699585, -3.096636 ], [ 34.074097, -1.060120 ], [ 33.903809, -0.950274 ], [ 31.865845, -1.027167 ], [ 30.772705, -1.016182 ], [ 30.421143, -1.137010 ], [ 29.822388, -1.444549 ], [ 29.580688, -1.340210 ], [ 29.295044, -1.620267 ], [ 29.256592, -2.218684 ], [ 29.119263, -2.295528 ], [ 29.025879, -2.838804 ], [ 29.278564, -3.294082 ], [ 29.338989, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.349731, -8.238674 ], [ 29.003906, -8.407168 ], [ 28.734741, -8.526701 ], [ 28.449097, -9.167179 ], [ 28.674316, -9.606166 ], [ 28.498535, -10.790141 ], [ 28.372192, -11.797457 ], [ 28.641357, -11.974845 ], [ 29.344482, -12.361466 ], [ 29.619141, -12.178965 ], [ 29.701538, -13.255986 ], [ 28.937988, -13.250640 ], [ 28.526001, -12.699292 ], [ 28.157959, -12.275599 ], [ 27.388916, -12.136005 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.926478 ], [ 25.751953, -11.786703 ], [ 25.416870, -11.334639 ], [ 24.785156, -11.237674 ], [ 24.318237, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.911743, -10.930405 ], [ 23.455811, -10.871070 ], [ 22.840576, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.898510 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 40.989990, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.129028, 0.439449 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.950274 ], [ 31.865845, -1.027167 ], [ 30.772705, -1.016182 ], [ 30.421143, -1.137010 ], [ 29.822388, -1.444549 ], [ 29.580688, -1.340210 ], [ 29.295044, -1.620267 ], [ 29.256592, -2.218684 ], [ 29.119263, -2.295528 ], [ 29.025879, -2.838804 ], [ 29.278564, -3.294082 ], [ 29.338989, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.349731, -8.238674 ], [ 29.003906, -8.407168 ], [ 28.734741, -8.526701 ], [ 28.449097, -9.167179 ], [ 28.674316, -9.606166 ], [ 28.498535, -10.790141 ], [ 28.372192, -11.797457 ], [ 28.641357, -11.974845 ], [ 29.344482, -12.361466 ], [ 29.619141, -12.178965 ], [ 29.701538, -13.255986 ], [ 28.937988, -13.250640 ], [ 28.526001, -12.699292 ], [ 28.157959, -12.275599 ], [ 27.388916, -12.136005 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.926478 ], [ 25.751953, -11.786703 ], [ 25.416870, -11.334639 ], [ 24.785156, -11.237674 ], [ 24.318237, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.911743, -10.930405 ], [ 23.455811, -10.871070 ], [ 22.840576, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.898510 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 34.129028, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.439449 ], [ 40.989990, 0.000000 ], [ 40.995483, -0.862394 ], [ 41.588745, -1.686158 ], [ 40.885620, -2.081451 ], [ 40.638428, -2.498597 ], [ 40.264893, -2.575426 ], [ 40.122070, -3.277630 ], [ 39.803467, -3.683373 ], [ 39.605713, -4.346411 ], [ 39.204712, -4.680455 ], [ 37.770996, -3.677892 ], [ 37.699585, -3.096636 ], [ 34.074097, -1.060120 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.129028, 0.439449 ], [ 40.989990, 0.439449 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.319092, 0.439449 ], [ 43.137817, 0.291136 ], [ 42.874146, 0.000000 ], [ 42.044678, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.588745, -1.686158 ], [ 40.995483, -0.862394 ], [ 40.989990, 0.000000 ], [ 40.989990, 0.439449 ], [ 43.319092, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ], [ 22.565918, -16.899172 ], [ 23.214111, -17.523583 ], [ 24.032593, -17.298199 ], [ 24.686279, -17.355882 ], [ 25.076294, -17.581194 ], [ 25.087280, -17.664960 ], [ 24.521484, -17.889887 ], [ 24.219360, -17.889887 ], [ 23.582153, -18.281518 ], [ 23.197632, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -16.288506 ] ] ], [ [ [ 22.060547, -9.730714 ], [ 22.208862, -9.898510 ], [ 22.153931, -11.086775 ], [ 22.401123, -10.995120 ], [ 22.500000, -10.995120 ], [ 22.840576, -11.016689 ], [ 23.455811, -10.871070 ], [ 23.911743, -10.930405 ], [ 24.021606, -11.237674 ], [ 23.906250, -11.722167 ], [ 24.082031, -12.195073 ], [ 23.933716, -12.565287 ], [ 24.016113, -12.913552 ], [ 22.500000, -12.902844 ], [ 22.060547, -12.897489 ], [ 22.060547, -9.730714 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, -12.897489 ], [ 22.060547, -9.730714 ], [ 22.208862, -9.898510 ], [ 22.153931, -11.086775 ], [ 22.401123, -10.995120 ], [ 22.500000, -10.995120 ], [ 22.840576, -11.016689 ], [ 23.455811, -10.871070 ], [ 23.911743, -10.930405 ], [ 24.021606, -11.237674 ], [ 23.906250, -11.722167 ], [ 24.082031, -12.195073 ], [ 23.933716, -12.565287 ], [ 24.016113, -12.913552 ], [ 22.500000, -12.902844 ], [ 22.060547, -12.897489 ] ] ], [ [ [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ], [ 22.565918, -16.899172 ], [ 23.214111, -17.523583 ], [ 22.500000, -17.680662 ], [ 22.060547, -17.780074 ], [ 22.060547, -16.288506 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.421143, -1.137010 ], [ 30.816650, -1.702630 ], [ 30.761719, -2.290039 ], [ 30.470581, -2.416276 ], [ 29.937744, -2.350415 ], [ 29.635620, -2.921097 ], [ 29.025879, -2.838804 ], [ 29.119263, -2.295528 ], [ 29.256592, -2.218684 ], [ 29.295044, -1.620267 ], [ 29.580688, -1.340210 ], [ 29.822388, -1.444549 ], [ 30.421143, -1.137010 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.032593, -17.298199 ], [ 24.686279, -17.355882 ], [ 25.076294, -17.581194 ], [ 25.087280, -17.664960 ], [ 24.521484, -17.889887 ], [ 24.219360, -17.889887 ], [ 23.582153, -18.281518 ], [ 23.197632, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.780074 ], [ 22.500000, -17.680662 ], [ 23.214111, -17.523583 ], [ 24.032593, -17.298199 ] ] ], [ [ [ 30.421143, -1.137010 ], [ 30.816650, -1.702630 ], [ 30.761719, -2.290039 ], [ 30.470581, -2.416276 ], [ 29.937744, -2.350415 ], [ 29.635620, -2.921097 ], [ 29.025879, -2.838804 ], [ 29.119263, -2.295528 ], [ 29.256592, -2.218684 ], [ 29.295044, -1.620267 ], [ 29.580688, -1.340210 ], [ 29.822388, -1.444549 ], [ 30.421143, -1.137010 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "name_sort": "Burundi", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.903809, -0.950274 ], [ 34.074097, -1.060120 ], [ 37.699585, -3.096636 ], [ 37.770996, -3.677892 ], [ 39.204712, -4.680455 ], [ 38.743286, -5.911117 ], [ 38.803711, -6.479067 ], [ 39.440918, -6.839170 ], [ 39.473877, -7.100893 ], [ 39.193726, -7.705548 ], [ 39.254150, -8.010276 ], [ 39.188232, -8.488672 ], [ 39.539795, -9.112945 ], [ 39.951782, -10.098670 ], [ 40.319824, -10.320324 ], [ 39.523315, -10.898042 ], [ 38.430176, -11.286161 ], [ 37.831421, -11.270000 ], [ 37.474365, -11.571525 ], [ 36.776733, -11.598432 ], [ 36.513062, -11.722167 ], [ 35.315552, -11.442339 ], [ 34.562988, -11.523088 ], [ 34.282837, -10.163560 ], [ 33.739014, -9.416548 ], [ 32.761230, -9.232249 ], [ 32.195435, -8.933914 ], [ 31.558228, -8.765653 ], [ 31.157227, -8.597316 ], [ 30.739746, -8.341953 ], [ 30.201416, -7.079088 ], [ 29.619141, -6.522730 ], [ 29.421387, -5.943900 ], [ 29.520264, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.278564, -3.294082 ], [ 29.025879, -2.838804 ], [ 29.635620, -2.921097 ], [ 29.937744, -2.350415 ], [ 30.470581, -2.416276 ], [ 30.761719, -2.290039 ], [ 30.816650, -1.702630 ], [ 30.421143, -1.137010 ], [ 30.772705, -1.016182 ], [ 31.865845, -1.027167 ], [ 33.903809, -0.950274 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "name_sort": "Burundi", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.350415 ], [ 30.470581, -2.416276 ], [ 30.531006, -2.811371 ], [ 30.745239, -3.036298 ], [ 30.756226, -3.359889 ], [ 30.509033, -3.568248 ], [ 30.119019, -4.088932 ], [ 29.756470, -4.455951 ], [ 29.338989, -4.499762 ], [ 29.278564, -3.294082 ], [ 29.025879, -2.838804 ], [ 29.635620, -2.921097 ], [ 29.937744, -2.350415 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.349731, -8.238674 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.597316 ], [ 31.558228, -8.765653 ], [ 32.195435, -8.933914 ], [ 32.761230, -9.232249 ], [ 33.233643, -9.676569 ], [ 33.486328, -10.525619 ], [ 33.316040, -10.795537 ], [ 33.118286, -11.609193 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.689819, -13.715372 ], [ 33.217163, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.278320, -15.506619 ], [ 29.520264, -15.644197 ], [ 28.948975, -16.045813 ], [ 28.828125, -16.388661 ], [ 28.471069, -16.467695 ], [ 27.597656, -17.292954 ], [ 27.048340, -17.936929 ], [ 26.707764, -17.963058 ], [ 26.383667, -17.848061 ], [ 25.263062, -17.738223 ], [ 25.653076, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.295590 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.729492, -20.853679 ], [ 28.020630, -21.488852 ], [ 28.795166, -21.642111 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.932495, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.197632, -17.868975 ], [ 23.582153, -18.281518 ], [ 24.219360, -17.889887 ], [ 24.521484, -17.889887 ], [ 25.087280, -17.664960 ], [ 25.076294, -17.581194 ], [ 24.686279, -17.355882 ], [ 24.032593, -17.298199 ], [ 23.214111, -17.523583 ], [ 22.565918, -16.899172 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.902844 ], [ 24.016113, -12.913552 ], [ 23.933716, -12.565287 ], [ 24.082031, -12.195073 ], [ 23.906250, -11.722167 ], [ 24.021606, -11.237674 ], [ 23.911743, -10.930405 ], [ 24.257812, -10.951978 ], [ 24.318237, -11.264612 ], [ 24.785156, -11.237674 ], [ 25.416870, -11.334639 ], [ 25.751953, -11.786703 ], [ 26.553955, -11.926478 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.136005 ], [ 28.157959, -12.275599 ], [ 28.526001, -12.699292 ], [ 28.937988, -13.250640 ], [ 29.701538, -13.255986 ], [ 29.619141, -12.178965 ], [ 29.344482, -12.361466 ], [ 28.641357, -11.974845 ], [ 28.372192, -11.797457 ], [ 28.498535, -10.790141 ], [ 28.674316, -9.606166 ], [ 28.449097, -9.167179 ], [ 28.734741, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.349731, -8.238674 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.903809, -0.950274 ], [ 34.074097, -1.060120 ], [ 37.699585, -3.096636 ], [ 37.770996, -3.677892 ], [ 39.204712, -4.680455 ], [ 38.743286, -5.911117 ], [ 38.803711, -6.479067 ], [ 39.440918, -6.839170 ], [ 39.473877, -7.100893 ], [ 39.193726, -7.705548 ], [ 39.254150, -8.010276 ], [ 39.188232, -8.488672 ], [ 39.539795, -9.112945 ], [ 39.951782, -10.098670 ], [ 40.319824, -10.320324 ], [ 39.523315, -10.898042 ], [ 38.430176, -11.286161 ], [ 37.831421, -11.270000 ], [ 37.474365, -11.571525 ], [ 36.776733, -11.598432 ], [ 36.513062, -11.722167 ], [ 35.315552, -11.442339 ], [ 34.562988, -11.523088 ], [ 34.282837, -10.163560 ], [ 33.739014, -9.416548 ], [ 32.761230, -9.232249 ], [ 32.195435, -8.933914 ], [ 31.558228, -8.765653 ], [ 31.157227, -8.597316 ], [ 30.739746, -8.341953 ], [ 30.201416, -7.079088 ], [ 29.619141, -6.522730 ], [ 29.421387, -5.943900 ], [ 29.520264, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.756470, -4.455951 ], [ 30.119019, -4.088932 ], [ 30.509033, -3.568248 ], [ 30.756226, -3.359889 ], [ 30.745239, -3.036298 ], [ 30.531006, -2.811371 ], [ 30.470581, -2.416276 ], [ 30.761719, -2.290039 ], [ 30.816650, -1.702630 ], [ 30.421143, -1.137010 ], [ 30.772705, -1.016182 ], [ 31.865845, -1.027167 ], [ 33.903809, -0.950274 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.278320, -15.506619 ], [ 30.338745, -15.882093 ], [ 31.173706, -15.860958 ], [ 31.635132, -16.072207 ], [ 31.854858, -16.320139 ], [ 32.327271, -16.393931 ], [ 32.849121, -16.715124 ], [ 32.849121, -17.978733 ], [ 32.656860, -18.672267 ], [ 32.612915, -19.419973 ], [ 32.772217, -19.715000 ], [ 32.662354, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.662842, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.105999 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.642111 ], [ 28.020630, -21.488852 ], [ 27.729492, -20.853679 ], [ 27.723999, -20.499064 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.295590 ], [ 25.850830, -18.713894 ], [ 25.653076, -18.536909 ], [ 25.263062, -17.738223 ], [ 26.383667, -17.848061 ], [ 26.707764, -17.963058 ], [ 27.048340, -17.936929 ], [ 27.597656, -17.292954 ], [ 28.471069, -16.467695 ], [ 28.828125, -16.388661 ], [ 28.948975, -16.045813 ], [ 29.520264, -15.644197 ], [ 30.278320, -15.506619 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.349731, -8.238674 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.597316 ], [ 31.558228, -8.765653 ], [ 32.195435, -8.933914 ], [ 32.761230, -9.232249 ], [ 33.233643, -9.676569 ], [ 33.486328, -10.525619 ], [ 33.316040, -10.795537 ], [ 33.118286, -11.609193 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.689819, -13.715372 ], [ 33.217163, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.278320, -15.506619 ], [ 29.520264, -15.644197 ], [ 28.948975, -16.045813 ], [ 28.828125, -16.388661 ], [ 28.471069, -16.467695 ], [ 27.597656, -17.292954 ], [ 27.048340, -17.936929 ], [ 26.707764, -17.963058 ], [ 26.383667, -17.848061 ], [ 25.263062, -17.738223 ], [ 25.087280, -17.664960 ], [ 25.076294, -17.581194 ], [ 24.686279, -17.355882 ], [ 24.032593, -17.298199 ], [ 23.214111, -17.523583 ], [ 22.565918, -16.899172 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.902844 ], [ 24.016113, -12.913552 ], [ 23.933716, -12.565287 ], [ 24.082031, -12.195073 ], [ 23.906250, -11.722167 ], [ 24.021606, -11.237674 ], [ 23.911743, -10.930405 ], [ 24.257812, -10.951978 ], [ 24.318237, -11.264612 ], [ 24.785156, -11.237674 ], [ 25.416870, -11.334639 ], [ 25.751953, -11.786703 ], [ 26.553955, -11.926478 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.136005 ], [ 28.157959, -12.275599 ], [ 28.526001, -12.699292 ], [ 28.937988, -13.250640 ], [ 29.701538, -13.255986 ], [ 29.619141, -12.178965 ], [ 29.344482, -12.361466 ], [ 28.641357, -11.974845 ], [ 28.372192, -11.797457 ], [ 28.498535, -10.790141 ], [ 28.674316, -9.606166 ], [ 28.449097, -9.167179 ], [ 28.734741, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.349731, -8.238674 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.739014, -9.416548 ], [ 34.282837, -10.163560 ], [ 34.562988, -11.523088 ], [ 35.315552, -11.442339 ], [ 36.513062, -11.722167 ], [ 36.776733, -11.598432 ], [ 37.474365, -11.571525 ], [ 37.831421, -11.270000 ], [ 38.430176, -11.286161 ], [ 39.523315, -10.898042 ], [ 40.319824, -10.320324 ], [ 40.479126, -10.768556 ], [ 40.440674, -11.765192 ], [ 40.561523, -12.640338 ], [ 40.599976, -14.205814 ], [ 40.775757, -14.695195 ], [ 40.479126, -15.406024 ], [ 40.089111, -16.103876 ], [ 39.451904, -16.720385 ], [ 38.540039, -17.104043 ], [ 37.413940, -17.586431 ], [ 36.282349, -18.661859 ], [ 35.897827, -18.843913 ], [ 35.200195, -19.554614 ], [ 34.788208, -19.787380 ], [ 34.705811, -20.499064 ], [ 35.178223, -21.253542 ], [ 35.375977, -21.841105 ], [ 35.375977, -21.943046 ], [ 35.386963, -22.141620 ], [ 35.562744, -22.090730 ], [ 35.557251, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.253513 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.662354, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.612915, -19.419973 ], [ 32.656860, -18.672267 ], [ 32.849121, -17.978733 ], [ 32.849121, -16.715124 ], [ 32.327271, -16.393931 ], [ 31.854858, -16.320139 ], [ 31.635132, -16.072207 ], [ 31.173706, -15.860958 ], [ 30.338745, -15.882093 ], [ 30.278320, -15.506619 ], [ 30.179443, -14.796128 ], [ 33.217163, -13.971385 ], [ 32.689819, -13.715372 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.118286, -11.609193 ], [ 33.316040, -10.795537 ], [ 33.486328, -10.525619 ], [ 33.233643, -9.676569 ], [ 32.761230, -9.232249 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.087280, -17.664960 ], [ 25.263062, -17.738223 ], [ 25.653076, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.295590 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.729492, -20.853679 ], [ 28.020630, -21.488852 ], [ 28.795166, -21.642111 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.932495, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.197632, -17.868975 ], [ 23.582153, -18.281518 ], [ 24.219360, -17.889887 ], [ 24.521484, -17.889887 ], [ 25.087280, -17.664960 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.432373, -22.090730 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.273847 ], [ 30.662842, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.223145, -22.350076 ], [ 28.932495, -22.350076 ], [ 29.432373, -22.090730 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.278320, -15.506619 ], [ 30.338745, -15.882093 ], [ 31.173706, -15.860958 ], [ 31.635132, -16.072207 ], [ 31.854858, -16.320139 ], [ 32.327271, -16.393931 ], [ 32.849121, -16.715124 ], [ 32.849121, -17.978733 ], [ 32.656860, -18.672267 ], [ 32.612915, -19.419973 ], [ 32.772217, -19.715000 ], [ 32.662354, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.662842, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.105999 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.642111 ], [ 28.020630, -21.488852 ], [ 27.729492, -20.853679 ], [ 27.723999, -20.499064 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.295590 ], [ 25.850830, -18.713894 ], [ 25.653076, -18.536909 ], [ 25.263062, -17.738223 ], [ 26.383667, -17.848061 ], [ 26.707764, -17.963058 ], [ 27.048340, -17.936929 ], [ 27.597656, -17.292954 ], [ 28.471069, -16.467695 ], [ 28.828125, -16.388661 ], [ 28.948975, -16.045813 ], [ 29.520264, -15.644197 ], [ 30.278320, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -15.998295 ], [ 45.439453, -22.350076 ], [ 43.291626, -22.350076 ], [ 43.253174, -22.060187 ], [ 43.280640, -21.943046 ], [ 43.434448, -21.335432 ], [ 43.895874, -21.166484 ], [ 43.895874, -20.833144 ], [ 44.373779, -20.071411 ], [ 44.467163, -19.435514 ], [ 44.236450, -18.963442 ], [ 44.044189, -18.333669 ], [ 43.961792, -17.413546 ], [ 44.313354, -16.851862 ], [ 44.445190, -16.219949 ], [ 44.945068, -16.183024 ], [ 45.000000, -16.161921 ], [ 45.439453, -15.998295 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.739014, -9.416548 ], [ 34.282837, -10.163560 ], [ 34.562988, -11.523088 ], [ 34.282837, -12.280966 ], [ 34.562988, -13.581921 ], [ 34.909058, -13.565902 ], [ 35.271606, -13.891411 ], [ 35.689087, -14.610163 ], [ 35.771484, -15.897942 ], [ 35.343018, -16.109153 ], [ 35.035400, -16.804541 ], [ 34.381714, -16.183024 ], [ 34.310303, -15.480151 ], [ 34.519043, -15.013769 ], [ 34.458618, -14.615478 ], [ 34.068604, -14.360191 ], [ 33.788452, -14.450639 ], [ 33.217163, -13.971385 ], [ 32.689819, -13.715372 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.118286, -11.609193 ], [ 33.316040, -10.795537 ], [ 33.486328, -10.525619 ], [ 33.233643, -9.676569 ], [ 32.761230, -9.232249 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.319824, -10.320324 ], [ 40.479126, -10.768556 ], [ 40.440674, -11.765192 ], [ 40.561523, -12.640338 ], [ 40.599976, -14.205814 ], [ 40.775757, -14.695195 ], [ 40.479126, -15.406024 ], [ 40.089111, -16.103876 ], [ 39.451904, -16.720385 ], [ 38.540039, -17.104043 ], [ 37.413940, -17.586431 ], [ 36.282349, -18.661859 ], [ 35.897827, -18.843913 ], [ 35.200195, -19.554614 ], [ 34.788208, -19.787380 ], [ 34.705811, -20.499064 ], [ 35.178223, -21.253542 ], [ 35.375977, -21.841105 ], [ 35.375977, -21.943046 ], [ 35.386963, -22.141620 ], [ 35.562744, -22.090730 ], [ 35.557251, -22.350076 ], [ 28.932495, -22.350076 ], [ 29.432373, -22.090730 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.273847 ], [ 30.662842, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.662354, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.612915, -19.419973 ], [ 32.656860, -18.672267 ], [ 32.849121, -17.978733 ], [ 32.849121, -16.715124 ], [ 32.327271, -16.393931 ], [ 31.854858, -16.320139 ], [ 31.635132, -16.072207 ], [ 31.173706, -15.860958 ], [ 30.338745, -15.882093 ], [ 30.278320, -15.506619 ], [ 30.179443, -14.796128 ], [ 33.217163, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.068604, -14.360191 ], [ 34.458618, -14.615478 ], [ 34.519043, -15.013769 ], [ 34.310303, -15.480151 ], [ 34.381714, -16.183024 ], [ 35.035400, -16.804541 ], [ 35.343018, -16.109153 ], [ 35.771484, -15.897942 ], [ 35.689087, -14.610163 ], [ 35.271606, -13.891411 ], [ 34.909058, -13.565902 ], [ 34.562988, -13.581921 ], [ 34.282837, -12.280966 ], [ 34.562988, -11.523088 ], [ 35.315552, -11.442339 ], [ 36.513062, -11.722167 ], [ 36.776733, -11.598432 ], [ 37.474365, -11.571525 ], [ 37.831421, -11.270000 ], [ 38.430176, -11.286161 ], [ 39.523315, -10.898042 ], [ 40.319824, -10.320324 ] ] ], [ [ [ 45.439453, -15.998295 ], [ 45.439453, -22.350076 ], [ 43.291626, -22.350076 ], [ 43.253174, -22.060187 ], [ 43.280640, -21.943046 ], [ 43.434448, -21.335432 ], [ 43.895874, -21.166484 ], [ 43.895874, -20.833144 ], [ 44.373779, -20.071411 ], [ 44.467163, -19.435514 ], [ 44.236450, -18.963442 ], [ 44.044189, -18.333669 ], [ 43.961792, -17.413546 ], [ 44.313354, -16.851862 ], [ 44.445190, -16.219949 ], [ 44.945068, -16.183024 ], [ 45.000000, -16.161921 ], [ 45.439453, -15.998295 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.285767, 12.645698 ], [ 22.494507, 12.259496 ], [ 22.500000, 12.114523 ], [ 22.510986, 11.679135 ], [ 22.879028, 11.383109 ], [ 22.868042, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.968157 ], [ 22.060547, 10.833306 ], [ 22.060547, 12.608176 ], [ 22.285767, 12.645698 ] ] ], [ [ [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ], [ 23.851318, 19.999160 ], [ 23.840332, 19.580493 ], [ 23.889771, 15.607166 ], [ 23.027344, 15.681221 ], [ 22.571411, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.322937 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.060547, 12.993853 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ] ] ], [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.329664 ], [ 45.401001, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.066162, 17.408305 ], [ 43.791504, 17.319176 ], [ 43.379517, 17.581194 ], [ 43.115845, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.346497 ], [ 42.648926, 16.772987 ], [ 42.346802, 17.072539 ], [ 42.269897, 17.471193 ], [ 41.753540, 17.832374 ], [ 41.220703, 18.672267 ], [ 40.940552, 19.487308 ], [ 40.248413, 20.174567 ], [ 39.803467, 20.339476 ], [ 39.138794, 21.289374 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.050903, 22.350076 ], [ 45.439453, 22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ], [ 23.851318, 19.999160 ], [ 23.840332, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 12.993853 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.840332, 19.580493 ], [ 23.889771, 15.607166 ], [ 23.027344, 15.681221 ], [ 22.571411, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.322937 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.060547, 12.993853 ] ] ], [ [ [ 22.060547, 12.608176 ], [ 22.285767, 12.645698 ], [ 22.494507, 12.259496 ], [ 22.500000, 12.114523 ], [ 22.510986, 11.679135 ], [ 22.879028, 11.383109 ], [ 22.868042, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.968157 ], [ 22.060547, 10.833306 ], [ 22.060547, 12.608176 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.502075, 22.350076 ], [ 36.694336, 22.207749 ], [ 36.870117, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.329664 ], [ 45.401001, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.066162, 17.408305 ], [ 43.791504, 17.319176 ], [ 43.379517, 17.581194 ], [ 43.115845, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.346497 ], [ 42.648926, 16.772987 ], [ 42.346802, 17.072539 ], [ 42.269897, 17.471193 ], [ 41.753540, 17.832374 ], [ 41.220703, 18.672267 ], [ 40.940552, 19.487308 ], [ 40.248413, 20.174567 ], [ 39.803467, 20.339476 ], [ 39.138794, 21.289374 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.050903, 22.350076 ], [ 45.439453, 22.350076 ] ] ], [ [ [ 36.502075, 22.350076 ], [ 36.694336, 22.207749 ], [ 36.870117, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.870117, 21.999082 ], [ 36.886597, 21.943046 ], [ 37.188721, 21.017855 ], [ 36.968994, 20.838278 ], [ 37.117310, 19.808054 ], [ 37.485352, 18.615013 ], [ 38.413696, 17.994407 ], [ 37.902832, 17.424029 ], [ 37.166748, 17.261482 ], [ 36.853638, 16.956979 ], [ 36.754761, 16.288506 ], [ 36.326294, 14.822681 ], [ 36.430664, 14.418720 ], [ 36.271362, 13.560562 ], [ 35.864868, 12.576010 ], [ 35.260620, 12.082296 ], [ 34.832153, 11.318481 ], [ 34.733276, 10.908830 ], [ 34.260864, 10.628216 ], [ 33.964233, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.826904, 8.379997 ], [ 33.294067, 8.352823 ], [ 32.953491, 7.781751 ], [ 33.568726, 7.710992 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.822807 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.008179, 4.247812 ], [ 33.392944, 3.787522 ], [ 32.689819, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.171115 ], [ 29.718018, 4.598327 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.432617, 4.286158 ], [ 27.982178, 4.406660 ], [ 27.377930, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.943900 ], [ 26.213379, 6.544560 ], [ 25.795898, 6.975502 ], [ 25.125732, 7.498643 ], [ 25.114746, 7.825289 ], [ 24.570923, 8.227801 ], [ 23.807373, 8.662488 ], [ 23.461304, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.560181, 9.681984 ], [ 23.554688, 10.087854 ], [ 22.977905, 10.714587 ], [ 22.868042, 11.140677 ], [ 22.879028, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.114523 ], [ 22.494507, 12.259496 ], [ 22.285767, 12.645698 ], [ 22.060547, 12.608176 ], [ 22.060547, 12.993853 ], [ 22.296753, 13.373588 ], [ 22.181396, 13.784737 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.104613 ], [ 22.302246, 14.322937 ], [ 22.500000, 14.785505 ], [ 22.571411, 14.944785 ], [ 23.027344, 15.681221 ], [ 23.889771, 15.607166 ], [ 23.840332, 19.580493 ], [ 23.851318, 19.999160 ], [ 24.999390, 20.004322 ], [ 24.999390, 21.999082 ], [ 36.870117, 21.999082 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.870117, 21.999082 ], [ 36.886597, 21.943046 ], [ 37.188721, 21.017855 ], [ 36.968994, 20.838278 ], [ 37.117310, 19.808054 ], [ 37.485352, 18.615013 ], [ 38.413696, 17.994407 ], [ 37.902832, 17.424029 ], [ 37.166748, 17.261482 ], [ 36.853638, 16.956979 ], [ 36.754761, 16.288506 ], [ 36.326294, 14.822681 ], [ 36.430664, 14.418720 ], [ 37.595215, 14.211139 ], [ 37.908325, 14.960706 ], [ 38.512573, 14.503826 ], [ 39.100342, 14.737699 ], [ 39.342041, 14.530415 ], [ 40.028687, 14.519780 ], [ 40.896606, 14.115267 ], [ 41.154785, 13.774066 ], [ 41.599731, 13.448395 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.538478 ], [ 42.000732, 12.098410 ], [ 41.665649, 11.630716 ], [ 41.742554, 11.356182 ], [ 41.759033, 11.049038 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.102947 ], [ 42.780762, 10.925011 ], [ 42.561035, 10.568822 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.681641, 9.183447 ], [ 45.000000, 8.705929 ], [ 45.439453, 8.542998 ], [ 45.439453, 5.506640 ], [ 45.000000, 5.036227 ], [ 44.967041, 4.997922 ], [ 43.659668, 4.954142 ], [ 42.769775, 4.253290 ], [ 42.132568, 4.231378 ], [ 41.857910, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.770264, 4.253290 ], [ 39.858398, 3.836851 ], [ 39.561768, 3.420208 ], [ 38.891602, 3.496972 ], [ 38.671875, 3.612107 ], [ 38.435669, 3.584695 ], [ 38.122559, 3.595660 ], [ 36.859131, 4.444997 ], [ 36.161499, 4.444997 ], [ 35.820923, 4.773521 ], [ 35.820923, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.008179, 4.247812 ], [ 33.392944, 3.787522 ], [ 32.689819, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.171115 ], [ 29.718018, 4.598327 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.432617, 4.286158 ], [ 27.982178, 4.406660 ], [ 27.377930, 5.233187 ], [ 27.042847, 5.123772 ], [ 26.405640, 5.151128 ], [ 25.653076, 5.255068 ], [ 25.279541, 5.167541 ], [ 25.131226, 4.926779 ], [ 24.807129, 4.893941 ], [ 24.411621, 5.107358 ], [ 23.296509, 4.609278 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.401123, 4.028659 ], [ 22.060547, 4.116327 ], [ 22.060547, 10.833306 ], [ 22.230835, 10.968157 ], [ 22.500000, 11.043647 ], [ 22.868042, 11.140677 ], [ 22.879028, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.114523 ], [ 22.494507, 12.259496 ], [ 22.285767, 12.645698 ], [ 22.060547, 12.608176 ], [ 22.060547, 12.993853 ], [ 22.296753, 13.373588 ], [ 22.181396, 13.784737 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.104613 ], [ 22.302246, 14.322937 ], [ 22.500000, 14.785505 ], [ 22.571411, 14.944785 ], [ 23.027344, 15.681221 ], [ 23.889771, 15.607166 ], [ 23.840332, 19.580493 ], [ 23.851318, 19.999160 ], [ 24.999390, 20.004322 ], [ 24.999390, 21.999082 ], [ 36.870117, 21.999082 ] ], [ [ 23.807373, 8.662488 ], [ 24.570923, 8.227801 ], [ 23.889771, 8.619041 ], [ 23.807373, 8.662488 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.868042, 11.140677 ], [ 22.977905, 10.714587 ], [ 23.554688, 10.087854 ], [ 23.560181, 9.681984 ], [ 23.395386, 9.264779 ], [ 23.461304, 8.955619 ], [ 23.807373, 8.662488 ], [ 24.570923, 8.227801 ], [ 25.114746, 7.825289 ], [ 25.125732, 7.498643 ], [ 25.795898, 6.975502 ], [ 26.213379, 6.544560 ], [ 26.466064, 5.943900 ], [ 27.213135, 5.550381 ], [ 27.377930, 5.233187 ], [ 27.042847, 5.123772 ], [ 26.405640, 5.151128 ], [ 25.653076, 5.255068 ], [ 25.279541, 5.167541 ], [ 25.131226, 4.926779 ], [ 24.807129, 4.893941 ], [ 24.411621, 5.107358 ], [ 23.296509, 4.609278 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.401123, 4.028659 ], [ 22.060547, 4.116327 ], [ 22.060547, 10.833306 ], [ 22.230835, 10.968157 ], [ 22.500000, 11.043647 ], [ 22.868042, 11.140677 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.653076, 5.255068 ], [ 26.405640, 5.151128 ], [ 27.042847, 5.123772 ], [ 27.377930, 5.233187 ], [ 27.982178, 4.406660 ], [ 28.432617, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.718018, 4.598327 ], [ 29.954224, 4.171115 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.202216 ], [ 30.855103, 1.845384 ], [ 30.470581, 1.581830 ], [ 30.086060, 1.060120 ], [ 29.877319, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.822388, -0.208740 ], [ 29.679565, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.116327 ], [ 22.401123, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.107358 ], [ 24.807129, 4.893941 ], [ 25.131226, 4.926779 ], [ 25.279541, 5.167541 ], [ 25.653076, 5.255068 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 25.653076, 5.255068 ], [ 26.405640, 5.151128 ], [ 27.042847, 5.123772 ], [ 27.377930, 5.233187 ], [ 27.982178, 4.406660 ], [ 28.432617, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.718018, 4.598327 ], [ 29.954224, 4.171115 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.202216 ], [ 30.855103, 1.845384 ], [ 30.470581, 1.581830 ], [ 30.086060, 1.060120 ], [ 29.877319, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.822388, -0.208740 ], [ 29.679565, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.116327 ], [ 22.401123, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.107358 ], [ 24.807129, 4.893941 ], [ 25.131226, 4.926779 ], [ 25.279541, 5.167541 ], [ 25.653076, 5.255068 ] ] ], [ [ [ 37.908325, 14.960706 ], [ 38.512573, 14.503826 ], [ 39.100342, 14.737699 ], [ 39.342041, 14.530415 ], [ 40.028687, 14.519780 ], [ 40.896606, 14.115267 ], [ 41.154785, 13.774066 ], [ 41.599731, 13.448395 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.538478 ], [ 42.000732, 12.098410 ], [ 41.665649, 11.630716 ], [ 41.742554, 11.356182 ], [ 41.759033, 11.049038 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.102947 ], [ 42.780762, 10.925011 ], [ 42.561035, 10.568822 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.681641, 9.183447 ], [ 45.000000, 8.705929 ], [ 45.439453, 8.542998 ], [ 45.439453, 5.506640 ], [ 45.000000, 5.036227 ], [ 44.967041, 4.997922 ], [ 43.659668, 4.954142 ], [ 42.769775, 4.253290 ], [ 42.132568, 4.231378 ], [ 41.857910, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.770264, 4.253290 ], [ 39.858398, 3.836851 ], [ 39.561768, 3.420208 ], [ 38.891602, 3.496972 ], [ 38.671875, 3.612107 ], [ 38.435669, 3.584695 ], [ 38.122559, 3.595660 ], [ 36.859131, 4.444997 ], [ 36.161499, 4.444997 ], [ 35.820923, 4.773521 ], [ 35.820923, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.593674 ], [ 34.249878, 6.822807 ], [ 34.074097, 7.226249 ], [ 33.568726, 7.710992 ], [ 32.953491, 7.781751 ], [ 33.294067, 8.352823 ], [ 33.826904, 8.379997 ], [ 33.975220, 8.684209 ], [ 33.964233, 9.584501 ], [ 34.260864, 10.628216 ], [ 34.733276, 10.908830 ], [ 34.832153, 11.318481 ], [ 35.260620, 12.082296 ], [ 35.864868, 12.576010 ], [ 36.271362, 13.560562 ], [ 36.430664, 14.418720 ], [ 37.595215, 14.211139 ], [ 37.908325, 14.960706 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.413696, 17.994407 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.182251, 14.487871 ], [ 41.737061, 13.918072 ], [ 42.280884, 13.341520 ], [ 42.588501, 12.999205 ], [ 43.082886, 12.699292 ], [ 42.780762, 12.452669 ], [ 42.352295, 12.538478 ], [ 42.011719, 12.865360 ], [ 41.599731, 13.448395 ], [ 41.154785, 13.774066 ], [ 40.896606, 14.115267 ], [ 40.028687, 14.519780 ], [ 39.342041, 14.530415 ], [ 39.100342, 14.737699 ], [ 38.512573, 14.503826 ], [ 37.908325, 14.960706 ], [ 37.595215, 14.211139 ], [ 36.430664, 14.418720 ], [ 36.326294, 14.822681 ], [ 36.754761, 16.288506 ], [ 36.853638, 16.956979 ], [ 37.166748, 17.261482 ], [ 37.902832, 17.424029 ], [ 38.413696, 17.994407 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.413696, 17.994407 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.182251, 14.487871 ], [ 41.737061, 13.918072 ], [ 42.280884, 13.341520 ], [ 42.588501, 12.999205 ], [ 43.082886, 12.699292 ], [ 43.319092, 12.388294 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.732924 ], [ 43.148804, 11.458491 ], [ 42.780762, 10.925011 ], [ 42.555542, 11.102947 ], [ 42.313843, 11.032864 ], [ 41.759033, 11.049038 ], [ 41.742554, 11.356182 ], [ 41.665649, 11.630716 ], [ 42.000732, 12.098410 ], [ 42.352295, 12.538478 ], [ 42.011719, 12.865360 ], [ 41.599731, 13.448395 ], [ 41.154785, 13.774066 ], [ 40.896606, 14.115267 ], [ 40.028687, 14.519780 ], [ 39.342041, 14.530415 ], [ 39.100342, 14.737699 ], [ 38.512573, 14.503826 ], [ 37.908325, 14.960706 ], [ 37.595215, 14.211139 ], [ 36.430664, 14.418720 ], [ 36.326294, 14.822681 ], [ 36.754761, 16.288506 ], [ 36.853638, 16.956979 ], [ 37.166748, 17.261482 ], [ 37.902832, 17.424029 ], [ 38.413696, 17.994407 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 34.008179, 4.247812 ], [ 34.480591, 3.551800 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.905776 ], [ 34.672852, 1.175455 ], [ 34.183960, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.439449 ], [ 29.679565, -0.439449 ], [ 29.822388, -0.208740 ], [ 29.833374, 0.000000 ], [ 29.877319, 0.598744 ], [ 30.086060, 1.060120 ], [ 30.470581, 1.581830 ], [ 30.855103, 1.845384 ], [ 31.173706, 2.202216 ], [ 30.772705, 2.339438 ], [ 30.833130, 3.507938 ], [ 31.245117, 3.782041 ], [ 31.882324, 3.557283 ], [ 32.689819, 3.793003 ], [ 33.392944, 3.787522 ], [ 34.008179, 4.247812 ] ] ], [ [ [ 43.082886, 12.699292 ], [ 43.319092, 12.388294 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.732924 ], [ 43.148804, 11.458491 ], [ 42.780762, 10.925011 ], [ 42.555542, 11.102947 ], [ 42.313843, 11.032864 ], [ 41.759033, 11.049038 ], [ 41.742554, 11.356182 ], [ 41.665649, 11.630716 ], [ 42.000732, 12.098410 ], [ 42.352295, 12.538478 ], [ 42.780762, 12.452669 ], [ 43.082886, 12.699292 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.008179, 4.247812 ], [ 34.480591, 3.551800 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.905776 ], [ 34.672852, 1.175455 ], [ 34.183960, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.439449 ], [ 29.679565, -0.439449 ], [ 29.822388, -0.208740 ], [ 29.833374, 0.000000 ], [ 29.877319, 0.598744 ], [ 30.086060, 1.060120 ], [ 30.470581, 1.581830 ], [ 30.855103, 1.845384 ], [ 31.173706, 2.202216 ], [ 30.772705, 2.339438 ], [ 30.833130, 3.507938 ], [ 31.245117, 3.782041 ], [ 31.882324, 3.557283 ], [ 32.689819, 3.793003 ], [ 33.392944, 3.787522 ], [ 34.008179, 4.247812 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.820923, 5.337114 ], [ 35.820923, 4.773521 ], [ 36.161499, 4.444997 ], [ 36.859131, 4.444997 ], [ 38.122559, 3.595660 ], [ 38.435669, 3.584695 ], [ 38.671875, 3.612107 ], [ 38.891602, 3.496972 ], [ 39.561768, 3.420208 ], [ 39.858398, 3.836851 ], [ 40.770264, 4.253290 ], [ 41.171265, 3.919060 ], [ 41.857910, 3.919060 ], [ 40.984497, 2.783938 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.439449 ], [ 33.898315, -0.439449 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.183960, 0.516350 ], [ 34.672852, 1.175455 ], [ 35.035400, 1.905776 ], [ 34.595947, 3.052754 ], [ 34.480591, 3.551800 ], [ 34.008179, 4.247812 ], [ 35.299072, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.299072, 5.506640 ], [ 35.820923, 5.337114 ], [ 35.820923, 4.773521 ], [ 36.161499, 4.444997 ], [ 36.859131, 4.444997 ], [ 38.122559, 3.595660 ], [ 38.435669, 3.584695 ], [ 38.671875, 3.612107 ], [ 38.891602, 3.496972 ], [ 39.561768, 3.420208 ], [ 39.858398, 3.836851 ], [ 40.770264, 4.253290 ], [ 41.171265, 3.919060 ], [ 41.857910, 3.919060 ], [ 40.984497, 2.783938 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.439449 ], [ 33.898315, -0.439449 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.183960, 0.516350 ], [ 34.672852, 1.175455 ], [ 35.035400, 1.905776 ], [ 34.595947, 3.052754 ], [ 34.480591, 3.551800 ], [ 34.008179, 4.247812 ], [ 35.299072, 5.506640 ] ] ], [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.066162, 17.408305 ], [ 45.000000, 17.429270 ], [ 45.219727, 17.434511 ], [ 45.401001, 17.329664 ], [ 45.439453, 17.329664 ], [ 45.439453, 13.063426 ], [ 45.406494, 13.025966 ], [ 45.148315, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.699292 ], [ 44.494629, 12.720726 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.634978 ], [ 43.225708, 13.218556 ], [ 43.253174, 13.768731 ], [ 43.088379, 14.061988 ], [ 42.896118, 14.801439 ], [ 42.604980, 15.209988 ], [ 42.808228, 15.262989 ], [ 42.703857, 15.718239 ], [ 42.824707, 15.908508 ], [ 42.780762, 16.346497 ], [ 43.220215, 16.667769 ], [ 43.115845, 17.088291 ], [ 43.379517, 17.581194 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.066162, 17.408305 ], [ 45.000000, 17.429270 ], [ 45.219727, 17.434511 ], [ 45.401001, 17.329664 ], [ 45.439453, 17.329664 ], [ 45.439453, 13.063426 ], [ 45.406494, 13.025966 ], [ 45.148315, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.699292 ], [ 44.494629, 12.720726 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.634978 ], [ 43.225708, 13.218556 ], [ 43.253174, 13.768731 ], [ 43.088379, 14.061988 ], [ 42.896118, 14.801439 ], [ 42.604980, 15.209988 ], [ 42.808228, 15.262989 ], [ 42.703857, 15.718239 ], [ 42.824707, 15.908508 ], [ 42.780762, 16.346497 ], [ 43.220215, 16.667769 ], [ 43.115845, 17.088291 ], [ 43.379517, 17.581194 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.506640 ], [ 45.439453, 1.966167 ], [ 45.000000, 1.669686 ], [ 44.071655, 1.049136 ], [ 43.137817, 0.291136 ], [ 42.874146, 0.000000 ], [ 42.478638, -0.439449 ], [ 40.989990, -0.439449 ], [ 40.989990, 0.000000 ], [ 40.984497, 2.783938 ], [ 41.857910, 3.919060 ], [ 42.132568, 4.231378 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.954142 ], [ 44.967041, 4.997922 ], [ 45.000000, 5.036227 ], [ 45.439453, 5.506640 ] ] ] } } , @@ -1409,53 +1529,61 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.065918, 41.310824 ], [ 44.972534, 41.248903 ], [ 43.582764, 41.091772 ], [ 43.154297, 41.310824 ], [ 45.065918, 41.310824 ] ] ], [ [ [ 22.796631, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.133159 ], [ 22.060547, 41.149706 ], [ 22.060547, 41.310824 ], [ 22.796631, 41.310824 ] ] ], [ [ [ 25.927734, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.927734, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.796631, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.133159 ], [ 22.060547, 41.149706 ], [ 22.060547, 41.310824 ], [ 22.796631, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.703003, 35.701917 ], [ 24.246826, 35.366656 ], [ 25.026855, 35.424868 ], [ 25.768433, 35.353216 ], [ 25.746460, 35.178298 ], [ 26.290283, 35.299435 ], [ 26.163940, 35.003003 ], [ 24.724731, 34.917467 ], [ 24.735718, 35.083956 ], [ 23.516235, 35.277016 ], [ 23.703003, 35.701917 ] ] ], [ [ [ 26.477051, 41.310824 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.684804 ], [ 24.411621, 40.124291 ], [ 23.900757, 39.960280 ], [ 23.345947, 39.960280 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.254377 ], [ 22.851562, 39.656456 ], [ 23.351440, 39.189691 ], [ 22.972412, 38.967951 ], [ 23.532715, 38.509490 ], [ 24.027100, 38.220920 ], [ 24.043579, 37.653383 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.409437 ], [ 22.774658, 37.304645 ], [ 23.153687, 36.421282 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.408021 ], [ 22.060547, 36.637570 ], [ 22.060547, 41.149706 ], [ 22.598877, 41.133159 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.927734, 41.310824 ], [ 26.477051, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.927734, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.927734, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 32.764181 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.189560 ], [ 23.609619, 32.184911 ], [ 23.928223, 32.017392 ], [ 24.922485, 31.896214 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.085870 ], [ 24.960938, 30.661541 ], [ 24.702759, 30.045322 ], [ 24.999390, 29.238477 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.764181 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.065918, 41.310824 ], [ 44.972534, 41.248903 ], [ 43.582764, 41.091772 ], [ 43.154297, 41.310824 ], [ 45.065918, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.387451, 35.160337 ], [ 33.458862, 35.101934 ], [ 33.475342, 34.998504 ], [ 33.524780, 35.038992 ], [ 33.678589, 35.016501 ], [ 33.865356, 35.092945 ], [ 33.975220, 35.056980 ], [ 34.008179, 34.976002 ], [ 32.980957, 34.569906 ], [ 32.492065, 34.700977 ], [ 32.255859, 35.101934 ], [ 32.733765, 35.137879 ], [ 32.920532, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 32.764181 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.189560 ], [ 23.609619, 32.184911 ], [ 23.928223, 32.017392 ], [ 24.922485, 31.896214 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.085870 ], [ 24.960938, 30.661541 ], [ 24.702759, 30.045322 ], [ 24.999390, 29.238477 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.764181 ] ] ], [ [ [ 23.703003, 35.701917 ], [ 24.246826, 35.366656 ], [ 25.026855, 35.424868 ], [ 25.768433, 35.353216 ], [ 25.746460, 35.178298 ], [ 26.290283, 35.299435 ], [ 26.163940, 35.003003 ], [ 24.724731, 34.917467 ], [ 24.735718, 35.083956 ], [ 23.516235, 35.277016 ], [ 23.703003, 35.701917 ] ] ], [ [ [ 26.477051, 41.310824 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.684804 ], [ 24.411621, 40.124291 ], [ 23.900757, 39.960280 ], [ 23.345947, 39.960280 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.254377 ], [ 22.851562, 39.656456 ], [ 23.351440, 39.189691 ], [ 22.972412, 38.967951 ], [ 23.532715, 38.509490 ], [ 24.027100, 38.220920 ], [ 24.043579, 37.653383 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.409437 ], [ 22.774658, 37.304645 ], [ 23.153687, 36.421282 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.408021 ], [ 22.060547, 36.637570 ], [ 22.060547, 41.149706 ], [ 22.598877, 41.133159 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.927734, 41.310824 ], [ 26.477051, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.002197, 34.642247 ], [ 36.447144, 34.592520 ], [ 36.611938, 34.202716 ], [ 36.068115, 33.824794 ], [ 35.820923, 33.275435 ], [ 35.551758, 33.261657 ], [ 35.463867, 33.086939 ], [ 35.128784, 33.091542 ], [ 35.485840, 33.902336 ], [ 36.002197, 34.642247 ] ] ], [ [ [ 34.579468, 35.670685 ], [ 33.903809, 35.245619 ], [ 33.975220, 35.056980 ], [ 33.865356, 35.092945 ], [ 33.678589, 35.016501 ], [ 33.524780, 35.038992 ], [ 33.475342, 34.998504 ], [ 33.458862, 35.101934 ], [ 33.387451, 35.160337 ], [ 33.189697, 35.173808 ], [ 32.920532, 35.088451 ], [ 32.733765, 35.137879 ], [ 32.805176, 35.142371 ], [ 32.947998, 35.384572 ], [ 33.667603, 35.371135 ], [ 34.579468, 35.670685 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.579468, 35.670685 ], [ 33.903809, 35.245619 ], [ 34.008179, 34.976002 ], [ 32.980957, 34.569906 ], [ 32.492065, 34.700977 ], [ 32.255859, 35.101934 ], [ 32.733765, 35.137879 ], [ 32.805176, 35.142371 ], [ 32.947998, 35.384572 ], [ 33.667603, 35.371135 ], [ 34.579468, 35.670685 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.376412 ], [ 39.199219, 32.161663 ], [ 39.006958, 32.008076 ], [ 37.001953, 31.508313 ], [ 38.001709, 30.505484 ], [ 37.672119, 30.339695 ], [ 37.507324, 30.002517 ], [ 36.743774, 29.864465 ], [ 36.502075, 29.501769 ], [ 36.068115, 29.195328 ], [ 34.958496, 29.353452 ], [ 34.925537, 29.501769 ], [ 34.266357, 31.217499 ], [ 34.557495, 31.545771 ], [ 34.491577, 31.606610 ], [ 34.755249, 32.073266 ], [ 34.958496, 32.824211 ], [ 35.101318, 33.077734 ], [ 35.128784, 33.091542 ], [ 35.463867, 33.086939 ], [ 35.551758, 33.261657 ], [ 35.820923, 33.275435 ], [ 35.837402, 32.865746 ], [ 35.700073, 32.713355 ], [ 35.722046, 32.708733 ], [ 36.837158, 32.310349 ], [ 38.792725, 33.376412 ] ], [ [ 35.183716, 32.532921 ], [ 34.974976, 31.863563 ], [ 35.227661, 31.751525 ], [ 34.969482, 31.615966 ], [ 34.931030, 31.353637 ], [ 35.397949, 31.489578 ], [ 35.546265, 31.779547 ], [ 35.546265, 32.393878 ], [ 35.183716, 32.532921 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.002197, 34.642247 ], [ 36.447144, 34.592520 ], [ 36.611938, 34.202716 ], [ 36.068115, 33.824794 ], [ 35.820923, 33.275435 ], [ 35.551758, 33.261657 ], [ 35.463867, 33.086939 ], [ 35.128784, 33.091542 ], [ 35.485840, 33.902336 ], [ 36.002197, 34.642247 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.546265, 32.393878 ], [ 35.546265, 31.779547 ], [ 35.397949, 31.489578 ], [ 34.931030, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.227661, 31.751525 ], [ 34.974976, 31.863563 ], [ 35.183716, 32.532921 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.275435 ], [ 35.837402, 32.865746 ], [ 35.700073, 32.713355 ], [ 35.722046, 32.708733 ], [ 35.546265, 32.393878 ], [ 35.183716, 32.532921 ], [ 34.974976, 31.863563 ], [ 35.227661, 31.751525 ], [ 34.969482, 31.615966 ], [ 34.931030, 31.353637 ], [ 35.397949, 31.489578 ], [ 35.419922, 31.099982 ], [ 34.925537, 29.501769 ], [ 34.266357, 31.217499 ], [ 34.557495, 31.545771 ], [ 34.491577, 31.606610 ], [ 34.755249, 32.073266 ], [ 34.958496, 32.824211 ], [ 35.101318, 33.077734 ], [ 35.128784, 33.091542 ], [ 35.463867, 33.086939 ], [ 35.551758, 33.261657 ], [ 35.820923, 33.275435 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.780762, 37.383253 ], [ 43.945312, 37.256566 ], [ 44.296875, 37.002553 ], [ 44.774780, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.043557 ], [ 45.417480, 33.966142 ], [ 45.439453, 33.938803 ], [ 45.439453, 29.147364 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.176145 ], [ 41.890869, 31.189308 ], [ 40.402222, 31.886887 ], [ 39.199219, 32.161663 ], [ 38.792725, 33.376412 ], [ 36.837158, 32.310349 ], [ 35.700073, 32.713355 ], [ 35.837402, 32.865746 ], [ 35.820923, 33.275435 ], [ 36.068115, 33.824794 ], [ 36.611938, 34.202716 ], [ 36.447144, 34.592520 ], [ 36.002197, 34.642247 ], [ 35.908813, 35.406961 ], [ 36.150513, 35.822267 ], [ 36.688843, 36.257563 ], [ 36.738281, 36.818080 ], [ 37.067871, 36.619937 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.712467 ], [ 39.523315, 36.716871 ], [ 40.676880, 37.090240 ], [ 41.215210, 37.072710 ], [ 42.352295, 37.230328 ], [ 42.780762, 37.383253 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.376412 ], [ 39.199219, 32.161663 ], [ 39.006958, 32.008076 ], [ 37.001953, 31.508313 ], [ 38.001709, 30.505484 ], [ 37.672119, 30.339695 ], [ 37.507324, 30.002517 ], [ 36.743774, 29.864465 ], [ 36.502075, 29.501769 ], [ 36.068115, 29.195328 ], [ 34.958496, 29.353452 ], [ 34.925537, 29.501769 ], [ 35.419922, 31.099982 ], [ 35.397949, 31.489578 ], [ 35.546265, 31.779547 ], [ 35.546265, 32.393878 ], [ 35.722046, 32.708733 ], [ 36.837158, 32.310349 ], [ 38.792725, 33.376412 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.659668, 40.254377 ], [ 44.401245, 40.002372 ], [ 44.796753, 39.711413 ], [ 44.110107, 39.427707 ], [ 44.423218, 38.281313 ], [ 44.225464, 37.970185 ], [ 44.774780, 37.169072 ], [ 44.296875, 37.002553 ], [ 43.945312, 37.256566 ], [ 42.780762, 37.383253 ], [ 42.352295, 37.230328 ], [ 41.215210, 37.072710 ], [ 40.676880, 37.090240 ], [ 39.523315, 36.716871 ], [ 38.699341, 36.712467 ], [ 38.166504, 36.901587 ], [ 37.067871, 36.619937 ], [ 36.738281, 36.818080 ], [ 36.688843, 36.257563 ], [ 36.150513, 35.822267 ], [ 35.782471, 36.275279 ], [ 36.161499, 36.650793 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.796090 ], [ 34.030151, 36.217687 ], [ 32.508545, 36.106815 ], [ 31.701050, 36.641978 ], [ 30.624390, 36.677231 ], [ 30.393677, 36.261992 ], [ 29.701538, 36.142311 ], [ 28.734741, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.207972 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.417678 ], [ 28.822632, 40.459487 ], [ 29.108276, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 31.558228, 41.310824 ], [ 37.007446, 41.310824 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.044922, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.959961, 41.310824 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.361694, 40.149488 ], [ 26.043091, 40.618122 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.477051, 41.310824 ], [ 28.959961, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.183716, 32.532921 ], [ 35.546265, 32.393878 ], [ 35.546265, 31.779547 ], [ 35.397949, 31.489578 ], [ 34.931030, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.227661, 31.751525 ], [ 34.974976, 31.863563 ], [ 35.183716, 32.532921 ] ] ], [ [ [ 42.352295, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.292114, 36.359375 ], [ 41.385498, 35.626047 ], [ 41.006470, 34.415973 ], [ 38.792725, 33.376412 ], [ 36.837158, 32.310349 ], [ 35.700073, 32.713355 ], [ 35.837402, 32.865746 ], [ 35.820923, 33.275435 ], [ 36.068115, 33.824794 ], [ 36.611938, 34.202716 ], [ 36.447144, 34.592520 ], [ 36.002197, 34.642247 ], [ 35.908813, 35.406961 ], [ 36.150513, 35.822267 ], [ 36.688843, 36.257563 ], [ 36.738281, 36.818080 ], [ 37.067871, 36.619937 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.712467 ], [ 39.523315, 36.716871 ], [ 40.676880, 37.090240 ], [ 41.215210, 37.072710 ], [ 42.352295, 37.230328 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 39.199219, 32.161663 ], [ 40.402222, 31.886887 ], [ 41.890869, 31.189308 ], [ 44.708862, 29.176145 ], [ 45.000000, 29.166552 ], [ 45.439453, 29.147364 ], [ 45.439453, 21.534847 ], [ 39.100342, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.578510 ], [ 38.496094, 23.684774 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.282020 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.930542, 25.601902 ], [ 36.639404, 25.824617 ], [ 36.249390, 26.568877 ], [ 35.639648, 27.376645 ], [ 35.134277, 28.062286 ], [ 34.634399, 28.057439 ], [ 34.788208, 28.603814 ], [ 34.832153, 28.955282 ], [ 34.958496, 29.353452 ], [ 36.068115, 29.195328 ], [ 36.502075, 29.501769 ], [ 36.743774, 29.864465 ], [ 37.507324, 30.002517 ], [ 37.672119, 30.339695 ], [ 38.001709, 30.505484 ], [ 37.001953, 31.508313 ], [ 39.006958, 32.008076 ], [ 39.199219, 32.161663 ] ] ], [ [ [ 26.499023, 31.583215 ], [ 27.460327, 31.320794 ], [ 28.454590, 31.024694 ], [ 28.916016, 30.869225 ], [ 29.685059, 31.184609 ], [ 30.097046, 31.470839 ], [ 30.975952, 31.555134 ], [ 31.690063, 31.428663 ], [ 31.959229, 30.930501 ], [ 32.195435, 31.259770 ], [ 32.997437, 31.024694 ], [ 33.777466, 30.968189 ], [ 34.266357, 31.217499 ], [ 34.925537, 29.501769 ], [ 34.645386, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.156494, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.140259, 28.415560 ], [ 32.426147, 29.850173 ], [ 32.321777, 29.759609 ], [ 32.733765, 28.705043 ], [ 33.348999, 27.698120 ], [ 34.107056, 26.140645 ], [ 34.475098, 25.596948 ], [ 34.793701, 25.030861 ], [ 35.694580, 23.926013 ], [ 35.496826, 23.750154 ], [ 35.529785, 23.099944 ], [ 36.694336, 22.202663 ], [ 36.870117, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 29.238477 ], [ 24.702759, 30.045322 ], [ 24.960938, 30.661541 ], [ 24.801636, 31.085870 ], [ 25.164185, 31.569175 ], [ 26.499023, 31.583215 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.780762, 37.383253 ], [ 43.945312, 37.256566 ], [ 44.296875, 37.002553 ], [ 44.774780, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.043557 ], [ 45.417480, 33.966142 ], [ 45.439453, 33.938803 ], [ 45.439453, 29.147364 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.176145 ], [ 41.890869, 31.189308 ], [ 40.402222, 31.886887 ], [ 39.199219, 32.161663 ], [ 38.792725, 33.376412 ], [ 41.006470, 34.415973 ], [ 41.385498, 35.626047 ], [ 41.292114, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.352295, 37.230328 ], [ 42.780762, 37.383253 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.870117, 21.999082 ], [ 36.886597, 21.943046 ], [ 37.018433, 21.534847 ], [ 24.999390, 21.534847 ], [ 24.999390, 21.999082 ], [ 36.870117, 21.999082 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.659668, 40.254377 ], [ 44.401245, 40.002372 ], [ 44.796753, 39.711413 ], [ 44.110107, 39.427707 ], [ 44.423218, 38.281313 ], [ 44.225464, 37.970185 ], [ 44.774780, 37.169072 ], [ 44.296875, 37.002553 ], [ 43.945312, 37.256566 ], [ 42.780762, 37.383253 ], [ 42.352295, 37.230328 ], [ 41.215210, 37.072710 ], [ 40.676880, 37.090240 ], [ 39.523315, 36.716871 ], [ 38.699341, 36.712467 ], [ 38.166504, 36.901587 ], [ 37.067871, 36.619937 ], [ 36.738281, 36.818080 ], [ 36.688843, 36.257563 ], [ 36.150513, 35.822267 ], [ 35.782471, 36.275279 ], [ 36.161499, 36.650793 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.796090 ], [ 34.030151, 36.217687 ], [ 32.508545, 36.106815 ], [ 31.701050, 36.641978 ], [ 30.624390, 36.677231 ], [ 30.393677, 36.261992 ], [ 29.701538, 36.142311 ], [ 28.734741, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.207972 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.417678 ], [ 28.822632, 40.459487 ], [ 29.108276, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 31.558228, 41.310824 ], [ 37.007446, 41.310824 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.044922, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.959961, 41.310824 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.361694, 40.149488 ], [ 26.043091, 40.618122 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.477051, 41.310824 ], [ 28.959961, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 39.199219, 32.161663 ], [ 40.402222, 31.886887 ], [ 41.890869, 31.189308 ], [ 44.708862, 29.176145 ], [ 45.000000, 29.166552 ], [ 45.439453, 29.147364 ], [ 45.439453, 21.534847 ], [ 39.100342, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.578510 ], [ 38.496094, 23.684774 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.282020 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.930542, 25.601902 ], [ 36.639404, 25.824617 ], [ 36.249390, 26.568877 ], [ 35.639648, 27.376645 ], [ 35.134277, 28.062286 ], [ 34.634399, 28.057439 ], [ 34.788208, 28.603814 ], [ 34.832153, 28.955282 ], [ 34.958496, 29.353452 ], [ 36.068115, 29.195328 ], [ 36.502075, 29.501769 ], [ 36.743774, 29.864465 ], [ 37.507324, 30.002517 ], [ 37.672119, 30.339695 ], [ 38.001709, 30.505484 ], [ 37.001953, 31.508313 ], [ 39.006958, 32.008076 ], [ 39.199219, 32.161663 ] ] ], [ [ [ 26.499023, 31.583215 ], [ 27.460327, 31.320794 ], [ 28.454590, 31.024694 ], [ 28.916016, 30.869225 ], [ 29.685059, 31.184609 ], [ 30.097046, 31.470839 ], [ 30.975952, 31.555134 ], [ 31.690063, 31.428663 ], [ 31.959229, 30.930501 ], [ 32.195435, 31.259770 ], [ 32.997437, 31.024694 ], [ 33.777466, 30.968189 ], [ 34.266357, 31.217499 ], [ 34.925537, 29.501769 ], [ 34.645386, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.156494, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.140259, 28.415560 ], [ 32.426147, 29.850173 ], [ 32.321777, 29.759609 ], [ 32.733765, 28.705043 ], [ 33.348999, 27.698120 ], [ 34.107056, 26.140645 ], [ 34.475098, 25.596948 ], [ 34.793701, 25.030861 ], [ 35.694580, 23.926013 ], [ 35.496826, 23.750154 ], [ 35.529785, 23.099944 ], [ 36.694336, 22.202663 ], [ 36.870117, 21.999082 ], [ 36.886597, 21.943046 ], [ 37.018433, 21.534847 ], [ 24.999390, 21.534847 ], [ 24.999390, 29.238477 ], [ 24.702759, 30.045322 ], [ 24.960938, 30.661541 ], [ 24.801636, 31.085870 ], [ 25.164185, 31.569175 ], [ 26.499023, 31.583215 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 41.310824 ], [ 45.439453, 38.891033 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.796753, 39.711413 ], [ 44.401245, 40.002372 ], [ 43.659668, 40.254377 ], [ 43.753052, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.439453, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.302124, 39.470125 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.891033 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.796753, 39.711413 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.439453, 40.659806 ], [ 45.439453, 40.509623 ], [ 45.362549, 40.559721 ], [ 45.439453, 40.659806 ] ] ], [ [ [ 45.439453, 40.867834 ], [ 45.181274, 40.988192 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.867834 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 34.043557 ], [ 45.439453, 33.938803 ], [ 45.417480, 33.966142 ], [ 45.439453, 34.043557 ] ] ], [ [ [ 45.439453, 35.969115 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.774780, 37.169072 ], [ 44.225464, 37.970185 ], [ 44.423218, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.796753, 39.711413 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.439453, 38.891033 ], [ 45.439453, 35.969115 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 34.043557 ], [ 45.439453, 33.938803 ], [ 45.417480, 33.966142 ], [ 45.439453, 34.043557 ] ] ], [ [ [ 44.796753, 39.711413 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.439453, 38.891033 ], [ 45.439453, 35.969115 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.774780, 37.169072 ], [ 44.225464, 37.970185 ], [ 44.423218, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.796753, 39.711413 ] ] ], [ [ [ 44.972534, 41.248903 ], [ 45.181274, 40.988192 ], [ 45.439453, 40.867834 ], [ 45.439453, 40.659806 ], [ 45.362549, 40.559721 ], [ 45.439453, 40.509623 ], [ 45.439453, 39.474365 ], [ 45.302124, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.796753, 39.711413 ], [ 44.401245, 40.002372 ], [ 43.659668, 40.254377 ], [ 43.753052, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 49.285723 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.082520, 48.421910 ], [ 22.500000, 48.217353 ], [ 22.642822, 48.147763 ], [ 22.714233, 47.879513 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.617273 ], [ 22.060547, 49.285723 ] ] ], [ [ [ 27.773438, 56.022948 ], [ 27.081299, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.773438, 56.022948 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.773438, 56.022948 ], [ 27.081299, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.773438, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.082520, 48.421910 ], [ 22.500000, 48.217353 ], [ 22.642822, 48.147763 ], [ 22.714233, 47.879513 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.617273 ], [ 22.060547, 48.410972 ], [ 22.082520, 48.421910 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.456055, 44.699898 ], [ 22.500000, 44.680372 ], [ 22.708740, 44.578730 ], [ 22.500000, 44.425934 ], [ 22.472534, 44.406316 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.640051 ], [ 22.988892, 43.209180 ], [ 22.604370, 42.896089 ], [ 22.500000, 42.698586 ], [ 22.434082, 42.577355 ], [ 22.500000, 42.508552 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.317939 ], [ 22.500000, 42.244785 ], [ 22.884521, 41.996243 ], [ 22.955933, 41.335576 ], [ 22.763672, 41.302571 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.060547, 41.149706 ], [ 22.060547, 44.520010 ], [ 22.142944, 44.476911 ], [ 22.456055, 44.699898 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.456055, 44.699898 ], [ 22.500000, 44.680372 ], [ 22.708740, 44.578730 ], [ 22.500000, 44.425934 ], [ 22.472534, 44.406316 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.640051 ], [ 22.988892, 43.209180 ], [ 22.604370, 42.896089 ], [ 22.500000, 42.698586 ], [ 22.434082, 42.577355 ], [ 22.500000, 42.508552 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.317939 ], [ 22.500000, 42.244785 ], [ 22.884521, 41.996243 ], [ 22.955933, 41.335576 ], [ 22.763672, 41.302571 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.060547, 41.149706 ], [ 22.060547, 44.520010 ], [ 22.142944, 44.476911 ], [ 22.456055, 44.699898 ] ] ], [ [ [ 22.060547, 49.285723 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.082520, 48.421910 ], [ 22.060547, 48.410972 ], [ 22.060547, 49.285723 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 56.022948 ], [ 45.439453, 42.508552 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.710696 ], [ 43.934326, 42.553080 ], [ 43.758545, 42.738944 ], [ 42.396240, 43.221190 ], [ 40.924072, 43.381098 ], [ 40.078125, 43.552529 ], [ 39.957275, 43.432977 ], [ 38.682861, 44.280604 ], [ 37.540283, 44.656932 ], [ 36.677856, 45.243953 ], [ 37.402954, 45.402307 ], [ 38.232422, 46.240652 ], [ 37.677612, 46.634351 ], [ 39.149780, 47.043926 ], [ 39.122314, 47.260592 ], [ 38.226929, 47.100045 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.824220 ], [ 39.737549, 47.897931 ], [ 39.896851, 48.231991 ], [ 39.677124, 48.781533 ], [ 40.083618, 49.307217 ], [ 40.072632, 49.600030 ], [ 38.594971, 49.926472 ], [ 38.012695, 49.915862 ], [ 37.397461, 50.384005 ], [ 36.628418, 50.226124 ], [ 35.359497, 50.576260 ], [ 35.381470, 50.774682 ], [ 35.024414, 51.206883 ], [ 34.227905, 51.255040 ], [ 34.145508, 51.566827 ], [ 34.392700, 51.767840 ], [ 33.755493, 52.335339 ], [ 32.717285, 52.237892 ], [ 32.415161, 52.288323 ], [ 32.162476, 52.059246 ], [ 31.788940, 52.099757 ], [ 31.541748, 52.739618 ], [ 31.305542, 53.074228 ], [ 31.497803, 53.166534 ], [ 32.305298, 53.130294 ], [ 32.695312, 53.350551 ], [ 32.409668, 53.618579 ], [ 31.734009, 53.794162 ], [ 31.794434, 53.972243 ], [ 31.387939, 54.156001 ], [ 30.756226, 54.810183 ], [ 30.975952, 55.081512 ], [ 30.877075, 55.550388 ], [ 29.948730, 55.776573 ], [ 29.899292, 55.788929 ], [ 29.844360, 55.776573 ], [ 29.371948, 55.668291 ], [ 29.311523, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ] ] ], [ [ [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.758179, 54.854478 ], [ 22.653809, 54.581613 ], [ 22.730713, 54.326135 ], [ 22.500000, 54.326135 ], [ 22.060547, 54.322931 ], [ 22.060547, 55.059495 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ], [ 29.311523, 55.776573 ], [ 29.371948, 55.668291 ], [ 29.844360, 55.776573 ], [ 29.899292, 55.788929 ], [ 29.948730, 55.776573 ], [ 30.877075, 55.550388 ], [ 30.975952, 55.081512 ], [ 30.756226, 54.810183 ], [ 31.387939, 54.156001 ], [ 31.794434, 53.972243 ], [ 31.734009, 53.794162 ], [ 32.409668, 53.618579 ], [ 32.695312, 53.350551 ], [ 32.305298, 53.130294 ], [ 31.497803, 53.166534 ], [ 31.305542, 53.074228 ], [ 31.541748, 52.739618 ], [ 31.788940, 52.099757 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.822198 ], [ 30.558472, 51.320314 ], [ 30.157471, 51.416338 ], [ 29.256592, 51.368351 ], [ 28.992920, 51.600960 ], [ 28.619385, 51.426614 ], [ 28.240356, 51.570241 ], [ 27.454834, 51.590723 ], [ 26.339722, 51.832383 ], [ 25.328979, 51.910391 ], [ 24.554443, 51.886664 ], [ 24.005127, 51.618017 ], [ 23.527222, 51.577070 ], [ 23.510742, 52.022078 ], [ 23.203125, 52.486125 ], [ 23.801880, 52.689702 ], [ 23.807373, 53.087426 ], [ 23.527222, 53.468431 ], [ 23.483276, 53.910810 ], [ 23.247070, 54.220285 ], [ 22.730713, 54.326135 ], [ 22.653809, 54.581613 ], [ 22.758179, 54.854478 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 27.081299, 55.776573 ], [ 27.773438, 56.022948 ], [ 28.789673, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ], [ 29.311523, 55.776573 ], [ 29.371948, 55.668291 ], [ 29.844360, 55.776573 ], [ 29.899292, 55.788929 ], [ 29.948730, 55.776573 ], [ 30.877075, 55.550388 ], [ 30.975952, 55.081512 ], [ 30.756226, 54.810183 ], [ 31.387939, 54.156001 ], [ 31.794434, 53.972243 ], [ 31.734009, 53.794162 ], [ 32.409668, 53.618579 ], [ 32.695312, 53.350551 ], [ 32.305298, 53.130294 ], [ 31.497803, 53.166534 ], [ 31.305542, 53.074228 ], [ 31.541748, 52.739618 ], [ 31.788940, 52.099757 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.822198 ], [ 30.558472, 51.320314 ], [ 30.157471, 51.416338 ], [ 29.256592, 51.368351 ], [ 28.992920, 51.600960 ], [ 28.619385, 51.426614 ], [ 28.240356, 51.570241 ], [ 27.454834, 51.590723 ], [ 26.339722, 51.832383 ], [ 25.328979, 51.910391 ], [ 24.554443, 51.886664 ], [ 24.005127, 51.618017 ], [ 23.527222, 51.577070 ], [ 24.032593, 50.705156 ], [ 23.922729, 50.422519 ], [ 23.428345, 50.306884 ], [ 22.521973, 49.475263 ], [ 22.780151, 49.027063 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.109838 ], [ 22.060547, 49.285723 ], [ 22.060547, 54.322931 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.326135 ], [ 22.653809, 54.581613 ], [ 22.758179, 54.854478 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 27.081299, 55.776573 ], [ 27.773438, 56.022948 ], [ 28.789673, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.619873, 48.221013 ], [ 26.927490, 48.122101 ], [ 27.235107, 47.824220 ], [ 27.553711, 47.405785 ], [ 28.130493, 46.811339 ], [ 28.163452, 46.369674 ], [ 28.053589, 45.943511 ], [ 28.234863, 45.487095 ], [ 28.679810, 45.301939 ], [ 29.152222, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.630127, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.810747 ], [ 27.246094, 44.174325 ], [ 26.065063, 43.941417 ], [ 25.570679, 43.687736 ], [ 24.104004, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.944946, 43.822638 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.406316 ], [ 22.500000, 44.425934 ], [ 22.708740, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.456055, 44.699898 ], [ 22.142944, 44.476911 ], [ 22.060547, 44.520010 ], [ 22.060547, 47.617273 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.714233, 47.879513 ], [ 23.142700, 48.096426 ], [ 23.763428, 47.986245 ], [ 24.406128, 47.982568 ], [ 24.867554, 47.735629 ], [ 25.208130, 47.890564 ], [ 25.949707, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ], [ [ [ 22.730713, 54.326135 ], [ 23.247070, 54.220285 ], [ 23.483276, 53.910810 ], [ 23.527222, 53.468431 ], [ 23.807373, 53.087426 ], [ 23.801880, 52.689702 ], [ 23.203125, 52.486125 ], [ 23.510742, 52.022078 ], [ 23.527222, 51.577070 ], [ 24.032593, 50.705156 ], [ 23.922729, 50.422519 ], [ 23.428345, 50.306884 ], [ 22.521973, 49.475263 ], [ 22.780151, 49.027063 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.109838 ], [ 22.060547, 49.285723 ], [ 22.060547, 54.322931 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.326135 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.927490, 48.122101 ], [ 27.235107, 47.824220 ], [ 27.553711, 47.405785 ], [ 28.130493, 46.811339 ], [ 28.163452, 46.369674 ], [ 28.053589, 45.943511 ], [ 28.234863, 45.487095 ], [ 28.679810, 45.301939 ], [ 29.152222, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.630127, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.810747 ], [ 27.246094, 44.174325 ], [ 26.065063, 43.941417 ], [ 25.570679, 43.687736 ], [ 24.104004, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.944946, 43.822638 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.406316 ], [ 22.500000, 44.425934 ], [ 22.708740, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.456055, 44.699898 ], [ 22.142944, 44.476911 ], [ 22.060547, 44.520010 ], [ 22.060547, 47.617273 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.714233, 47.879513 ], [ 23.142700, 48.096426 ], [ 23.763428, 47.986245 ], [ 24.406128, 47.982568 ], [ 24.867554, 47.735629 ], [ 25.208130, 47.890564 ], [ 25.949707, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.659302, 44.233393 ], [ 22.944946, 43.822638 ], [ 23.334961, 43.897892 ], [ 24.104004, 43.739352 ], [ 25.570679, 43.687736 ], [ 26.065063, 43.941417 ], [ 27.246094, 44.174325 ], [ 27.971191, 43.810747 ], [ 28.558960, 43.707594 ], [ 28.042603, 43.293200 ], [ 27.674561, 42.577355 ], [ 27.998657, 42.004407 ], [ 27.136230, 42.138968 ], [ 26.119995, 41.824549 ], [ 26.109009, 41.327326 ], [ 25.197144, 41.232380 ], [ 24.494019, 41.582580 ], [ 23.692017, 41.306698 ], [ 22.955933, 41.335576 ], [ 22.884521, 41.996243 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.317939 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.508552 ], [ 22.434082, 42.577355 ], [ 22.500000, 42.698586 ], [ 22.604370, 42.896089 ], [ 22.988892, 43.209180 ], [ 22.500000, 43.640051 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.755493, 52.335339 ], [ 34.392700, 51.767840 ], [ 34.145508, 51.566827 ], [ 34.227905, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.381470, 50.774682 ], [ 35.359497, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.397461, 50.384005 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.072632, 49.600030 ], [ 40.083618, 49.307217 ], [ 39.677124, 48.781533 ], [ 39.896851, 48.231991 ], [ 39.737549, 47.897931 ], [ 38.770752, 47.824220 ], [ 38.254395, 47.546872 ], [ 38.226929, 47.100045 ], [ 37.424927, 47.021461 ], [ 36.760254, 46.698435 ], [ 35.826416, 46.645665 ], [ 34.963989, 46.271037 ], [ 35.024414, 45.648608 ], [ 35.513306, 45.410020 ], [ 36.529541, 45.467836 ], [ 36.337280, 45.112300 ], [ 35.238647, 44.937585 ], [ 33.881836, 44.359206 ], [ 33.327026, 44.563077 ], [ 33.546753, 45.034715 ], [ 32.453613, 45.325117 ], [ 32.634888, 45.517895 ], [ 33.590698, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.744995, 46.331758 ], [ 31.679077, 46.705969 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.031296 ], [ 29.602661, 45.294211 ], [ 29.152222, 45.463983 ], [ 28.679810, 45.301939 ], [ 28.234863, 45.487095 ], [ 28.053589, 45.943511 ], [ 28.163452, 46.369674 ], [ 28.130493, 46.811339 ], [ 27.553711, 47.405785 ], [ 27.235107, 47.824220 ], [ 26.927490, 48.122101 ], [ 26.619873, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.949707, 47.986245 ], [ 25.208130, 47.890564 ], [ 24.867554, 47.735629 ], [ 24.406128, 47.982568 ], [ 23.763428, 47.986245 ], [ 23.142700, 48.096426 ], [ 22.714233, 47.879513 ], [ 22.642822, 48.147763 ], [ 22.500000, 48.217353 ], [ 22.082520, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.780151, 49.027063 ], [ 22.521973, 49.475263 ], [ 23.428345, 50.306884 ], [ 23.922729, 50.422519 ], [ 24.032593, 50.705156 ], [ 23.527222, 51.577070 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.886664 ], [ 25.328979, 51.910391 ], [ 26.339722, 51.832383 ], [ 27.454834, 51.590723 ], [ 28.240356, 51.570241 ], [ 28.619385, 51.426614 ], [ 28.992920, 51.600960 ], [ 29.256592, 51.368351 ], [ 30.157471, 51.416338 ], [ 30.558472, 51.320314 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.042355 ], [ 31.788940, 52.099757 ], [ 32.162476, 52.059246 ], [ 32.415161, 52.288323 ], [ 32.717285, 52.237892 ], [ 33.755493, 52.335339 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.526245, 48.465637 ], [ 28.262329, 48.155093 ], [ 28.674316, 48.118434 ], [ 29.124756, 47.846344 ], [ 29.053345, 47.509780 ], [ 29.415894, 47.346267 ], [ 29.558716, 46.927759 ], [ 29.910278, 46.672056 ], [ 29.838867, 46.524855 ], [ 30.025635, 46.422713 ], [ 29.761963, 46.350719 ], [ 29.174194, 46.377254 ], [ 29.075317, 46.517296 ], [ 28.866577, 46.437857 ], [ 28.932495, 46.259645 ], [ 28.663330, 45.939691 ], [ 28.487549, 45.594822 ], [ 28.234863, 45.487095 ], [ 28.053589, 45.943511 ], [ 28.163452, 46.369674 ], [ 28.130493, 46.811339 ], [ 27.553711, 47.405785 ], [ 27.235107, 47.824220 ], [ 26.927490, 48.122101 ], [ 26.619873, 48.221013 ], [ 26.861572, 48.367198 ], [ 27.526245, 48.465637 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.755493, 52.335339 ], [ 34.392700, 51.767840 ], [ 34.145508, 51.566827 ], [ 34.227905, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.381470, 50.774682 ], [ 35.359497, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.397461, 50.384005 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.072632, 49.600030 ], [ 40.083618, 49.307217 ], [ 39.677124, 48.781533 ], [ 39.896851, 48.231991 ], [ 39.737549, 47.897931 ], [ 38.770752, 47.824220 ], [ 38.254395, 47.546872 ], [ 38.226929, 47.100045 ], [ 37.424927, 47.021461 ], [ 36.760254, 46.698435 ], [ 35.826416, 46.645665 ], [ 34.963989, 46.271037 ], [ 35.024414, 45.648608 ], [ 35.513306, 45.410020 ], [ 36.529541, 45.467836 ], [ 36.337280, 45.112300 ], [ 35.238647, 44.937585 ], [ 33.881836, 44.359206 ], [ 33.327026, 44.563077 ], [ 33.546753, 45.034715 ], [ 32.453613, 45.325117 ], [ 32.634888, 45.517895 ], [ 33.590698, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.744995, 46.331758 ], [ 31.679077, 46.705969 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.031296 ], [ 29.602661, 45.294211 ], [ 29.152222, 45.463983 ], [ 28.679810, 45.301939 ], [ 28.234863, 45.487095 ], [ 28.487549, 45.594822 ], [ 28.663330, 45.939691 ], [ 28.932495, 46.259645 ], [ 28.866577, 46.437857 ], [ 29.075317, 46.517296 ], [ 29.174194, 46.377254 ], [ 29.761963, 46.350719 ], [ 30.025635, 46.422713 ], [ 29.838867, 46.524855 ], [ 29.910278, 46.672056 ], [ 29.558716, 46.927759 ], [ 29.415894, 47.346267 ], [ 29.053345, 47.509780 ], [ 29.124756, 47.846344 ], [ 28.674316, 48.118434 ], [ 28.262329, 48.155093 ], [ 27.526245, 48.465637 ], [ 26.861572, 48.367198 ], [ 26.619873, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.949707, 47.986245 ], [ 25.208130, 47.890564 ], [ 24.867554, 47.735629 ], [ 24.406128, 47.982568 ], [ 23.763428, 47.986245 ], [ 23.142700, 48.096426 ], [ 22.714233, 47.879513 ], [ 22.642822, 48.147763 ], [ 22.500000, 48.217353 ], [ 22.082520, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.780151, 49.027063 ], [ 22.521973, 49.475263 ], [ 23.428345, 50.306884 ], [ 23.922729, 50.422519 ], [ 24.032593, 50.705156 ], [ 23.527222, 51.577070 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.886664 ], [ 25.328979, 51.910391 ], [ 26.339722, 51.832383 ], [ 27.454834, 51.590723 ], [ 28.240356, 51.570241 ], [ 28.619385, 51.426614 ], [ 28.992920, 51.600960 ], [ 29.256592, 51.368351 ], [ 30.157471, 51.416338 ], [ 30.558472, 51.320314 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.042355 ], [ 31.788940, 52.099757 ], [ 32.162476, 52.059246 ], [ 32.415161, 52.288323 ], [ 32.717285, 52.237892 ], [ 33.755493, 52.335339 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.552529 ], [ 40.924072, 43.381098 ], [ 42.396240, 43.221190 ], [ 43.758545, 42.738944 ], [ 43.934326, 42.553080 ], [ 44.538574, 42.710696 ], [ 45.000000, 42.609706 ], [ 45.439453, 42.508552 ], [ 45.439453, 41.327326 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.265421 ], [ 44.972534, 41.248903 ], [ 43.582764, 41.091772 ], [ 42.621460, 41.582580 ], [ 41.555786, 41.533254 ], [ 41.704102, 41.963575 ], [ 41.456909, 42.646081 ], [ 40.874634, 43.012681 ], [ 40.325317, 43.129052 ], [ 39.957275, 43.432977 ], [ 40.078125, 43.552529 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.136230, 42.138968 ], [ 27.998657, 42.004407 ], [ 28.119507, 41.623655 ], [ 28.987427, 41.298444 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.125244, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.684804 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.955933, 41.335576 ], [ 23.692017, 41.306698 ], [ 24.494019, 41.582580 ], [ 25.197144, 41.232380 ], [ 26.109009, 41.327326 ], [ 26.119995, 41.824549 ], [ 27.136230, 42.138968 ] ] ], [ [ [ 35.167236, 42.041134 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.100052 ], [ 40.374756, 41.013066 ], [ 41.555786, 41.533254 ], [ 42.621460, 41.582580 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.736572, 40.647304 ], [ 28.921509, 40.647304 ], [ 29.108276, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.349243, 41.734429 ], [ 33.513794, 42.016652 ], [ 35.167236, 42.041134 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.119995, 41.824549 ], [ 26.603394, 41.562032 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.684804 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.955933, 41.335576 ], [ 23.692017, 41.306698 ], [ 24.494019, 41.582580 ], [ 25.197144, 41.232380 ], [ 26.109009, 41.327326 ], [ 26.119995, 41.824549 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.100052 ], [ 40.374756, 41.013066 ], [ 41.555786, 41.533254 ], [ 42.621460, 41.582580 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.736572, 40.647304 ], [ 28.921509, 40.647304 ], [ 29.108276, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.349243, 41.734429 ], [ 33.513794, 42.016652 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.136230, 42.138968 ], [ 27.998657, 42.004407 ], [ 28.119507, 41.623655 ], [ 28.987427, 41.298444 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.191162, 40.688969 ], [ 27.125244, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.603394, 41.562032 ], [ 26.119995, 41.824549 ], [ 27.136230, 42.138968 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 40.659806 ], [ 45.439453, 40.647304 ], [ 45.428467, 40.647304 ], [ 45.439453, 40.659806 ] ] ], [ [ [ 45.439453, 40.867834 ], [ 45.181274, 40.984045 ], [ 45.000000, 41.215854 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.265421 ], [ 45.219727, 41.409776 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.867834 ] ] ] ] } } , @@ -1465,19 +1593,25 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 25.164185, 57.970244 ], [ 25.603638, 57.847674 ], [ 26.466064, 57.474497 ], [ 27.290039, 57.474497 ], [ 27.773438, 57.243394 ], [ 27.855835, 56.758746 ], [ 28.179932, 56.166965 ], [ 27.081299, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.099620 ], [ 25.004883, 56.163906 ], [ 24.862061, 56.371335 ], [ 23.878784, 56.273861 ], [ 22.500000, 56.325675 ], [ 22.197876, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.586559 ], [ 22.500000, 57.745213 ], [ 22.527466, 57.754007 ], [ 23.318481, 57.004850 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.792089 ], [ 25.164185, 57.970244 ] ] ], [ [ [ 29.322510, 66.687784 ], [ 29.503784, 66.513260 ], [ 30.217896, 65.805028 ], [ 29.547729, 64.949139 ], [ 30.448608, 64.203987 ], [ 30.036621, 63.550999 ], [ 31.519775, 62.867674 ], [ 31.140747, 62.357256 ], [ 30.212402, 61.778319 ], [ 28.070068, 60.503230 ], [ 26.257324, 60.421988 ], [ 24.499512, 60.056616 ], [ 22.873535, 59.844815 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.555892 ], [ 22.439575, 63.816440 ], [ 22.500000, 63.845512 ], [ 24.730225, 64.902580 ], [ 25.400391, 65.111460 ], [ 25.296021, 65.533446 ], [ 23.906250, 66.006852 ], [ 22.500000, 65.775744 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.635623 ], [ 22.060547, 66.687784 ], [ 29.322510, 66.687784 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.560181, 66.687784 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.394761 ], [ 23.906250, 66.006852 ], [ 22.500000, 65.775744 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.635623 ], [ 22.060547, 66.687784 ], [ 23.560181, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.877075, 55.528631 ], [ 30.877075, 55.550388 ], [ 29.948730, 55.776573 ], [ 29.899292, 55.788929 ], [ 29.844360, 55.776573 ], [ 29.371948, 55.668291 ], [ 29.311523, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.179932, 56.166965 ], [ 27.855835, 56.758746 ], [ 27.773438, 57.243394 ], [ 27.290039, 57.474497 ], [ 27.718506, 57.792089 ], [ 27.421875, 58.722599 ], [ 28.130493, 59.299552 ], [ 27.982178, 59.475779 ], [ 29.119263, 60.026441 ], [ 28.070068, 60.503230 ], [ 30.212402, 61.778319 ], [ 31.140747, 62.357256 ], [ 31.519775, 62.867674 ], [ 30.036621, 63.550999 ], [ 30.448608, 64.203987 ], [ 29.547729, 64.949139 ], [ 30.217896, 65.805028 ], [ 29.503784, 66.513260 ], [ 29.322510, 66.687784 ], [ 33.502808, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 34.815674, 65.899410 ], [ 34.881592, 65.435435 ], [ 34.947510, 64.413549 ], [ 36.232910, 64.108204 ], [ 37.012939, 63.850354 ], [ 37.144775, 64.335150 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.141497 ], [ 39.594727, 64.520097 ], [ 40.435181, 64.764759 ], [ 39.765015, 65.497020 ], [ 42.094116, 66.476016 ], [ 43.016968, 66.418945 ], [ 43.950806, 66.069318 ], [ 44.324341, 66.513260 ], [ 44.472656, 66.687784 ], [ 45.439453, 66.687784 ] ] ], [ [ [ 40.907593, 66.687784 ], [ 40.534058, 66.513260 ], [ 40.017700, 66.264645 ], [ 38.386230, 65.997916 ], [ 35.375977, 66.513260 ], [ 34.343262, 66.687784 ], [ 40.907593, 66.687784 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.603638, 57.847674 ], [ 26.466064, 57.474497 ], [ 27.290039, 57.474497 ], [ 27.773438, 57.243394 ], [ 27.855835, 56.758746 ], [ 28.179932, 56.166965 ], [ 27.081299, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.099620 ], [ 25.004883, 56.163906 ], [ 24.862061, 56.371335 ], [ 23.878784, 56.273861 ], [ 22.500000, 56.325675 ], [ 22.197876, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.586559 ], [ 22.500000, 57.745213 ], [ 22.527466, 57.754007 ], [ 23.318481, 57.004850 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.792089 ], [ 25.164185, 57.970244 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.179932, 56.166965 ], [ 29.229126, 55.918430 ], [ 29.311523, 55.776573 ], [ 29.371948, 55.668291 ], [ 29.844360, 55.776573 ], [ 29.899292, 55.788929 ], [ 29.948730, 55.776573 ], [ 30.877075, 55.550388 ], [ 30.877075, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.081299, 55.776573 ], [ 27.103271, 55.782751 ], [ 28.179932, 56.166965 ] ] ], [ [ [ 25.867310, 59.609433 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.475779 ], [ 28.130493, 59.299552 ], [ 27.421875, 58.722599 ], [ 27.718506, 57.792089 ], [ 27.290039, 57.474497 ], [ 26.466064, 57.474497 ], [ 25.603638, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.792089 ], [ 24.428101, 58.381559 ], [ 24.060059, 58.257508 ], [ 23.428345, 58.611195 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.464617 ], [ 25.867310, 59.609433 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.322510, 66.687784 ], [ 29.503784, 66.513260 ], [ 30.217896, 65.805028 ], [ 29.547729, 64.949139 ], [ 30.448608, 64.203987 ], [ 30.036621, 63.550999 ], [ 31.519775, 62.867674 ], [ 31.140747, 62.357256 ], [ 30.212402, 61.778319 ], [ 28.070068, 60.503230 ], [ 26.257324, 60.421988 ], [ 24.499512, 60.056616 ], [ 22.873535, 59.844815 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.555892 ], [ 22.439575, 63.816440 ], [ 22.500000, 63.845512 ], [ 24.730225, 64.902580 ], [ 25.400391, 65.111460 ], [ 25.296021, 65.533446 ], [ 23.906250, 66.006852 ], [ 23.565674, 66.394761 ], [ 23.565674, 66.513260 ], [ 23.560181, 66.687784 ], [ 29.322510, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.862061, 56.371335 ], [ 25.004883, 56.163906 ], [ 25.532227, 56.099620 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.325675 ], [ 23.878784, 56.273861 ], [ 24.862061, 56.371335 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.877075, 55.528631 ], [ 30.877075, 55.550388 ], [ 29.948730, 55.776573 ], [ 29.899292, 55.788929 ], [ 29.844360, 55.776573 ], [ 29.371948, 55.668291 ], [ 29.311523, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.179932, 56.166965 ], [ 27.855835, 56.758746 ], [ 27.773438, 57.243394 ], [ 27.290039, 57.474497 ], [ 26.466064, 57.474497 ], [ 25.603638, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.792089 ], [ 24.428101, 58.381559 ], [ 24.060059, 58.257508 ], [ 23.428345, 58.611195 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.464617 ], [ 25.867310, 59.609433 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.475779 ], [ 29.119263, 60.026441 ], [ 28.070068, 60.503230 ], [ 30.212402, 61.778319 ], [ 31.140747, 62.357256 ], [ 31.519775, 62.867674 ], [ 30.036621, 63.550999 ], [ 30.448608, 64.203987 ], [ 29.547729, 64.949139 ], [ 30.217896, 65.805028 ], [ 29.503784, 66.513260 ], [ 29.322510, 66.687784 ], [ 33.502808, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 34.815674, 65.899410 ], [ 34.881592, 65.435435 ], [ 34.947510, 64.413549 ], [ 36.232910, 64.108204 ], [ 37.012939, 63.850354 ], [ 37.144775, 64.335150 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.141497 ], [ 39.594727, 64.520097 ], [ 40.435181, 64.764759 ], [ 39.765015, 65.497020 ], [ 42.094116, 66.476016 ], [ 43.016968, 66.418945 ], [ 43.950806, 66.069318 ], [ 44.324341, 66.513260 ], [ 44.472656, 66.687784 ], [ 45.439453, 66.687784 ] ] ], [ [ [ 40.907593, 66.687784 ], [ 40.534058, 66.513260 ], [ 40.017700, 66.264645 ], [ 38.386230, 65.997916 ], [ 35.375977, 66.513260 ], [ 34.343262, 66.687784 ], [ 40.907593, 66.687784 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.862061, 56.371335 ], [ 25.004883, 56.163906 ], [ 25.532227, 56.099620 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 27.081299, 55.776573 ], [ 28.179932, 56.166965 ], [ 29.229126, 55.918430 ], [ 29.311523, 55.776573 ], [ 29.371948, 55.668291 ], [ 29.844360, 55.776573 ], [ 29.899292, 55.788929 ], [ 29.948730, 55.776573 ], [ 30.877075, 55.550388 ], [ 30.877075, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.325675 ], [ 23.878784, 56.273861 ], [ 24.862061, 56.371335 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 71.184211 ], [ 31.294556, 70.453346 ], [ 30.009155, 70.185103 ], [ 31.102295, 69.557553 ], [ 29.399414, 69.156695 ], [ 28.591919, 69.064638 ], [ 28.449097, 68.364776 ], [ 29.976196, 67.696941 ], [ 29.053345, 66.942972 ], [ 29.498291, 66.513260 ], [ 29.679565, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 70.233460 ], [ 22.500000, 70.218593 ], [ 23.027344, 70.201855 ], [ 24.548950, 71.029464 ], [ 26.372681, 70.986560 ], [ 28.168945, 71.184211 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 68.580453 ], [ 22.500000, 68.391090 ], [ 23.538208, 67.935460 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.394761 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.580453 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 71.184211 ], [ 31.294556, 70.453346 ], [ 30.009155, 70.185103 ], [ 31.102295, 69.557553 ], [ 29.399414, 69.156695 ], [ 28.591919, 69.064638 ], [ 29.014893, 69.765657 ], [ 27.734985, 70.164610 ], [ 26.180420, 69.824471 ], [ 25.691528, 69.092100 ], [ 24.735718, 68.648556 ], [ 23.664551, 68.891231 ], [ 22.500000, 68.847665 ], [ 22.357178, 68.841718 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.233460 ], [ 22.500000, 70.218593 ], [ 23.027344, 70.201855 ], [ 24.548950, 71.029464 ], [ 26.372681, 70.986560 ], [ 28.168945, 71.184211 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.734985, 70.164610 ], [ 29.014893, 69.765657 ], [ 28.591919, 69.064638 ], [ 28.449097, 68.364776 ], [ 29.976196, 67.696941 ], [ 29.053345, 66.942972 ], [ 29.498291, 66.513260 ], [ 29.679565, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.394761 ], [ 23.565674, 66.513260 ], [ 23.538208, 67.935460 ], [ 22.500000, 68.391090 ], [ 22.060547, 68.580453 ], [ 22.060547, 68.984016 ], [ 22.357178, 68.841718 ], [ 22.500000, 68.847665 ], [ 23.664551, 68.891231 ], [ 24.735718, 68.648556 ], [ 25.691528, 69.092100 ], [ 26.180420, 69.824471 ], [ 27.734985, 70.164610 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.414185, 66.337505 ], [ 35.375977, 66.513260 ], [ 33.920288, 66.759418 ], [ 33.184204, 66.631198 ], [ 33.453369, 66.513260 ], [ 33.848877, 66.337505 ], [ 29.679565, 66.337505 ], [ 29.498291, 66.513260 ], [ 29.053345, 66.942972 ], [ 29.976196, 67.696941 ], [ 28.449097, 68.364776 ], [ 28.591919, 69.064638 ], [ 29.399414, 69.156695 ], [ 31.102295, 69.557553 ], [ 32.135010, 69.905780 ], [ 33.777466, 69.300853 ], [ 36.513062, 69.062675 ], [ 40.292358, 67.931333 ], [ 41.061401, 67.455976 ], [ 41.127319, 66.791909 ], [ 40.534058, 66.513260 ], [ 40.166016, 66.337505 ], [ 36.414185, 66.337505 ] ] ], [ [ [ 41.759033, 66.337505 ], [ 42.094116, 66.476016 ], [ 43.016968, 66.418945 ], [ 43.236694, 66.337505 ], [ 41.759033, 66.337505 ] ] ], [ [ [ 44.176025, 66.337505 ], [ 44.324341, 66.513260 ], [ 44.533081, 66.755082 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.949900 ], [ 43.456421, 68.570421 ], [ 45.000000, 68.393113 ], [ 45.439453, 68.342487 ], [ 45.439453, 66.337505 ], [ 44.176025, 66.337505 ] ] ] ] } } ] } @@ -1491,7 +1625,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.922974, 80.656850 ], [ 25.449829, 80.407473 ], [ 27.410889, 80.056153 ], [ 25.927734, 79.517660 ], [ 23.027344, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.454511 ], [ 22.060547, 80.403810 ], [ 22.500000, 80.533878 ], [ 22.922974, 80.656850 ] ] ], [ [ [ 45.439453, 80.645249 ], [ 45.439453, 80.581640 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.589727 ], [ 45.000000, 80.604086 ], [ 45.439453, 80.645249 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.922974, 80.656850 ], [ 25.449829, 80.407473 ], [ 27.410889, 80.056153 ], [ 25.927734, 79.517660 ], [ 23.027344, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.454511 ], [ 22.060547, 80.403810 ], [ 22.500000, 80.533878 ], [ 22.922974, 80.656850 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 80.645249 ], [ 45.439453, 80.581640 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.589727 ], [ 45.000000, 80.604086 ], [ 45.439453, 80.645249 ] ] ] } } ] } ] } , @@ -1543,31 +1679,39 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.003784, 18.999803 ], [ 53.107910, 16.651981 ], [ 52.388306, 16.383391 ], [ 52.190552, 15.934920 ], [ 52.168579, 15.596584 ], [ 51.174316, 15.172879 ], [ 49.575806, 14.705822 ], [ 48.680420, 14.003367 ], [ 48.240967, 13.944730 ], [ 47.938843, 14.003367 ], [ 47.356567, 13.592600 ], [ 46.719360, 13.400307 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.288065 ], [ 45.406494, 13.025966 ], [ 45.148315, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.699292 ], [ 44.560547, 12.715368 ], [ 44.560547, 17.418787 ], [ 45.219727, 17.434511 ], [ 45.401001, 17.329664 ], [ 46.367798, 17.230005 ], [ 46.752319, 17.282464 ], [ 46.999512, 16.946470 ], [ 47.466431, 17.114543 ], [ 48.186035, 18.166730 ], [ 49.119873, 18.615013 ], [ 52.003784, 18.999803 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.113892, 12.023203 ], [ 51.135864, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.047974, 10.639014 ], [ 50.833740, 10.277086 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.454956, 6.800990 ], [ 48.598022, 5.337114 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.565796, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.560547, 1.378651 ], [ 44.560547, 4.986977 ], [ 44.961548, 4.997922 ], [ 45.000000, 5.036227 ], [ 47.790527, 7.999397 ], [ 46.950073, 7.993957 ], [ 45.000000, 8.705929 ], [ 44.560547, 8.863362 ], [ 44.560547, 10.444598 ], [ 44.615479, 10.439196 ], [ 45.000000, 10.547221 ], [ 45.560303, 10.698394 ], [ 46.647949, 10.817120 ], [ 47.526855, 11.124507 ], [ 48.021240, 11.189180 ], [ 48.378296, 11.372339 ], [ 48.949585, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.576907 ], [ 50.262451, 11.679135 ], [ 50.734863, 12.023203 ], [ 51.113892, 12.023203 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.113892, 12.023203 ], [ 51.135864, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.047974, 10.639014 ], [ 50.833740, 10.277086 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.454956, 6.800990 ], [ 48.598022, 5.337114 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.565796, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.560547, 1.378651 ], [ 44.560547, 4.986977 ], [ 44.961548, 4.997922 ], [ 45.000000, 5.036227 ], [ 47.790527, 7.999397 ], [ 48.488159, 8.836223 ], [ 48.938599, 9.449062 ], [ 48.938599, 10.978943 ], [ 48.949585, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.576907 ], [ 50.262451, 11.679135 ], [ 50.734863, 12.023203 ], [ 51.113892, 12.023203 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.949585, 11.410033 ], [ 48.938599, 10.978943 ], [ 48.938599, 9.449062 ], [ 48.488159, 8.836223 ], [ 47.790527, 7.999397 ], [ 46.950073, 7.993957 ], [ 45.000000, 8.705929 ], [ 44.560547, 8.863362 ], [ 44.560547, 10.444598 ], [ 44.615479, 10.439196 ], [ 45.000000, 10.547221 ], [ 45.560303, 10.698394 ], [ 46.647949, 10.817120 ], [ 47.526855, 11.124507 ], [ 48.021240, 11.189180 ], [ 48.378296, 11.372339 ], [ 48.949585, 11.410033 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.769287, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 46.076660, 35.675147 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.746126 ], [ 45.417480, 33.966142 ], [ 46.109619, 33.017876 ], [ 47.334595, 32.468061 ], [ 47.850952, 31.709476 ], [ 47.686157, 30.982319 ], [ 48.004761, 30.982319 ], [ 48.015747, 30.453409 ], [ 48.570557, 29.926374 ], [ 47.977295, 29.973970 ], [ 47.301636, 30.059586 ], [ 46.571045, 29.099377 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.176145 ], [ 44.560547, 29.286399 ], [ 44.560547, 37.094622 ], [ 44.769287, 37.169072 ] ] ], [ [ [ 46.521606, 41.310824 ], [ 46.636963, 41.182788 ], [ 46.505127, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.521606, 41.310824 ] ] ], [ [ [ 47.922363, 41.310824 ], [ 47.817993, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.922363, 41.310824 ] ] ], [ [ [ 45.065918, 41.310824 ], [ 44.972534, 41.248903 ], [ 44.560547, 41.203456 ], [ 44.560547, 41.310824 ], [ 45.065918, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.922363, 41.310824 ], [ 47.817993, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.922363, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.521606, 41.310824 ], [ 46.636963, 41.182788 ], [ 46.505127, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.521606, 41.310824 ] ] ], [ [ [ 45.065918, 41.310824 ], [ 44.972534, 41.248903 ], [ 44.560547, 41.203456 ], [ 44.560547, 41.310824 ], [ 45.065918, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.769287, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 46.076660, 35.675147 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.746126 ], [ 45.417480, 33.966142 ], [ 46.109619, 33.017876 ], [ 47.334595, 32.468061 ], [ 47.850952, 31.709476 ], [ 47.686157, 30.982319 ], [ 48.004761, 30.982319 ], [ 48.015747, 30.453409 ], [ 48.570557, 29.926374 ], [ 47.977295, 29.973970 ], [ 47.301636, 30.059586 ], [ 46.571045, 29.099377 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.176145 ], [ 44.560547, 29.286399 ], [ 44.560547, 37.094622 ], [ 44.769287, 37.169072 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.560547, 39.614152 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.711413 ], [ 44.560547, 39.614152 ] ] ], [ [ [ 44.560547, 37.483577 ], [ 44.769287, 37.169072 ], [ 44.560547, 37.094622 ], [ 44.560547, 37.483577 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.560547, 29.286399 ], [ 44.708862, 29.176145 ], [ 45.000000, 29.166552 ], [ 46.571045, 29.099377 ], [ 47.460938, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.416748, 28.550751 ], [ 48.806763, 27.688392 ], [ 49.301147, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.686730 ], [ 50.213013, 26.273714 ], [ 50.114136, 25.943227 ], [ 50.240479, 25.606856 ], [ 50.526123, 25.324167 ], [ 50.663452, 25.000994 ], [ 50.811768, 24.751820 ], [ 51.113892, 24.557116 ], [ 51.388550, 24.627045 ], [ 51.580811, 24.241956 ], [ 51.619263, 24.011344 ], [ 52.003784, 22.998852 ], [ 55.008545, 22.497332 ], [ 55.211792, 22.705255 ], [ 55.667725, 21.999082 ], [ 55.651245, 21.943046 ], [ 55.513916, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.286399 ] ] ], [ [ [ 49.081421, 41.310824 ], [ 49.114380, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.086670, 40.526327 ], [ 50.394287, 40.254377 ], [ 49.570312, 40.174676 ], [ 49.394531, 39.398000 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.814031 ], [ 48.883667, 38.320111 ], [ 48.636475, 38.268376 ], [ 48.010254, 38.792627 ], [ 48.356323, 39.287546 ], [ 48.059692, 39.580290 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.461644 ], [ 46.038208, 39.626846 ], [ 45.609741, 39.897094 ], [ 45.895386, 40.216635 ], [ 45.362549, 40.559721 ], [ 45.560303, 40.809652 ], [ 45.192261, 40.979898 ], [ 45.181274, 40.988192 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.505127, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.521606, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.153842 ], [ 47.922363, 41.310824 ], [ 49.081421, 41.310824 ] ] ], [ [ [ 45.005493, 39.740986 ], [ 45.302124, 39.470125 ], [ 45.741577, 39.474365 ], [ 45.736084, 39.317300 ], [ 46.142578, 38.741231 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.334297 ], [ 44.791260, 39.711413 ], [ 45.000000, 39.740986 ], [ 45.005493, 39.740986 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.286399 ], [ 44.708862, 29.176145 ], [ 45.000000, 29.166552 ], [ 46.571045, 29.099377 ], [ 47.460938, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.416748, 28.550751 ], [ 48.806763, 27.688392 ], [ 49.301147, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.686730 ], [ 50.213013, 26.273714 ], [ 50.114136, 25.943227 ], [ 50.240479, 25.606856 ], [ 50.526123, 25.324167 ], [ 50.663452, 25.000994 ], [ 50.811768, 24.751820 ], [ 51.113892, 24.557116 ], [ 51.388550, 24.627045 ], [ 51.580811, 24.241956 ], [ 51.619263, 24.011344 ], [ 52.003784, 22.998852 ], [ 55.008545, 22.497332 ], [ 55.211792, 22.705255 ], [ 55.667725, 21.999082 ], [ 55.651245, 21.943046 ], [ 55.513916, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.286399 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.081421, 41.310824 ], [ 49.114380, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.086670, 40.526327 ], [ 50.394287, 40.254377 ], [ 49.570312, 40.174676 ], [ 49.394531, 39.398000 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.814031 ], [ 48.883667, 38.320111 ], [ 48.636475, 38.268376 ], [ 48.010254, 38.792627 ], [ 48.356323, 39.287546 ], [ 48.059692, 39.580290 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.461644 ], [ 46.038208, 39.626846 ], [ 45.609741, 39.897094 ], [ 45.895386, 40.216635 ], [ 45.362549, 40.559721 ], [ 45.560303, 40.809652 ], [ 45.192261, 40.979898 ], [ 45.181274, 40.988192 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.505127, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.521606, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.153842 ], [ 47.922363, 41.310824 ], [ 49.081421, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.302124, 39.470125 ], [ 45.741577, 39.474365 ], [ 45.736084, 39.317300 ], [ 46.142578, 38.741231 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.334297 ], [ 44.791260, 39.711413 ], [ 45.000000, 39.740986 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.137296 ], [ 66.714478, 41.170384 ], [ 66.681519, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 55.409546, 41.310824 ], [ 55.964355, 41.310824 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.298462, 41.310824 ], [ 60.468750, 41.219986 ], [ 61.550903, 41.265421 ], [ 61.885986, 41.087632 ], [ 61.935425, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.549683, 37.974515 ], [ 66.522217, 37.361426 ], [ 66.220093, 37.391982 ], [ 65.747681, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.747925, 37.112146 ], [ 64.550171, 36.310699 ], [ 63.984375, 36.004673 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.402484 ], [ 62.232056, 35.268047 ], [ 61.210327, 35.648369 ], [ 61.122437, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.332153, 38.026459 ], [ 56.618042, 38.121593 ], [ 56.184082, 37.935533 ], [ 55.513916, 37.961523 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.739624, 37.905199 ], [ 53.882446, 38.950865 ], [ 53.102417, 39.287546 ], [ 53.360596, 39.972911 ], [ 52.695923, 40.031821 ], [ 52.915649, 40.876141 ], [ 53.860474, 40.630630 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.409546, 41.310824 ], [ 55.458984, 41.261291 ], [ 55.969849, 41.310824 ], [ 60.298462, 41.310824 ] ] ], [ [ [ 44.972534, 41.248903 ], [ 45.181274, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.809652 ], [ 45.362549, 40.559721 ], [ 45.895386, 40.216635 ], [ 45.609741, 39.897094 ], [ 46.038208, 39.626846 ], [ 46.483154, 39.461644 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.736084, 39.317300 ], [ 45.741577, 39.474365 ], [ 45.302124, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.711413 ], [ 44.560547, 39.888665 ], [ 44.560547, 41.203456 ], [ 44.972534, 41.248903 ] ] ], [ [ [ 52.838745, 41.310824 ], [ 52.816772, 41.137296 ], [ 52.728882, 41.310824 ], [ 52.838745, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 51.289673, 26.111053 ], [ 51.591797, 25.799891 ], [ 51.608276, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.113892, 24.557116 ], [ 50.811768, 24.751820 ], [ 50.745850, 25.482951 ], [ 51.015015, 26.007424 ], [ 51.289673, 26.111053 ] ] ], [ [ [ 47.301636, 30.059586 ], [ 47.977295, 29.973970 ], [ 48.186035, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.550751 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.571045, 29.099377 ], [ 47.301636, 30.059586 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.977295, 29.973970 ], [ 48.186035, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.550751 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.571045, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.289673, 26.111053 ], [ 51.591797, 25.799891 ], [ 51.608276, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.113892, 24.557116 ], [ 50.811768, 24.751820 ], [ 50.745850, 25.482951 ], [ 51.015015, 26.007424 ], [ 51.289673, 26.111053 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.074219, 26.051848 ], [ 56.260986, 25.715786 ], [ 56.398315, 24.921313 ], [ 55.887451, 24.921313 ], [ 55.805054, 24.266997 ], [ 55.980835, 24.131715 ], [ 55.530396, 23.931034 ], [ 55.524902, 23.523700 ], [ 55.233765, 23.110049 ], [ 55.211792, 22.705255 ], [ 55.008545, 22.497332 ], [ 52.003784, 22.998852 ], [ 51.619263, 24.011344 ], [ 51.580811, 24.241956 ], [ 51.756592, 24.292034 ], [ 51.795044, 24.016362 ], [ 52.580566, 24.176825 ], [ 53.404541, 24.151766 ], [ 54.008789, 24.121689 ], [ 54.695435, 24.796708 ], [ 55.442505, 25.438314 ], [ 56.074219, 26.051848 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.398315, 24.921313 ], [ 56.848755, 24.241956 ], [ 57.403564, 23.875792 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.452515, 22.659641 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.584351, 21.943046 ], [ 59.342651, 21.534847 ], [ 55.513916, 21.534847 ], [ 55.651245, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.211792, 22.705255 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.530396, 23.931034 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.266997 ], [ 55.887451, 24.921313 ], [ 56.398315, 24.921313 ] ] ], [ [ [ 56.365356, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.392822, 25.893820 ], [ 56.260986, 25.715786 ], [ 56.074219, 26.051848 ], [ 56.365356, 26.396790 ] ] ], [ [ [ 66.681519, 41.310824 ], [ 66.714478, 41.170384 ], [ 67.939453, 41.137296 ], [ 67.939453, 39.567588 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.240763 ], [ 67.445068, 39.138582 ], [ 67.500000, 39.121537 ], [ 67.939453, 38.980763 ], [ 67.939453, 37.343959 ], [ 67.829590, 37.142803 ], [ 67.500000, 37.239075 ], [ 67.077026, 37.357059 ], [ 66.522217, 37.361426 ], [ 66.549683, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.935425, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.550903, 41.265421 ], [ 60.468750, 41.219986 ], [ 60.298462, 41.310824 ], [ 66.681519, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.606610 ], [ 67.939453, 23.775291 ], [ 67.500000, 23.926013 ], [ 67.445068, 23.946096 ], [ 67.148438, 24.661994 ], [ 66.373901, 25.423431 ], [ 64.533691, 25.234758 ], [ 62.907715, 25.214881 ], [ 61.501465, 25.075648 ], [ 61.875000, 26.239229 ], [ 63.319702, 26.755421 ], [ 63.237305, 27.215556 ], [ 62.759399, 27.376645 ], [ 62.731934, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.369629, 29.300771 ], [ 60.875244, 29.826348 ], [ 62.550659, 29.315141 ], [ 63.550415, 29.468297 ], [ 64.149170, 29.339087 ], [ 64.352417, 29.559123 ], [ 65.050049, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.384888, 30.737114 ], [ 66.939697, 31.302022 ], [ 67.686768, 31.302022 ], [ 67.796631, 31.583215 ], [ 67.939453, 31.606610 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.686157, 39.508279 ], [ 48.059692, 39.580290 ], [ 48.356323, 39.287546 ], [ 48.010254, 38.792627 ], [ 48.636475, 38.268376 ], [ 48.883667, 38.320111 ], [ 49.202271, 37.583766 ], [ 50.147095, 37.374523 ], [ 50.844727, 36.870832 ], [ 52.267456, 36.699255 ], [ 53.827515, 36.963060 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.391982 ], [ 55.513916, 37.961523 ], [ 56.184082, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.332153, 38.026459 ], [ 58.436279, 37.522797 ], [ 59.238281, 37.413800 ], [ 60.380859, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.648369 ], [ 62.232056, 35.268047 ], [ 62.984619, 35.402484 ], [ 63.193359, 35.857892 ], [ 63.984375, 36.004673 ], [ 64.550171, 36.310699 ], [ 64.747925, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.747681, 37.662081 ], [ 66.220093, 37.391982 ], [ 66.522217, 37.361426 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.142803 ], [ 67.939453, 37.099003 ], [ 67.939453, 31.606610 ], [ 67.796631, 31.583215 ], [ 67.686768, 31.302022 ], [ 66.939697, 31.302022 ], [ 66.384888, 30.737114 ], [ 66.346436, 29.888281 ], [ 65.050049, 29.473079 ], [ 64.352417, 29.559123 ], [ 64.149170, 29.339087 ], [ 63.550415, 29.468297 ], [ 62.550659, 29.315141 ], [ 60.875244, 29.826348 ], [ 61.369629, 29.300771 ], [ 61.770630, 28.700225 ], [ 62.731934, 28.260844 ], [ 62.759399, 27.376645 ], [ 63.237305, 27.215556 ], [ 63.319702, 26.755421 ], [ 61.875000, 26.239229 ], [ 61.501465, 25.075648 ], [ 59.617310, 25.378772 ], [ 58.529663, 25.606856 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 55.722656, 26.961246 ], [ 54.717407, 26.480407 ], [ 53.492432, 26.809364 ], [ 52.487183, 27.581329 ], [ 51.520386, 27.863360 ], [ 50.855713, 28.810987 ], [ 50.114136, 30.145127 ], [ 49.575806, 29.983487 ], [ 48.944092, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.982319 ], [ 47.686157, 30.982319 ], [ 47.850952, 31.709476 ], [ 47.334595, 32.468061 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.966142 ], [ 45.648193, 34.746126 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.675147 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.169072 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.614152 ], [ 44.791260, 39.711413 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.686157, 39.508279 ], [ 48.059692, 39.580290 ], [ 48.356323, 39.287546 ], [ 48.010254, 38.792627 ], [ 48.636475, 38.268376 ], [ 48.883667, 38.320111 ], [ 49.202271, 37.583766 ], [ 50.147095, 37.374523 ], [ 50.844727, 36.870832 ], [ 52.267456, 36.699255 ], [ 53.827515, 36.963060 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.391982 ], [ 55.513916, 37.961523 ], [ 56.184082, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.332153, 38.026459 ], [ 58.436279, 37.522797 ], [ 59.238281, 37.413800 ], [ 60.380859, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.648369 ], [ 62.232056, 35.268047 ], [ 62.984619, 35.402484 ], [ 63.193359, 35.857892 ], [ 63.984375, 36.004673 ], [ 64.550171, 36.310699 ], [ 64.747925, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.747681, 37.662081 ], [ 66.220093, 37.391982 ], [ 66.522217, 37.361426 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.142803 ], [ 67.939453, 37.099003 ], [ 67.939453, 23.775291 ], [ 67.500000, 23.926013 ], [ 67.445068, 23.946096 ], [ 67.148438, 24.661994 ], [ 66.373901, 25.423431 ], [ 64.533691, 25.234758 ], [ 62.907715, 25.214881 ], [ 61.501465, 25.075648 ], [ 59.617310, 25.378772 ], [ 58.529663, 25.606856 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 55.722656, 26.961246 ], [ 54.717407, 26.480407 ], [ 53.492432, 26.809364 ], [ 52.487183, 27.581329 ], [ 51.520386, 27.863360 ], [ 50.855713, 28.810987 ], [ 50.114136, 30.145127 ], [ 49.575806, 29.983487 ], [ 48.944092, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.982319 ], [ 47.686157, 30.982319 ], [ 47.850952, 31.709476 ], [ 47.334595, 32.468061 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.966142 ], [ 45.648193, 34.746126 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.675147 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.169072 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.614152 ], [ 44.791260, 39.711413 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 37.343959 ], [ 67.939453, 37.099003 ], [ 67.829590, 37.142803 ], [ 67.939453, 37.343959 ] ] ], [ [ [ 67.939453, 38.980763 ], [ 67.500000, 39.121537 ], [ 67.445068, 39.138582 ], [ 67.500000, 39.240763 ], [ 67.703247, 39.580290 ], [ 67.939453, 39.567588 ], [ 67.939453, 38.980763 ] ] ] ] } } ] } @@ -1575,7 +1719,11 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 56.022948 ], [ 67.939453, 54.936610 ], [ 67.500000, 54.870285 ], [ 65.670776, 54.600710 ], [ 65.181885, 54.354956 ], [ 61.435547, 54.004540 ], [ 60.979614, 53.664171 ], [ 61.699219, 52.978416 ], [ 60.743408, 52.719658 ], [ 60.930176, 52.445966 ], [ 59.968872, 51.961192 ], [ 61.589355, 51.272226 ], [ 61.336670, 50.798991 ], [ 59.935913, 50.840636 ], [ 59.644775, 50.544854 ], [ 58.364868, 51.062113 ], [ 56.777344, 51.041394 ], [ 55.717163, 50.621588 ], [ 54.536133, 51.024121 ], [ 52.327881, 51.716819 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.581543, 49.873398 ], [ 47.548828, 50.454007 ], [ 46.752319, 49.353756 ], [ 47.043457, 49.149377 ], [ 46.466675, 48.392738 ], [ 47.318115, 47.713458 ], [ 48.059692, 47.743017 ], [ 48.696899, 47.073863 ], [ 48.592529, 46.558860 ], [ 49.103394, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.675171, 45.640928 ], [ 46.680908, 44.610023 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.984558 ], [ 48.587036, 41.808173 ], [ 49.114380, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.564819, 40.647304 ], [ 45.428467, 40.647304 ], [ 45.560303, 40.809652 ], [ 45.192261, 40.979898 ], [ 45.181274, 40.984045 ], [ 45.000000, 41.215854 ], [ 44.972534, 41.248903 ], [ 44.560547, 41.203456 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 56.022948 ], [ 67.939453, 54.936610 ], [ 67.500000, 54.870285 ], [ 65.670776, 54.600710 ], [ 65.181885, 54.354956 ], [ 61.435547, 54.004540 ], [ 60.979614, 53.664171 ], [ 61.699219, 52.978416 ], [ 60.743408, 52.719658 ], [ 60.930176, 52.445966 ], [ 59.968872, 51.961192 ], [ 61.589355, 51.272226 ], [ 61.336670, 50.798991 ], [ 59.935913, 50.840636 ], [ 59.644775, 50.544854 ], [ 58.364868, 51.062113 ], [ 56.777344, 51.041394 ], [ 55.717163, 50.621588 ], [ 54.536133, 51.024121 ], [ 52.327881, 51.716819 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.581543, 49.873398 ], [ 47.548828, 50.454007 ], [ 46.752319, 49.353756 ], [ 47.043457, 49.149377 ], [ 46.466675, 48.392738 ], [ 47.318115, 47.713458 ], [ 48.059692, 47.743017 ], [ 48.696899, 47.073863 ], [ 48.592529, 46.558860 ], [ 49.103394, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.675171, 45.640928 ], [ 46.680908, 44.610023 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.984558 ], [ 48.587036, 41.808173 ], [ 47.988281, 41.405656 ], [ 47.817993, 41.149706 ], [ 47.373047, 41.219986 ], [ 46.686401, 41.824549 ], [ 46.406250, 41.861379 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.500453 ], [ 45.000000, 42.609706 ], [ 44.560547, 42.706660 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 42.706660 ], [ 45.000000, 42.609706 ], [ 45.472412, 42.500453 ], [ 45.780029, 42.090070 ], [ 46.406250, 41.861379 ], [ 46.148071, 41.722131 ], [ 46.636963, 41.178654 ], [ 46.505127, 41.062786 ], [ 45.961304, 41.124884 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.265421 ], [ 44.972534, 41.248903 ], [ 44.560547, 41.203456 ], [ 44.560547, 42.706660 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.686401, 41.824549 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.149706 ], [ 47.988281, 41.405656 ], [ 48.587036, 41.808173 ], [ 49.114380, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.564819, 40.647304 ], [ 45.428467, 40.647304 ], [ 45.560303, 40.809652 ], [ 45.192261, 40.979898 ], [ 45.181274, 40.984045 ], [ 45.000000, 41.215854 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.265421 ], [ 45.219727, 41.409776 ], [ 45.961304, 41.124884 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.148071, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.936610 ], [ 67.939453, 41.137296 ], [ 67.500000, 41.149706 ], [ 66.714478, 41.166249 ], [ 66.511230, 41.988077 ], [ 66.022339, 41.992160 ], [ 66.099243, 42.996612 ], [ 64.901733, 43.727445 ], [ 63.187866, 43.648001 ], [ 62.012329, 43.504737 ], [ 61.062012, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.931396, 44.995883 ], [ 55.969849, 41.306698 ], [ 55.458984, 41.257162 ], [ 54.755859, 42.041134 ], [ 54.080200, 42.322001 ], [ 52.943115, 42.114524 ], [ 52.503662, 41.783601 ], [ 52.448730, 42.024814 ], [ 52.695923, 42.443728 ], [ 52.503662, 42.791370 ], [ 51.344604, 43.133061 ], [ 50.894165, 44.028371 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.610023 ], [ 51.278687, 44.512176 ], [ 51.317139, 45.243953 ], [ 52.168579, 45.406164 ], [ 53.041992, 45.259422 ], [ 53.223267, 46.233053 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.803820 ], [ 51.190796, 47.047669 ], [ 50.037231, 46.607941 ], [ 49.103394, 46.399988 ], [ 48.592529, 46.558860 ], [ 48.696899, 47.073863 ], [ 48.059692, 47.743017 ], [ 47.318115, 47.713458 ], [ 46.466675, 48.392738 ], [ 47.043457, 49.149377 ], [ 46.752319, 49.353756 ], [ 47.548828, 50.454007 ], [ 48.581543, 49.873398 ], [ 48.702393, 50.604159 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.716819 ], [ 54.536133, 51.024121 ], [ 55.717163, 50.621588 ], [ 56.777344, 51.041394 ], [ 58.364868, 51.062113 ], [ 59.644775, 50.544854 ], [ 59.935913, 50.840636 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.272226 ], [ 59.968872, 51.961192 ], [ 60.930176, 52.445966 ], [ 60.743408, 52.719658 ], [ 61.699219, 52.978416 ], [ 60.979614, 53.664171 ], [ 61.435547, 54.004540 ], [ 65.181885, 54.354956 ], [ 65.670776, 54.600710 ], [ 67.500000, 54.870285 ], [ 67.939453, 54.936610 ] ] ] } } , @@ -1653,23 +1801,31 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.299561, 41.310824 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.525269, 40.426042 ], [ 75.470581, 40.559721 ], [ 74.778442, 40.363288 ], [ 73.822632, 39.892880 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.601456 ], [ 69.466553, 39.525230 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.015625, 40.241799 ], [ 70.603638, 40.216635 ], [ 70.460815, 40.497092 ], [ 70.669556, 40.959160 ], [ 69.329224, 40.726446 ], [ 69.010620, 40.086477 ], [ 68.538208, 39.533703 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.240763 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.899583 ], [ 68.395386, 38.156157 ], [ 67.829590, 37.142803 ], [ 67.500000, 37.239075 ], [ 67.060547, 37.357059 ], [ 67.060547, 41.310824 ], [ 78.299561, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.027100, 41.310824 ], [ 68.823853, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.263550, 40.659806 ], [ 68.076782, 40.979898 ], [ 67.988892, 41.137296 ], [ 67.060547, 41.157978 ], [ 67.060547, 41.310824 ], [ 69.027100, 41.310824 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.299561, 41.310824 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.525269, 40.426042 ], [ 75.470581, 40.559721 ], [ 74.778442, 40.363288 ], [ 73.822632, 39.892880 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.601456 ], [ 69.466553, 39.525230 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.015625, 40.241799 ], [ 71.773682, 40.145289 ], [ 73.059082, 40.863680 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.299561, 41.310824 ] ] ], [ [ [ 71.636353, 41.310824 ], [ 71.158447, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.636353, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.899048, 36.664013 ], [ 76.195679, 35.897950 ], [ 77.838135, 35.491984 ], [ 76.871338, 34.651285 ], [ 75.756226, 34.502030 ], [ 74.240112, 34.746126 ], [ 73.751221, 34.316218 ], [ 74.108276, 33.440609 ], [ 74.454346, 32.764181 ], [ 75.261841, 32.268555 ], [ 74.404907, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.454590, 29.973970 ], [ 72.822876, 28.960089 ], [ 71.779175, 27.911913 ], [ 70.620117, 27.989551 ], [ 69.515991, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.285034, 25.720735 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.845825, 24.357105 ], [ 68.175659, 23.689805 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.661994 ], [ 67.060547, 24.746831 ], [ 67.060547, 31.302022 ], [ 67.686768, 31.302022 ], [ 67.796631, 31.583215 ], [ 68.560181, 31.714149 ], [ 68.928223, 31.620644 ], [ 69.318237, 31.900878 ], [ 69.263306, 32.500496 ], [ 69.686279, 33.105347 ], [ 70.323486, 33.358062 ], [ 69.933472, 34.020795 ], [ 70.883789, 33.988918 ], [ 71.158447, 34.347971 ], [ 71.114502, 34.732584 ], [ 71.614380, 35.151354 ], [ 71.499023, 35.648369 ], [ 71.262817, 36.071302 ], [ 71.845093, 36.509636 ], [ 72.921753, 36.716871 ], [ 74.069824, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.059082, 40.863680 ], [ 71.773682, 40.145289 ], [ 71.015625, 40.241799 ], [ 70.603638, 40.216635 ], [ 70.460815, 40.497092 ], [ 70.669556, 40.959160 ], [ 69.329224, 40.726446 ], [ 69.010620, 40.086477 ], [ 68.538208, 39.533703 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.240763 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.899583 ], [ 68.395386, 38.156157 ], [ 67.829590, 37.142803 ], [ 67.500000, 37.239075 ], [ 67.060547, 37.357059 ], [ 67.060547, 41.157978 ], [ 67.988892, 41.137296 ], [ 68.076782, 40.979898 ], [ 68.263550, 40.659806 ], [ 68.631592, 40.668140 ], [ 68.823853, 40.979898 ], [ 69.027100, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.158447, 41.145570 ], [ 71.636353, 41.310824 ], [ 72.053833, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.669556, 40.959160 ], [ 70.460815, 40.497092 ], [ 70.603638, 40.216635 ], [ 71.015625, 40.241799 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.466553, 39.525230 ], [ 70.548706, 39.601456 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.932495, 38.505191 ], [ 74.256592, 38.603993 ], [ 74.866333, 38.376115 ], [ 74.833374, 37.987504 ], [ 74.981689, 37.418163 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.921753, 36.716871 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.071302 ], [ 71.499023, 35.648369 ], [ 71.614380, 35.151354 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.347971 ], [ 70.883789, 33.988918 ], [ 69.933472, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.500496 ], [ 69.318237, 31.900878 ], [ 68.928223, 31.620644 ], [ 68.560181, 31.714149 ], [ 67.796631, 31.583215 ], [ 67.686768, 31.302022 ], [ 67.060547, 31.302022 ], [ 67.060547, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.142803 ], [ 68.395386, 38.156157 ], [ 68.175659, 38.899583 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.240763 ], [ 67.703247, 39.580290 ], [ 68.538208, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.726446 ], [ 70.669556, 40.959160 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.483695 ], [ 71.350708, 38.259750 ], [ 71.240845, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.063944 ], [ 71.845093, 36.738884 ], [ 72.196655, 36.945502 ], [ 72.636108, 37.046409 ], [ 73.262329, 37.492294 ], [ 73.948975, 37.422526 ], [ 74.981689, 37.418163 ], [ 75.157471, 37.134045 ], [ 75.899048, 36.664013 ], [ 76.195679, 35.897950 ], [ 77.838135, 35.491984 ], [ 76.871338, 34.651285 ], [ 75.756226, 34.502030 ], [ 74.240112, 34.746126 ], [ 73.751221, 34.316218 ], [ 74.108276, 33.440609 ], [ 74.454346, 32.764181 ], [ 75.261841, 32.268555 ], [ 74.404907, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.454590, 29.973970 ], [ 72.822876, 28.960089 ], [ 71.779175, 27.911913 ], [ 70.620117, 27.989551 ], [ 69.515991, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.285034, 25.720735 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.845825, 24.357105 ], [ 68.175659, 23.689805 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.661994 ], [ 67.060547, 24.746831 ], [ 67.060547, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.142803 ], [ 68.137207, 37.020098 ], [ 68.862305, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.521484, 37.609880 ], [ 70.120239, 37.588119 ], [ 70.274048, 37.735969 ], [ 70.378418, 38.138877 ], [ 70.806885, 38.483695 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.669556, 40.959160 ], [ 70.460815, 40.497092 ], [ 70.603638, 40.216635 ], [ 71.015625, 40.241799 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.466553, 39.525230 ], [ 70.548706, 39.601456 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.932495, 38.505191 ], [ 74.256592, 38.603993 ], [ 74.866333, 38.376115 ], [ 74.833374, 37.987504 ], [ 74.981689, 37.418163 ], [ 73.948975, 37.422526 ], [ 73.262329, 37.492294 ], [ 72.636108, 37.046409 ], [ 72.196655, 36.945502 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.063944 ], [ 71.542969, 37.905199 ], [ 71.240845, 37.952861 ], [ 71.350708, 38.259750 ], [ 70.806885, 38.483695 ], [ 70.378418, 38.138877 ], [ 70.274048, 37.735969 ], [ 70.120239, 37.588119 ], [ 69.521484, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.862305, 37.343959 ], [ 68.137207, 37.020098 ], [ 67.829590, 37.142803 ], [ 68.395386, 38.156157 ], [ 68.175659, 38.899583 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.240763 ], [ 67.703247, 39.580290 ], [ 68.538208, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.726446 ], [ 70.669556, 40.959160 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.529541, 30.420256 ], [ 82.331543, 30.111870 ], [ 83.336792, 29.463514 ], [ 83.902588, 29.319931 ], [ 84.237671, 28.839862 ], [ 85.012207, 28.642389 ], [ 85.825195, 28.202768 ], [ 86.956787, 27.974998 ], [ 88.121338, 27.873073 ], [ 88.044434, 27.444916 ], [ 88.176270, 26.809364 ], [ 88.060913, 26.411551 ], [ 87.231445, 26.396790 ], [ 86.028442, 26.627818 ], [ 85.253906, 26.725987 ], [ 84.677124, 27.235095 ], [ 83.303833, 27.362011 ], [ 82.001953, 27.926474 ], [ 81.057129, 28.415560 ], [ 80.090332, 28.791732 ], [ 80.480347, 29.730992 ], [ 81.112061, 30.183122 ], [ 81.529541, 30.420256 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.838135, 35.491984 ], [ 78.914795, 34.320755 ], [ 78.810425, 33.504759 ], [ 79.211426, 32.994843 ], [ 79.178467, 32.481963 ], [ 78.458862, 32.616243 ], [ 78.739014, 31.512996 ], [ 79.722290, 30.883369 ], [ 81.112061, 30.183122 ], [ 80.480347, 29.730992 ], [ 80.090332, 28.791732 ], [ 81.057129, 28.415560 ], [ 82.001953, 27.926474 ], [ 83.303833, 27.362011 ], [ 84.677124, 27.235095 ], [ 85.253906, 26.725987 ], [ 86.028442, 26.627818 ], [ 87.231445, 26.396790 ], [ 88.060913, 26.411551 ], [ 88.176270, 26.809364 ], [ 88.044434, 27.444916 ], [ 88.121338, 27.873073 ], [ 88.731079, 28.086520 ], [ 88.813477, 27.298571 ], [ 89.478149, 28.042895 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.294707 ], [ 90.439453, 28.159190 ], [ 90.439453, 25.195000 ], [ 90.000000, 25.259601 ], [ 89.923096, 25.269536 ], [ 89.835205, 25.962984 ], [ 89.357300, 26.012361 ], [ 88.566284, 26.445984 ], [ 88.209229, 25.765267 ], [ 88.934326, 25.239727 ], [ 88.308105, 24.866503 ], [ 88.088379, 24.502145 ], [ 88.703613, 24.231938 ], [ 88.533325, 23.629427 ], [ 88.879395, 22.877440 ], [ 89.033203, 22.055096 ], [ 88.989258, 21.943046 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.703369 ], [ 87.203979, 21.534847 ], [ 69.763184, 21.534847 ], [ 69.323730, 21.943046 ], [ 69.164429, 22.085640 ], [ 69.647827, 22.451649 ], [ 69.351196, 22.842008 ], [ 68.175659, 23.689805 ], [ 68.845825, 24.357105 ], [ 71.043091, 24.357105 ], [ 70.845337, 25.214881 ], [ 70.285034, 25.720735 ], [ 70.169678, 26.490240 ], [ 69.515991, 26.941660 ], [ 70.620117, 27.989551 ], [ 71.779175, 27.911913 ], [ 72.822876, 28.960089 ], [ 73.454590, 29.973970 ], [ 74.421387, 30.977609 ], [ 74.404907, 31.690782 ], [ 75.261841, 32.268555 ], [ 74.454346, 32.764181 ], [ 74.108276, 33.440609 ], [ 73.751221, 34.316218 ], [ 74.240112, 34.746126 ], [ 75.756226, 34.502030 ], [ 76.871338, 34.651285 ], [ 77.838135, 35.491984 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.838135, 35.491984 ], [ 78.914795, 34.320755 ], [ 78.810425, 33.504759 ], [ 79.211426, 32.994843 ], [ 79.178467, 32.481963 ], [ 78.458862, 32.616243 ], [ 78.739014, 31.512996 ], [ 79.722290, 30.883369 ], [ 81.112061, 30.183122 ], [ 80.480347, 29.730992 ], [ 80.090332, 28.791732 ], [ 81.057129, 28.415560 ], [ 82.001953, 27.926474 ], [ 83.303833, 27.362011 ], [ 84.677124, 27.235095 ], [ 85.253906, 26.725987 ], [ 86.028442, 26.627818 ], [ 87.231445, 26.396790 ], [ 88.060913, 26.411551 ], [ 88.176270, 26.809364 ], [ 88.044434, 27.444916 ], [ 88.121338, 27.873073 ], [ 88.731079, 28.086520 ], [ 88.813477, 27.298571 ], [ 89.478149, 28.042895 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.294707 ], [ 90.439453, 28.159190 ], [ 90.439453, 22.131443 ], [ 90.274658, 21.836006 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.703369, 21.856401 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.963425 ], [ 89.033203, 22.055096 ], [ 88.989258, 21.943046 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.703369 ], [ 87.203979, 21.534847 ], [ 69.763184, 21.534847 ], [ 69.323730, 21.943046 ], [ 69.164429, 22.085640 ], [ 69.647827, 22.451649 ], [ 69.351196, 22.842008 ], [ 68.175659, 23.689805 ], [ 68.845825, 24.357105 ], [ 71.043091, 24.357105 ], [ 70.845337, 25.214881 ], [ 70.285034, 25.720735 ], [ 70.169678, 26.490240 ], [ 69.515991, 26.941660 ], [ 70.620117, 27.989551 ], [ 71.779175, 27.911913 ], [ 72.822876, 28.960089 ], [ 73.454590, 29.973970 ], [ 74.421387, 30.977609 ], [ 74.404907, 31.690782 ], [ 75.261841, 32.268555 ], [ 74.454346, 32.764181 ], [ 74.108276, 33.440609 ], [ 73.751221, 34.316218 ], [ 74.240112, 34.746126 ], [ 75.756226, 34.502030 ], [ 76.871338, 34.651285 ], [ 77.838135, 35.491984 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.566284, 26.445984 ], [ 89.357300, 26.012361 ], [ 89.835205, 25.962984 ], [ 89.923096, 25.269536 ], [ 90.000000, 25.259601 ], [ 90.439453, 25.195000 ], [ 90.439453, 22.131443 ], [ 90.274658, 21.836006 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.703369, 21.856401 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.963425 ], [ 89.033203, 22.055096 ], [ 88.879395, 22.877440 ], [ 88.533325, 23.629427 ], [ 88.703613, 24.231938 ], [ 88.088379, 24.502145 ], [ 88.308105, 24.866503 ], [ 88.934326, 25.239727 ], [ 88.209229, 25.765267 ], [ 88.566284, 26.445984 ] ] ], [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.159190 ], [ 90.016479, 28.294707 ], [ 90.000000, 28.289870 ], [ 89.478149, 28.042895 ], [ 88.813477, 27.298571 ], [ 88.731079, 28.086520 ], [ 88.121338, 27.873073 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.202768 ], [ 85.012207, 28.642389 ], [ 84.237671, 28.839862 ], [ 83.902588, 29.319931 ], [ 83.336792, 29.463514 ], [ 82.331543, 30.111870 ], [ 81.529541, 30.420256 ], [ 81.112061, 30.183122 ], [ 79.722290, 30.883369 ], [ 78.739014, 31.512996 ], [ 78.458862, 32.616243 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.994843 ], [ 78.810425, 33.504759 ], [ 78.914795, 34.320755 ], [ 77.838135, 35.491984 ], [ 76.195679, 35.897950 ], [ 75.899048, 36.664013 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.418163 ], [ 74.833374, 37.987504 ], [ 74.866333, 38.376115 ], [ 74.256592, 38.603993 ], [ 73.932495, 38.505191 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.822632, 39.892880 ], [ 74.778442, 40.363288 ], [ 75.470581, 40.559721 ], [ 76.525269, 40.426042 ], [ 76.854858, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.299561, 41.310824 ], [ 90.439453, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.159190 ], [ 90.016479, 28.294707 ], [ 90.000000, 28.289870 ], [ 89.478149, 28.042895 ], [ 88.813477, 27.298571 ], [ 88.731079, 28.086520 ], [ 88.121338, 27.873073 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.202768 ], [ 85.012207, 28.642389 ], [ 84.237671, 28.839862 ], [ 83.902588, 29.319931 ], [ 83.336792, 29.463514 ], [ 82.331543, 30.111870 ], [ 81.529541, 30.420256 ], [ 81.112061, 30.183122 ], [ 79.722290, 30.883369 ], [ 78.739014, 31.512996 ], [ 78.458862, 32.616243 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.994843 ], [ 78.810425, 33.504759 ], [ 78.914795, 34.320755 ], [ 77.838135, 35.491984 ], [ 76.195679, 35.897950 ], [ 75.899048, 36.664013 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.418163 ], [ 74.833374, 37.987504 ], [ 74.866333, 38.376115 ], [ 74.256592, 38.603993 ], [ 73.932495, 38.505191 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.822632, 39.892880 ], [ 74.778442, 40.363288 ], [ 75.470581, 40.559721 ], [ 76.525269, 40.426042 ], [ 76.854858, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.299561, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.208549 ], [ 90.000000, 50.011269 ], [ 88.807983, 49.468124 ], [ 87.753296, 49.296472 ], [ 87.363281, 49.214009 ], [ 86.599731, 48.549342 ], [ 85.770264, 48.454709 ], [ 85.720825, 47.450380 ], [ 85.166016, 46.998988 ], [ 83.182983, 47.327654 ], [ 82.457886, 45.537137 ], [ 81.947021, 45.317392 ], [ 79.969482, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.183716, 42.920229 ], [ 80.260620, 42.350425 ], [ 80.123291, 42.122673 ], [ 78.546753, 41.582580 ], [ 78.189697, 41.182788 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.657104, 40.647304 ], [ 72.663574, 40.647304 ], [ 73.059082, 40.863680 ], [ 72.800903, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.141433 ], [ 70.422363, 41.520917 ], [ 71.262817, 42.167475 ], [ 70.966187, 42.265114 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.823853, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.263550, 40.659806 ], [ 68.076782, 40.979898 ], [ 67.988892, 41.133159 ], [ 67.500000, 41.149706 ], [ 67.060547, 41.157978 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.208549 ], [ 90.000000, 50.011269 ], [ 88.807983, 49.468124 ], [ 87.753296, 49.296472 ], [ 87.363281, 49.214009 ], [ 86.830444, 49.827353 ], [ 85.545044, 49.692508 ], [ 85.116577, 50.117056 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.402982 ], [ 76.525269, 54.175297 ], [ 76.893311, 54.489187 ], [ 74.388428, 53.546836 ], [ 73.427124, 53.488046 ], [ 73.509521, 54.033586 ], [ 72.224121, 54.377358 ], [ 71.180420, 54.133478 ], [ 70.867310, 55.169456 ], [ 69.071045, 55.385352 ], [ 68.170166, 54.968155 ], [ 67.500000, 54.870285 ], [ 67.060547, 54.807017 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.071045, 55.385352 ], [ 70.867310, 55.169456 ], [ 71.180420, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.509521, 54.033586 ], [ 73.427124, 53.488046 ], [ 74.388428, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.525269, 54.175297 ], [ 77.799683, 53.402982 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.947021, 50.812877 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.116577, 50.117056 ], [ 85.545044, 49.692508 ], [ 86.830444, 49.827353 ], [ 87.363281, 49.214009 ], [ 86.599731, 48.549342 ], [ 85.770264, 48.454709 ], [ 85.720825, 47.450380 ], [ 85.166016, 46.998988 ], [ 83.182983, 47.327654 ], [ 82.457886, 45.537137 ], [ 81.947021, 45.317392 ], [ 79.969482, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.183716, 42.920229 ], [ 80.260620, 42.350425 ], [ 79.645386, 42.496403 ], [ 79.145508, 42.855833 ], [ 77.662354, 42.960443 ], [ 76.003418, 42.988576 ], [ 75.640869, 42.875964 ], [ 74.212646, 43.297198 ], [ 73.646851, 43.088949 ], [ 73.493042, 42.500453 ], [ 71.845093, 42.843751 ], [ 71.185913, 42.702623 ], [ 70.966187, 42.265114 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.823853, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.263550, 40.659806 ], [ 68.076782, 40.979898 ], [ 67.988892, 41.133159 ], [ 67.500000, 41.149706 ], [ 67.060547, 41.157978 ], [ 67.060547, 54.807017 ], [ 67.500000, 54.870285 ], [ 68.170166, 54.968155 ], [ 69.071045, 55.385352 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.297198 ], [ 75.640869, 42.875964 ], [ 76.003418, 42.988576 ], [ 77.662354, 42.960443 ], [ 79.145508, 42.855833 ], [ 79.645386, 42.496403 ], [ 80.260620, 42.350425 ], [ 80.123291, 42.122673 ], [ 78.546753, 41.582580 ], [ 78.189697, 41.182788 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.657104, 40.647304 ], [ 72.663574, 40.647304 ], [ 73.059082, 40.863680 ], [ 72.800903, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.141433 ], [ 70.422363, 41.520917 ], [ 71.262817, 42.167475 ], [ 70.966187, 42.265114 ], [ 71.185913, 42.702623 ], [ 71.845093, 42.843751 ], [ 73.493042, 42.500453 ], [ 73.646851, 43.088949 ], [ 74.212646, 43.297198 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.966187, 42.265114 ], [ 71.262817, 42.167475 ], [ 70.422363, 41.520917 ], [ 71.158447, 41.141433 ], [ 71.872559, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.059082, 40.863680 ], [ 72.663574, 40.647304 ], [ 70.526733, 40.647304 ], [ 70.669556, 40.959160 ], [ 69.329224, 40.726446 ], [ 69.290771, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.157978 ], [ 67.500000, 41.149706 ], [ 67.988892, 41.133159 ], [ 68.076782, 40.979898 ], [ 68.263550, 40.659806 ], [ 68.631592, 40.668140 ], [ 68.823853, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.966187, 42.265114 ] ] ] } } , @@ -1739,11 +1895,9 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.118408, 20.416717 ], [ 100.552368, 20.107523 ], [ 100.607300, 19.508020 ], [ 101.282959, 19.461413 ], [ 101.035767, 18.406655 ], [ 101.063232, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.414551, 17.931702 ], [ 103.002319, 17.957832 ], [ 103.200073, 18.307596 ], [ 103.958130, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.782104, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.721761 ], [ 105.221558, 14.269707 ], [ 104.282227, 14.413400 ], [ 102.991333, 14.221789 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.184334 ], [ 101.689453, 12.645698 ], [ 100.832520, 12.624258 ], [ 100.980835, 13.410994 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.157104, 9.963440 ], [ 99.223022, 9.237671 ], [ 99.876709, 9.205138 ], [ 100.283203, 8.293035 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.855532 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.815796, 5.807292 ], [ 101.156616, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.462693 ], [ 99.689941, 6.844624 ], [ 99.519653, 7.340675 ], [ 98.992310, 7.906912 ], [ 98.503418, 8.379997 ], [ 98.338623, 7.792636 ], [ 98.151855, 8.347388 ], [ 98.261719, 8.971897 ], [ 98.552856, 9.930977 ], [ 99.041748, 10.957371 ], [ 99.591064, 11.888853 ], [ 99.195557, 12.801088 ], [ 99.212036, 13.266680 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.195801, 15.119856 ], [ 98.536377, 15.305380 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.836090 ], [ 97.860718, 17.565484 ], [ 97.377319, 18.443136 ], [ 97.800293, 18.625425 ], [ 98.256226, 19.704658 ], [ 98.959351, 19.751194 ], [ 99.547119, 20.184879 ], [ 100.118408, 20.416717 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.605835, 22.350076 ], [ 106.567383, 22.217920 ], [ 106.891479, 21.943046 ], [ 107.045288, 21.810508 ], [ 108.050537, 21.550175 ], [ 106.715698, 20.694462 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.363892, 16.694079 ], [ 108.270264, 16.077486 ], [ 108.880005, 15.273587 ], [ 109.335938, 13.427024 ], [ 109.204102, 11.662996 ], [ 108.369141, 11.005904 ], [ 107.221069, 10.363555 ], [ 106.408081, 9.530332 ], [ 105.161133, 8.597316 ], [ 104.798584, 9.237671 ], [ 105.078735, 9.914744 ], [ 104.337158, 10.487812 ], [ 105.199585, 10.887254 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.566144 ], [ 107.490234, 12.334636 ], [ 107.616577, 13.533860 ], [ 107.385864, 14.200488 ], [ 106.495972, 14.567634 ], [ 106.045532, 13.880746 ], [ 105.221558, 14.269707 ], [ 105.545654, 14.721761 ], [ 105.589600, 15.570128 ], [ 104.782104, 16.441354 ], [ 104.716187, 17.429270 ], [ 103.958130, 18.239786 ], [ 103.200073, 18.307596 ], [ 103.002319, 17.957832 ], [ 102.414551, 17.931702 ], [ 102.112427, 18.109308 ], [ 101.063232, 17.513106 ], [ 101.035767, 18.406655 ], [ 101.282959, 19.461413 ], [ 100.607300, 19.508020 ], [ 100.552368, 20.107523 ], [ 100.118408, 20.416717 ], [ 100.332642, 20.786931 ], [ 101.184082, 21.437730 ], [ 101.271973, 21.202337 ], [ 101.804810, 21.171606 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.766357, 22.350076 ], [ 106.605835, 22.350076 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.567634 ], [ 107.385864, 14.200488 ], [ 107.616577, 13.533860 ], [ 107.490234, 12.334636 ], [ 105.809326, 11.566144 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.887254 ], [ 104.337158, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.151456 ], [ 102.584839, 12.184334 ], [ 102.348633, 13.394963 ], [ 102.991333, 14.221789 ], [ 104.282227, 14.413400 ], [ 105.221558, 14.269707 ], [ 106.045532, 13.880746 ], [ 106.495972, 14.567634 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.091151 ], [ 112.939453, 1.472006 ], [ 112.862549, 1.493971 ], [ 112.500000, 1.433566 ], [ 112.379150, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.977736 ], [ 110.516968, 0.769020 ], [ 109.830322, 1.334718 ], [ 109.665527, 2.004596 ], [ 110.396118, 1.664195 ], [ 111.170654, 1.850874 ], [ 111.373901, 2.696148 ], [ 111.796875, 2.882694 ], [ 112.500000, 3.014356 ], [ 112.939453, 3.091151 ] ] ], [ [ [ 106.605835, 22.350076 ], [ 106.567383, 22.217920 ], [ 106.891479, 21.943046 ], [ 107.045288, 21.810508 ], [ 108.050537, 21.550175 ], [ 106.715698, 20.694462 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.363892, 16.694079 ], [ 108.270264, 16.077486 ], [ 108.880005, 15.273587 ], [ 109.335938, 13.427024 ], [ 109.204102, 11.662996 ], [ 108.369141, 11.005904 ], [ 107.221069, 10.363555 ], [ 106.408081, 9.530332 ], [ 105.161133, 8.597316 ], [ 104.798584, 9.237671 ], [ 105.078735, 9.914744 ], [ 104.337158, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.151456 ], [ 102.584839, 12.184334 ], [ 102.348633, 13.394963 ], [ 102.991333, 14.221789 ], [ 104.282227, 14.413400 ], [ 105.221558, 14.269707 ], [ 105.545654, 14.721761 ], [ 105.589600, 15.570128 ], [ 104.782104, 16.441354 ], [ 104.716187, 17.429270 ], [ 103.958130, 18.239786 ], [ 103.200073, 18.307596 ], [ 103.002319, 17.957832 ], [ 102.414551, 17.931702 ], [ 102.112427, 18.109308 ], [ 101.063232, 17.513106 ], [ 101.035767, 18.406655 ], [ 101.282959, 19.461413 ], [ 100.607300, 19.508020 ], [ 100.552368, 20.107523 ], [ 100.118408, 20.416717 ], [ 100.332642, 20.786931 ], [ 101.184082, 21.437730 ], [ 101.271973, 21.202337 ], [ 101.804810, 21.171606 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.766357, 22.350076 ], [ 106.605835, 22.350076 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.156616, 5.692516 ], [ 101.815796, 5.807292 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.124170 ], [ 102.963867, 5.523043 ], [ 103.381348, 4.855628 ], [ 103.441772, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.430786, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.631249 ], [ 104.232788, 1.290784 ], [ 103.518677, 1.224882 ], [ 102.573853, 1.966167 ], [ 101.392822, 2.761991 ], [ 101.277466, 3.266661 ], [ 100.695190, 3.935500 ], [ 100.557861, 4.768047 ], [ 100.200806, 5.309766 ], [ 100.305176, 6.036773 ], [ 100.085449, 6.462693 ], [ 100.261230, 6.642783 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.091151 ], [ 112.939453, 1.472006 ], [ 112.862549, 1.493971 ], [ 112.500000, 1.433566 ], [ 112.379150, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.977736 ], [ 110.516968, 0.769020 ], [ 109.830322, 1.334718 ], [ 109.665527, 2.004596 ], [ 110.396118, 1.664195 ], [ 111.170654, 1.850874 ], [ 111.373901, 2.696148 ], [ 111.796875, 2.882694 ], [ 112.500000, 3.014356 ], [ 112.939453, 3.091151 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.156616, 5.692516 ], [ 101.815796, 5.807292 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.124170 ], [ 102.963867, 5.523043 ], [ 103.381348, 4.855628 ], [ 103.441772, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.430786, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.631249 ], [ 104.232788, 1.290784 ], [ 103.518677, 1.224882 ], [ 102.573853, 1.966167 ], [ 101.392822, 2.761991 ], [ 101.277466, 3.266661 ], [ 100.695190, 3.935500 ], [ 100.557861, 4.768047 ], [ 100.200806, 5.309766 ], [ 100.305176, 6.036773 ], [ 100.085449, 6.462693 ], [ 100.261230, 6.642783 ] ] ], [ [ [ 112.939453, 22.350076 ], [ 112.939453, 21.943046 ], [ 112.500000, 21.785006 ], [ 111.846313, 21.550175 ], [ 110.786133, 21.396819 ], [ 110.445557, 20.339476 ], [ 109.890747, 20.282809 ], [ 109.627075, 21.007599 ], [ 109.863281, 21.391705 ], [ 108.522949, 21.713576 ], [ 108.050537, 21.550175 ], [ 107.045288, 21.810508 ], [ 106.891479, 21.943046 ], [ 106.567383, 22.217920 ], [ 106.605835, 22.350076 ], [ 112.939453, 22.350076 ] ] ], [ [ [ 110.214844, 20.102365 ], [ 110.786133, 20.076570 ], [ 111.011353, 19.694314 ], [ 110.571899, 19.254108 ], [ 110.341187, 18.677471 ], [ 109.478760, 18.198044 ], [ 108.654785, 18.505657 ], [ 108.627319, 19.368159 ], [ 109.121704, 19.818390 ], [ 110.214844, 20.102365 ] ] ], [ [ [ 101.766357, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.804810, 21.171606 ], [ 101.271973, 21.202337 ], [ 101.184082, 21.437730 ], [ 101.151123, 21.846204 ], [ 100.420532, 21.555284 ], [ 99.986572, 21.744194 ], [ 99.591064, 21.943046 ], [ 99.244995, 22.121266 ], [ 99.321899, 22.350076 ], [ 101.766357, 22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.214844, 20.102365 ], [ 110.786133, 20.076570 ], [ 111.011353, 19.694314 ], [ 110.571899, 19.254108 ], [ 110.341187, 18.677471 ], [ 109.478760, 18.198044 ], [ 108.654785, 18.505657 ], [ 108.627319, 19.368159 ], [ 109.121704, 19.818390 ], [ 110.214844, 20.102365 ] ] ], [ [ [ 112.939453, 22.350076 ], [ 112.939453, 21.943046 ], [ 112.500000, 21.785006 ], [ 111.846313, 21.550175 ], [ 110.786133, 21.396819 ], [ 110.445557, 20.339476 ], [ 109.890747, 20.282809 ], [ 109.627075, 21.007599 ], [ 109.863281, 21.391705 ], [ 108.522949, 21.713576 ], [ 108.050537, 21.550175 ], [ 107.045288, 21.810508 ], [ 106.891479, 21.943046 ], [ 106.567383, 22.217920 ], [ 106.605835, 22.350076 ], [ 112.939453, 22.350076 ] ] ], [ [ [ 101.766357, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.804810, 21.171606 ], [ 101.271973, 21.202337 ], [ 101.184082, 21.437730 ], [ 101.151123, 21.846204 ], [ 100.420532, 21.555284 ], [ 99.986572, 21.744194 ], [ 99.591064, 21.943046 ], [ 99.244995, 22.121266 ], [ 99.321899, 22.350076 ], [ 101.766357, 22.350076 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.665527, 2.004596 ], [ 109.830322, 1.334718 ], [ 110.516968, 0.769020 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.900842 ], [ 112.379150, 1.406109 ], [ 112.500000, 1.433566 ], [ 112.862549, 1.493971 ], [ 112.939453, 1.472006 ], [ 112.939453, -0.439449 ], [ 109.088745, -0.439449 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.411984 ], [ 109.072266, 1.340210 ], [ 109.665527, 2.004596 ] ] ], [ [ [ 95.295410, 5.479300 ], [ 95.938110, 5.435554 ], [ 97.487183, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.146118, 3.590178 ], [ 99.695435, 3.173425 ], [ 100.640259, 2.097920 ], [ 101.661987, 2.081451 ], [ 102.496948, 1.395126 ], [ 103.079224, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.787842, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.459229, 0.000000 ], [ 99.266968, 0.181274 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.449205 ], [ 97.179565, 3.305050 ], [ 96.427002, 3.869735 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.479300 ] ] ] ] } } ] } @@ -1751,9 +1905,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.119385, 29.453948 ], [ 96.586304, 28.830238 ], [ 96.251221, 28.410728 ], [ 97.327881, 28.260844 ], [ 97.404785, 27.882784 ], [ 97.053223, 27.698120 ], [ 97.135620, 27.083582 ], [ 96.421509, 27.264396 ], [ 95.125122, 26.573790 ], [ 95.158081, 26.002487 ], [ 94.603271, 25.160201 ], [ 94.553833, 24.671978 ], [ 94.108887, 23.850674 ], [ 93.328857, 24.076559 ], [ 93.290405, 23.044353 ], [ 93.059692, 22.700188 ], [ 93.169556, 22.278931 ], [ 92.675171, 22.039822 ], [ 92.669678, 21.943046 ], [ 92.658691, 21.534847 ], [ 92.043457, 21.534847 ], [ 92.026978, 21.698265 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.182318 ], [ 91.417236, 22.766051 ], [ 90.499878, 22.801503 ], [ 90.587769, 22.390714 ], [ 90.335083, 21.943046 ], [ 90.274658, 21.836006 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.703369, 21.856401 ], [ 89.560547, 21.912471 ], [ 89.560547, 28.081674 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.294707 ], [ 90.730591, 28.062286 ], [ 91.257935, 28.038046 ], [ 91.697388, 27.771051 ], [ 92.504883, 27.897349 ], [ 93.416748, 28.637568 ], [ 94.564819, 29.276816 ], [ 95.405273, 29.032158 ], [ 96.119385, 29.453948 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.915649, 28.333395 ], [ 98.245239, 27.746746 ], [ 98.684692, 27.508271 ], [ 98.712158, 26.740705 ], [ 98.673706, 25.918526 ], [ 97.723389, 25.080624 ], [ 97.608032, 23.895883 ], [ 98.662720, 24.061512 ], [ 98.898926, 23.140360 ], [ 99.530640, 22.948277 ], [ 99.244995, 22.116177 ], [ 99.591064, 21.943046 ], [ 99.986572, 21.744194 ], [ 100.420532, 21.555284 ], [ 101.151123, 21.846204 ], [ 101.173096, 21.534847 ], [ 92.658691, 21.534847 ], [ 92.669678, 21.943046 ], [ 92.675171, 22.039822 ], [ 93.169556, 22.278931 ], [ 93.059692, 22.700188 ], [ 93.290405, 23.044353 ], [ 93.328857, 24.076559 ], [ 94.108887, 23.850674 ], [ 94.553833, 24.671978 ], [ 94.603271, 25.160201 ], [ 95.158081, 26.002487 ], [ 95.125122, 26.573790 ], [ 96.421509, 27.264396 ], [ 97.135620, 27.083582 ], [ 97.053223, 27.698120 ], [ 97.404785, 27.882784 ], [ 97.327881, 28.260844 ], [ 97.915649, 28.333395 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.119385, 29.453948 ], [ 96.586304, 28.830238 ], [ 96.251221, 28.410728 ], [ 97.327881, 28.260844 ], [ 97.915649, 28.333395 ], [ 98.245239, 27.746746 ], [ 98.684692, 27.508271 ], [ 98.712158, 26.740705 ], [ 98.673706, 25.918526 ], [ 97.723389, 25.080624 ], [ 97.608032, 23.895883 ], [ 98.662720, 24.061512 ], [ 98.898926, 23.140360 ], [ 99.530640, 22.948277 ], [ 99.244995, 22.116177 ], [ 99.591064, 21.943046 ], [ 99.986572, 21.744194 ], [ 100.420532, 21.555284 ], [ 101.151123, 21.846204 ], [ 101.173096, 21.534847 ], [ 92.043457, 21.534847 ], [ 92.026978, 21.698265 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.182318 ], [ 91.417236, 22.766051 ], [ 90.499878, 22.801503 ], [ 90.587769, 22.390714 ], [ 90.335083, 21.943046 ], [ 90.274658, 21.836006 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.703369, 21.856401 ], [ 89.560547, 21.912471 ], [ 89.560547, 28.081674 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.294707 ], [ 90.730591, 28.062286 ], [ 91.257935, 28.038046 ], [ 91.697388, 27.771051 ], [ 92.504883, 27.897349 ], [ 93.416748, 28.637568 ], [ 94.564819, 29.276816 ], [ 95.405273, 29.032158 ], [ 96.119385, 29.453948 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.331421, 23.352343 ], [ 105.814819, 22.973567 ], [ 106.726685, 22.791375 ], [ 106.567383, 22.217920 ], [ 106.891479, 21.943046 ], [ 107.045288, 21.810508 ], [ 108.050537, 21.550175 ], [ 108.023071, 21.534847 ], [ 101.755371, 21.534847 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.314508 ], [ 102.172852, 22.461802 ], [ 102.705688, 22.705255 ], [ 103.507690, 22.700188 ], [ 104.479980, 22.816694 ], [ 105.331421, 23.352343 ] ] ] } } , @@ -1763,7 +1915,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 56.022948 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 56.022948 ], [ 112.939453, 44.914249 ], [ 112.500000, 44.999767 ], [ 111.873779, 45.100669 ], [ 111.351929, 44.457310 ], [ 111.670532, 44.071800 ], [ 111.829834, 43.743321 ], [ 111.132202, 43.405047 ], [ 110.412598, 42.871938 ], [ 109.242554, 42.516651 ], [ 107.748413, 42.480200 ], [ 106.133423, 42.134895 ], [ 104.968872, 41.594905 ], [ 104.523926, 41.906365 ], [ 103.315430, 41.906365 ], [ 101.832275, 42.512602 ], [ 100.848999, 42.662241 ], [ 99.519653, 42.524748 ], [ 97.454224, 42.747012 ], [ 96.350098, 42.722804 ], [ 95.762329, 43.317185 ], [ 95.306396, 44.241264 ], [ 94.691162, 44.351350 ], [ 93.482666, 44.972571 ], [ 92.136841, 45.112300 ], [ 90.944824, 45.286482 ], [ 90.587769, 45.717686 ], [ 90.972290, 46.886477 ], [ 90.280151, 47.691277 ], [ 90.000000, 47.768868 ], [ 89.560547, 47.883197 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 47.883197 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.691277 ], [ 90.972290, 46.886477 ], [ 90.587769, 45.717686 ], [ 90.944824, 45.286482 ], [ 92.136841, 45.112300 ], [ 93.482666, 44.972571 ], [ 94.691162, 44.351350 ], [ 95.306396, 44.241264 ], [ 95.762329, 43.317185 ], [ 96.350098, 42.722804 ], [ 97.454224, 42.747012 ], [ 99.519653, 42.524748 ], [ 100.848999, 42.662241 ], [ 101.832275, 42.512602 ], [ 103.315430, 41.906365 ], [ 104.523926, 41.906365 ], [ 104.968872, 41.594905 ], [ 106.133423, 42.134895 ], [ 107.748413, 42.480200 ], [ 109.242554, 42.516651 ], [ 110.412598, 42.871938 ], [ 111.132202, 43.405047 ], [ 111.829834, 43.743321 ], [ 111.670532, 44.071800 ], [ 111.351929, 44.457310 ], [ 111.873779, 45.100669 ], [ 112.500000, 44.999767 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.883197 ] ] ] } } ] } ] } , @@ -1829,17 +1983,21 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.153442, -21.759500 ], [ 114.169922, -21.943046 ], [ 114.208374, -22.350076 ], [ 113.807373, -22.350076 ], [ 114.043579, -21.943046 ], [ 114.153442, -21.759500 ] ] ], [ [ [ 132.357788, -11.129897 ], [ 133.022461, -11.377724 ], [ 133.549805, -11.786703 ], [ 134.395752, -12.044693 ], [ 134.681396, -11.942601 ], [ 135.000000, -12.098410 ], [ 135.302124, -12.248760 ], [ 135.439453, -12.178965 ], [ 135.439453, -14.700508 ], [ 135.428467, -14.716448 ], [ 135.439453, -14.758947 ], [ 135.439453, -22.350076 ], [ 114.329224, -22.350076 ], [ 114.576416, -21.943046 ], [ 114.647827, -21.830907 ], [ 115.460815, -21.493964 ], [ 115.949707, -21.069123 ], [ 116.713257, -20.704739 ], [ 117.169189, -20.622502 ], [ 117.443848, -20.745840 ], [ 118.229370, -20.375527 ], [ 118.839111, -20.262197 ], [ 118.987427, -20.045611 ], [ 119.256592, -19.952696 ], [ 119.805908, -19.978511 ], [ 120.855103, -19.683970 ], [ 121.398926, -19.238550 ], [ 121.657104, -18.708692 ], [ 122.244873, -18.198044 ], [ 122.288818, -17.800996 ], [ 122.316284, -17.256236 ], [ 123.013916, -16.404470 ], [ 123.436890, -17.271973 ], [ 123.859863, -17.072539 ], [ 123.502808, -16.599346 ], [ 123.815918, -16.114431 ], [ 124.260864, -16.330683 ], [ 124.381714, -15.570128 ], [ 124.925537, -15.077428 ], [ 125.167236, -14.679254 ], [ 125.672607, -14.509144 ], [ 125.689087, -14.232438 ], [ 126.128540, -14.349548 ], [ 126.145020, -14.099285 ], [ 126.584473, -13.955392 ], [ 127.067871, -13.816744 ], [ 127.803955, -14.280354 ], [ 128.358765, -14.870469 ], [ 128.984985, -14.875778 ], [ 129.622192, -14.971320 ], [ 129.413452, -14.424040 ], [ 129.891357, -13.619295 ], [ 130.341797, -13.357554 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.538478 ], [ 131.226196, -12.184334 ], [ 131.737061, -12.302435 ], [ 132.577515, -12.114523 ], [ 132.561035, -11.603813 ], [ 131.824951, -11.275387 ], [ 132.357788, -11.129897 ] ] ], [ [ [ 126.958008, -8.276727 ], [ 127.337036, -8.396300 ], [ 126.968994, -8.667918 ], [ 125.925293, -9.107521 ], [ 125.090332, -9.394871 ], [ 124.436646, -10.141932 ], [ 123.579712, -10.363555 ], [ 123.458862, -10.239249 ], [ 123.552246, -9.903921 ], [ 123.980713, -9.291886 ], [ 124.969482, -8.895926 ], [ 125.090332, -8.657057 ], [ 125.947266, -8.434338 ], [ 126.644897, -8.401734 ], [ 126.958008, -8.276727 ] ] ], [ [ [ 119.899292, -9.362353 ], [ 120.426636, -9.665738 ], [ 120.778198, -9.968851 ], [ 120.717773, -10.239249 ], [ 120.294800, -10.260871 ], [ 118.970947, -9.557417 ], [ 119.899292, -9.362353 ] ] ], [ [ [ 117.899780, -8.097300 ], [ 118.262329, -8.363693 ], [ 118.877563, -8.282163 ], [ 119.130249, -8.705929 ], [ 117.971191, -8.906780 ], [ 117.279053, -9.042428 ], [ 116.740723, -9.037003 ], [ 117.086792, -8.456072 ], [ 117.636108, -8.450639 ], [ 117.899780, -8.097300 ] ] ], [ [ [ 122.904053, -8.097300 ], [ 122.755737, -8.651626 ], [ 121.256104, -8.933914 ], [ 119.926758, -8.809082 ], [ 119.921265, -8.445205 ], [ 120.717773, -8.238674 ], [ 121.343994, -8.537565 ], [ 122.008667, -8.461506 ], [ 122.904053, -8.097300 ] ] ], [ [ [ 112.060547, -6.800990 ], [ 112.500000, -6.915521 ], [ 112.615356, -6.948239 ], [ 112.977905, -7.596663 ], [ 114.483032, -7.776309 ], [ 115.708008, -8.374562 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.352823 ], [ 112.560425, -8.379997 ], [ 112.500000, -8.374562 ], [ 112.060547, -8.341953 ], [ 112.060547, -6.800990 ] ] ], [ [ [ 117.641602, 0.439449 ], [ 117.482300, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.520752, -0.807468 ], [ 116.559448, -1.488480 ], [ 116.537476, -2.487621 ], [ 116.147461, -4.012220 ], [ 116.004639, -3.655964 ], [ 114.867554, -4.110848 ], [ 114.472046, -3.496972 ], [ 113.757935, -3.442141 ], [ 113.258057, -3.118576 ], [ 112.500000, -3.348922 ], [ 112.066040, -3.480523 ], [ 112.060547, -3.469557 ], [ 112.060547, 0.439449 ], [ 117.641602, 0.439449 ] ] ], [ [ [ 134.500122, -5.446491 ], [ 134.730835, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.208984, -6.899161 ], [ 134.115601, -6.146016 ], [ 134.291382, -5.785432 ], [ 134.500122, -5.446491 ] ] ], [ [ [ 124.447632, 0.439449 ], [ 124.436646, 0.428463 ], [ 123.689575, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.058350, 0.384519 ], [ 120.184937, 0.236205 ], [ 120.140991, 0.000000 ], [ 120.042114, -0.521843 ], [ 120.937500, -1.411600 ], [ 121.475830, -0.955766 ], [ 123.343506, -0.615223 ], [ 123.261108, -1.076597 ], [ 122.821655, -0.933797 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.905776 ], [ 122.453613, -3.189879 ], [ 122.272339, -3.529869 ], [ 123.173218, -4.685930 ], [ 123.162231, -5.342583 ], [ 122.629395, -5.637853 ], [ 122.239380, -5.282418 ], [ 122.722778, -4.466904 ], [ 121.739502, -4.850154 ], [ 121.492310, -4.576425 ], [ 121.618652, -4.187551 ], [ 120.899048, -3.601142 ], [ 120.975952, -2.630301 ], [ 120.305786, -2.932069 ], [ 120.393677, -4.099890 ], [ 120.432129, -5.528511 ], [ 119.800415, -5.676117 ], [ 119.366455, -5.380867 ], [ 119.657593, -4.461427 ], [ 119.498291, -3.496972 ], [ 119.080811, -3.486006 ], [ 118.767700, -2.805885 ], [ 119.179688, -2.147324 ], [ 119.322510, -1.356685 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 119.970703, 0.439449 ], [ 124.447632, 0.439449 ] ] ], [ [ [ 132.379761, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.143066, -1.153487 ], [ 134.423218, -2.772965 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.494285 ], [ 135.164795, -4.466904 ], [ 135.000000, -4.362843 ], [ 133.665161, -3.540835 ], [ 133.368530, -4.028659 ], [ 132.984009, -4.116327 ], [ 132.758789, -3.749153 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.822344 ], [ 133.066406, -2.460181 ], [ 133.780518, -2.482133 ], [ 133.698120, -2.213195 ], [ 132.231445, -2.213195 ], [ 131.835938, -1.620267 ], [ 130.946045, -1.433566 ], [ 130.523071, -0.939289 ], [ 131.868896, -0.697615 ], [ 132.379761, -0.373533 ] ] ], [ [ [ 129.375000, -2.805885 ], [ 130.473633, -3.096636 ], [ 130.836182, -3.858774 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.365373 ], [ 128.589478, -3.431175 ], [ 127.902832, -3.392791 ], [ 128.139038, -2.844290 ], [ 129.375000, -2.805885 ] ] ], [ [ [ 127.001953, -3.129546 ], [ 127.249146, -3.458591 ], [ 126.875610, -3.793003 ], [ 126.183472, -3.606625 ], [ 125.991211, -3.178910 ], [ 127.001953, -3.129546 ] ] ], [ [ [ 128.649902, 0.439449 ], [ 128.638916, 0.258178 ], [ 128.122559, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.380737, -0.780005 ], [ 128.100586, -0.900842 ], [ 127.699585, -0.269164 ], [ 127.633667, 0.000000 ], [ 127.534790, 0.439449 ], [ 128.649902, 0.439449 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.969482, -8.895926 ], [ 125.073853, -9.091249 ], [ 125.090332, -9.394871 ], [ 124.436646, -10.141932 ], [ 123.579712, -10.363555 ], [ 123.458862, -10.239249 ], [ 123.552246, -9.903921 ], [ 123.980713, -9.291886 ], [ 124.969482, -8.895926 ] ] ], [ [ [ 119.899292, -9.362353 ], [ 120.426636, -9.665738 ], [ 120.778198, -9.968851 ], [ 120.717773, -10.239249 ], [ 120.294800, -10.260871 ], [ 118.970947, -9.557417 ], [ 119.899292, -9.362353 ] ] ], [ [ [ 117.899780, -8.097300 ], [ 118.262329, -8.363693 ], [ 118.877563, -8.282163 ], [ 119.130249, -8.705929 ], [ 117.971191, -8.906780 ], [ 117.279053, -9.042428 ], [ 116.740723, -9.037003 ], [ 117.086792, -8.456072 ], [ 117.636108, -8.450639 ], [ 117.899780, -8.097300 ] ] ], [ [ [ 122.904053, -8.097300 ], [ 122.755737, -8.651626 ], [ 121.256104, -8.933914 ], [ 119.926758, -8.809082 ], [ 119.921265, -8.445205 ], [ 120.717773, -8.238674 ], [ 121.343994, -8.537565 ], [ 122.008667, -8.461506 ], [ 122.904053, -8.097300 ] ] ], [ [ [ 112.060547, -6.800990 ], [ 112.500000, -6.915521 ], [ 112.615356, -6.948239 ], [ 112.977905, -7.596663 ], [ 114.483032, -7.776309 ], [ 115.708008, -8.374562 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.352823 ], [ 112.560425, -8.379997 ], [ 112.500000, -8.374562 ], [ 112.060547, -8.341953 ], [ 112.060547, -6.800990 ] ] ], [ [ [ 117.641602, 0.439449 ], [ 117.482300, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.520752, -0.807468 ], [ 116.559448, -1.488480 ], [ 116.537476, -2.487621 ], [ 116.147461, -4.012220 ], [ 116.004639, -3.655964 ], [ 114.867554, -4.110848 ], [ 114.472046, -3.496972 ], [ 113.757935, -3.442141 ], [ 113.258057, -3.118576 ], [ 112.500000, -3.348922 ], [ 112.066040, -3.480523 ], [ 112.060547, -3.469557 ], [ 112.060547, 0.439449 ], [ 117.641602, 0.439449 ] ] ], [ [ [ 134.500122, -5.446491 ], [ 134.730835, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.208984, -6.899161 ], [ 134.115601, -6.146016 ], [ 134.291382, -5.785432 ], [ 134.500122, -5.446491 ] ] ], [ [ [ 124.447632, 0.439449 ], [ 124.436646, 0.428463 ], [ 123.689575, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.058350, 0.384519 ], [ 120.184937, 0.236205 ], [ 120.140991, 0.000000 ], [ 120.042114, -0.521843 ], [ 120.937500, -1.411600 ], [ 121.475830, -0.955766 ], [ 123.343506, -0.615223 ], [ 123.261108, -1.076597 ], [ 122.821655, -0.933797 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.905776 ], [ 122.453613, -3.189879 ], [ 122.272339, -3.529869 ], [ 123.173218, -4.685930 ], [ 123.162231, -5.342583 ], [ 122.629395, -5.637853 ], [ 122.239380, -5.282418 ], [ 122.722778, -4.466904 ], [ 121.739502, -4.850154 ], [ 121.492310, -4.576425 ], [ 121.618652, -4.187551 ], [ 120.899048, -3.601142 ], [ 120.975952, -2.630301 ], [ 120.305786, -2.932069 ], [ 120.393677, -4.099890 ], [ 120.432129, -5.528511 ], [ 119.800415, -5.676117 ], [ 119.366455, -5.380867 ], [ 119.657593, -4.461427 ], [ 119.498291, -3.496972 ], [ 119.080811, -3.486006 ], [ 118.767700, -2.805885 ], [ 119.179688, -2.147324 ], [ 119.322510, -1.356685 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 119.970703, 0.439449 ], [ 124.447632, 0.439449 ] ] ], [ [ [ 132.379761, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.143066, -1.153487 ], [ 134.423218, -2.772965 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.494285 ], [ 135.164795, -4.466904 ], [ 135.000000, -4.362843 ], [ 133.665161, -3.540835 ], [ 133.368530, -4.028659 ], [ 132.984009, -4.116327 ], [ 132.758789, -3.749153 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.822344 ], [ 133.066406, -2.460181 ], [ 133.780518, -2.482133 ], [ 133.698120, -2.213195 ], [ 132.231445, -2.213195 ], [ 131.835938, -1.620267 ], [ 130.946045, -1.433566 ], [ 130.523071, -0.939289 ], [ 131.868896, -0.697615 ], [ 132.379761, -0.373533 ] ] ], [ [ [ 129.375000, -2.805885 ], [ 130.473633, -3.096636 ], [ 130.836182, -3.858774 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.365373 ], [ 128.589478, -3.431175 ], [ 127.902832, -3.392791 ], [ 128.139038, -2.844290 ], [ 129.375000, -2.805885 ] ] ], [ [ [ 127.001953, -3.129546 ], [ 127.249146, -3.458591 ], [ 126.875610, -3.793003 ], [ 126.183472, -3.606625 ], [ 125.991211, -3.178910 ], [ 127.001953, -3.129546 ] ] ], [ [ [ 128.649902, 0.439449 ], [ 128.638916, 0.258178 ], [ 128.122559, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.380737, -0.780005 ], [ 128.100586, -0.900842 ], [ 127.699585, -0.269164 ], [ 127.633667, 0.000000 ], [ 127.534790, 0.439449 ], [ 128.649902, 0.439449 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.153442, -21.759500 ], [ 114.169922, -21.943046 ], [ 114.208374, -22.350076 ], [ 113.807373, -22.350076 ], [ 114.043579, -21.943046 ], [ 114.153442, -21.759500 ] ] ], [ [ [ 132.357788, -11.129897 ], [ 133.022461, -11.377724 ], [ 133.549805, -11.786703 ], [ 134.395752, -12.044693 ], [ 134.681396, -11.942601 ], [ 135.000000, -12.098410 ], [ 135.302124, -12.248760 ], [ 135.439453, -12.178965 ], [ 135.439453, -14.700508 ], [ 135.428467, -14.716448 ], [ 135.439453, -14.758947 ], [ 135.439453, -22.350076 ], [ 114.329224, -22.350076 ], [ 114.576416, -21.943046 ], [ 114.647827, -21.830907 ], [ 115.460815, -21.493964 ], [ 115.949707, -21.069123 ], [ 116.713257, -20.704739 ], [ 117.169189, -20.622502 ], [ 117.443848, -20.745840 ], [ 118.229370, -20.375527 ], [ 118.839111, -20.262197 ], [ 118.987427, -20.045611 ], [ 119.256592, -19.952696 ], [ 119.805908, -19.978511 ], [ 120.855103, -19.683970 ], [ 121.398926, -19.238550 ], [ 121.657104, -18.708692 ], [ 122.244873, -18.198044 ], [ 122.288818, -17.800996 ], [ 122.316284, -17.256236 ], [ 123.013916, -16.404470 ], [ 123.436890, -17.271973 ], [ 123.859863, -17.072539 ], [ 123.502808, -16.599346 ], [ 123.815918, -16.114431 ], [ 124.260864, -16.330683 ], [ 124.381714, -15.570128 ], [ 124.925537, -15.077428 ], [ 125.167236, -14.679254 ], [ 125.672607, -14.509144 ], [ 125.689087, -14.232438 ], [ 126.128540, -14.349548 ], [ 126.145020, -14.099285 ], [ 126.584473, -13.955392 ], [ 127.067871, -13.816744 ], [ 127.803955, -14.280354 ], [ 128.358765, -14.870469 ], [ 128.984985, -14.875778 ], [ 129.622192, -14.971320 ], [ 129.413452, -14.424040 ], [ 129.891357, -13.619295 ], [ 130.341797, -13.357554 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.538478 ], [ 131.226196, -12.184334 ], [ 131.737061, -12.302435 ], [ 132.577515, -12.114523 ], [ 132.561035, -11.603813 ], [ 131.824951, -11.275387 ], [ 132.357788, -11.129897 ] ] ], [ [ [ 126.958008, -8.276727 ], [ 127.337036, -8.396300 ], [ 126.968994, -8.667918 ], [ 125.925293, -9.107521 ], [ 125.090332, -9.394871 ], [ 125.073853, -9.091249 ], [ 124.969482, -8.895926 ], [ 125.090332, -8.657057 ], [ 125.947266, -8.434338 ], [ 126.644897, -8.401734 ], [ 126.958008, -8.276727 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.130737, 6.926427 ], [ 117.647095, 6.419025 ], [ 117.691040, 5.987607 ], [ 118.350220, 5.708914 ], [ 119.185181, 5.408211 ], [ 119.113770, 5.014339 ], [ 118.443604, 4.965088 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.302591 ], [ 115.867310, 4.302591 ], [ 115.521240, 3.167940 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.213898 ], [ 112.862549, 1.493971 ], [ 112.500000, 1.433566 ], [ 112.379150, 1.406109 ], [ 112.060547, 1.131518 ], [ 112.060547, 2.932069 ], [ 112.500000, 3.014356 ], [ 112.994385, 3.102121 ], [ 113.713989, 3.891658 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.006740 ], [ 114.873047, 4.346411 ], [ 115.350952, 4.313546 ], [ 115.449829, 5.446491 ], [ 116.224365, 6.140555 ], [ 116.724243, 6.920974 ], [ 117.130737, 6.926427 ] ] ], [ [ [ 113.582153, 22.350076 ], [ 113.241577, 22.055096 ], [ 112.933960, 21.943046 ], [ 112.500000, 21.785006 ], [ 112.060547, 21.626793 ], [ 112.060547, 22.350076 ], [ 113.582153, 22.350076 ] ] ], [ [ [ 120.942993, 22.350076 ], [ 120.750732, 21.973614 ], [ 120.509033, 22.350076 ], [ 120.942993, 22.350076 ] ] ], [ [ [ 114.329224, 22.350076 ], [ 114.153442, 22.223005 ], [ 114.016113, 22.350076 ], [ 114.329224, 22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.130737, 6.926427 ], [ 117.647095, 6.419025 ], [ 117.691040, 5.987607 ], [ 118.350220, 5.708914 ], [ 119.185181, 5.408211 ], [ 119.113770, 5.014339 ], [ 118.443604, 4.965088 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.302591 ], [ 115.867310, 4.302591 ], [ 115.521240, 3.167940 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.213898 ], [ 112.862549, 1.493971 ], [ 112.500000, 1.433566 ], [ 112.379150, 1.406109 ], [ 112.060547, 1.131518 ], [ 112.060547, 2.932069 ], [ 112.500000, 3.014356 ], [ 112.994385, 3.102121 ], [ 113.713989, 3.891658 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.006740 ], [ 114.873047, 4.346411 ], [ 115.350952, 4.313546 ], [ 115.449829, 5.446491 ], [ 116.224365, 6.140555 ], [ 116.724243, 6.920974 ], [ 117.130737, 6.926427 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.582153, 22.350076 ], [ 113.241577, 22.055096 ], [ 112.933960, 21.943046 ], [ 112.500000, 21.785006 ], [ 112.060547, 21.626793 ], [ 112.060547, 22.350076 ], [ 113.582153, 22.350076 ] ] ], [ [ [ 120.942993, 22.350076 ], [ 120.750732, 21.973614 ], [ 120.509033, 22.350076 ], [ 120.942993, 22.350076 ] ] ], [ [ [ 114.329224, 22.350076 ], [ 114.153442, 22.223005 ], [ 114.016113, 22.350076 ], [ 114.329224, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.350952, 4.313546 ], [ 114.873047, 4.346411 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.603882, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.449829, 5.446491 ], [ 115.350952, 4.313546 ], [ 114.873047, 4.346411 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.603882, 4.899414 ], [ 115.449829, 5.446491 ] ] ], [ [ [ 120.717773, 18.505657 ], [ 121.322021, 18.500447 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.338257, 18.224134 ], [ 122.173462, 17.811456 ], [ 122.519531, 17.093542 ], [ 122.255859, 16.262141 ], [ 121.662598, 15.929638 ], [ 121.508789, 15.125159 ], [ 121.728516, 14.328260 ], [ 122.261353, 14.216464 ], [ 122.700806, 14.333582 ], [ 123.953247, 13.779402 ], [ 123.854370, 13.234598 ], [ 124.183960, 12.993853 ], [ 124.079590, 12.533115 ], [ 123.299561, 13.025966 ], [ 122.931519, 13.549881 ], [ 122.673340, 13.186468 ], [ 122.036133, 13.784737 ], [ 121.129761, 13.635310 ], [ 120.629883, 13.854081 ], [ 120.679321, 14.269707 ], [ 120.992432, 14.525098 ], [ 120.695801, 14.753635 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.921265, 15.406024 ], [ 119.882812, 16.362310 ], [ 120.289307, 16.035255 ], [ 120.393677, 17.596903 ], [ 120.717773, 18.505657 ] ] ], [ [ [ 125.414429, 9.757784 ], [ 126.221924, 9.286465 ], [ 126.375732, 8.412602 ], [ 126.480103, 7.749094 ], [ 126.540527, 7.188101 ], [ 126.199951, 6.271618 ], [ 125.831909, 7.291639 ], [ 125.364990, 6.784626 ], [ 125.683594, 6.047699 ], [ 125.397949, 5.577717 ], [ 124.222412, 6.162401 ], [ 123.942261, 6.882800 ], [ 124.244385, 7.357019 ], [ 123.612671, 7.830731 ], [ 123.299561, 7.416942 ], [ 122.827148, 7.455071 ], [ 122.085571, 6.899161 ], [ 121.920776, 7.188101 ], [ 122.316284, 8.032034 ], [ 122.942505, 8.314777 ], [ 123.486328, 8.689639 ], [ 123.843384, 8.238674 ], [ 124.601440, 8.510403 ], [ 124.766235, 8.961045 ], [ 125.474854, 8.988175 ], [ 125.414429, 9.757784 ] ] ], [ [ [ 124.266357, 12.554564 ], [ 125.227661, 12.533115 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.043647 ], [ 125.013428, 11.307708 ], [ 125.035400, 10.973550 ], [ 125.277100, 10.358151 ], [ 124.804688, 10.131117 ], [ 124.760742, 10.838701 ], [ 124.458618, 10.887254 ], [ 124.304810, 11.496174 ], [ 124.892578, 11.415418 ], [ 124.881592, 11.792080 ], [ 124.266357, 12.554564 ] ] ], [ [ [ 124.079590, 11.232286 ], [ 123.986206, 10.277086 ], [ 123.623657, 9.947209 ], [ 123.310547, 9.318990 ], [ 122.997437, 9.020728 ], [ 122.382202, 9.714472 ], [ 122.585449, 9.979671 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.881859 ], [ 123.502808, 10.941192 ], [ 123.338013, 10.266276 ], [ 124.079590, 11.232286 ] ] ], [ [ [ 119.514771, 11.366953 ], [ 119.690552, 10.552622 ], [ 119.031372, 10.001310 ], [ 118.504028, 9.313569 ], [ 117.174683, 8.363693 ], [ 117.663574, 9.064127 ], [ 118.388672, 9.681984 ], [ 118.987427, 10.374362 ], [ 119.514771, 11.366953 ] ] ], [ [ [ 121.882324, 11.888853 ], [ 122.486572, 11.582288 ], [ 123.123779, 11.582288 ], [ 123.101807, 11.162235 ], [ 122.640381, 10.741572 ], [ 122.003174, 10.439196 ], [ 121.970215, 10.903436 ], [ 122.041626, 11.415418 ], [ 121.882324, 11.888853 ] ] ], [ [ [ 120.322266, 13.464422 ], [ 121.179199, 13.427024 ], [ 121.530762, 13.068777 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.464422 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.379761, -0.373533 ], [ 132.648926, -0.439449 ], [ 132.269897, -0.439449 ], [ 132.379761, -0.373533 ] ] ], [ [ [ 125.068359, 1.642231 ], [ 125.244141, 1.417092 ], [ 124.436646, 0.428463 ], [ 123.689575, 0.236205 ], [ 122.722778, 0.428463 ], [ 121.058350, 0.379026 ], [ 120.184937, 0.236205 ], [ 120.140991, 0.000000 ], [ 120.058594, -0.439449 ], [ 119.630127, -0.439449 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.888062, 1.307260 ], [ 121.668091, 1.010690 ], [ 122.931519, 0.873379 ], [ 124.079590, 0.917319 ], [ 125.068359, 1.642231 ] ] ], [ [ [ 127.935791, 2.174771 ], [ 128.007202, 1.625758 ], [ 128.594971, 1.537901 ], [ 128.688354, 1.131518 ], [ 128.638916, 0.258178 ], [ 128.122559, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.117065, -0.439449 ], [ 127.809448, -0.439449 ], [ 127.699585, -0.269164 ], [ 127.633667, 0.000000 ], [ 127.402954, 1.010690 ], [ 127.600708, 1.806951 ], [ 127.935791, 2.174771 ] ] ], [ [ [ 117.015381, 4.302591 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.284551 ], [ 117.877808, 1.828913 ], [ 118.998413, 0.900842 ], [ 117.811890, 0.785498 ], [ 117.482300, 0.098877 ], [ 117.482300, 0.000000 ], [ 117.504272, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.131518 ], [ 112.379150, 1.406109 ], [ 112.500000, 1.433566 ], [ 112.862549, 1.493971 ], [ 113.807373, 1.213898 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.167940 ], [ 115.867310, 4.302591 ], [ 117.015381, 4.302591 ] ] ], [ [ [ 120.717773, 18.505657 ], [ 121.322021, 18.500447 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.338257, 18.224134 ], [ 122.173462, 17.811456 ], [ 122.519531, 17.093542 ], [ 122.255859, 16.262141 ], [ 121.662598, 15.929638 ], [ 121.508789, 15.125159 ], [ 121.728516, 14.328260 ], [ 122.261353, 14.216464 ], [ 122.700806, 14.333582 ], [ 123.953247, 13.779402 ], [ 123.854370, 13.234598 ], [ 124.183960, 12.993853 ], [ 124.079590, 12.533115 ], [ 123.299561, 13.025966 ], [ 122.931519, 13.549881 ], [ 122.673340, 13.186468 ], [ 122.036133, 13.784737 ], [ 121.129761, 13.635310 ], [ 120.629883, 13.854081 ], [ 120.679321, 14.269707 ], [ 120.992432, 14.525098 ], [ 120.695801, 14.753635 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.921265, 15.406024 ], [ 119.882812, 16.362310 ], [ 120.289307, 16.035255 ], [ 120.393677, 17.596903 ], [ 120.717773, 18.505657 ] ] ], [ [ [ 125.414429, 9.757784 ], [ 126.221924, 9.286465 ], [ 126.375732, 8.412602 ], [ 126.480103, 7.749094 ], [ 126.540527, 7.188101 ], [ 126.199951, 6.271618 ], [ 125.831909, 7.291639 ], [ 125.364990, 6.784626 ], [ 125.683594, 6.047699 ], [ 125.397949, 5.577717 ], [ 124.222412, 6.162401 ], [ 123.942261, 6.882800 ], [ 124.244385, 7.357019 ], [ 123.612671, 7.830731 ], [ 123.299561, 7.416942 ], [ 122.827148, 7.455071 ], [ 122.085571, 6.899161 ], [ 121.920776, 7.188101 ], [ 122.316284, 8.032034 ], [ 122.942505, 8.314777 ], [ 123.486328, 8.689639 ], [ 123.843384, 8.238674 ], [ 124.601440, 8.510403 ], [ 124.766235, 8.961045 ], [ 125.474854, 8.988175 ], [ 125.414429, 9.757784 ] ] ], [ [ [ 124.266357, 12.554564 ], [ 125.227661, 12.533115 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.043647 ], [ 125.013428, 11.307708 ], [ 125.035400, 10.973550 ], [ 125.277100, 10.358151 ], [ 124.804688, 10.131117 ], [ 124.760742, 10.838701 ], [ 124.458618, 10.887254 ], [ 124.304810, 11.496174 ], [ 124.892578, 11.415418 ], [ 124.881592, 11.792080 ], [ 124.266357, 12.554564 ] ] ], [ [ [ 124.079590, 11.232286 ], [ 123.986206, 10.277086 ], [ 123.623657, 9.947209 ], [ 123.310547, 9.318990 ], [ 122.997437, 9.020728 ], [ 122.382202, 9.714472 ], [ 122.585449, 9.979671 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.881859 ], [ 123.502808, 10.941192 ], [ 123.338013, 10.266276 ], [ 124.079590, 11.232286 ] ] ], [ [ [ 119.514771, 11.366953 ], [ 119.690552, 10.552622 ], [ 119.031372, 10.001310 ], [ 118.504028, 9.313569 ], [ 117.174683, 8.363693 ], [ 117.663574, 9.064127 ], [ 118.388672, 9.681984 ], [ 118.987427, 10.374362 ], [ 119.514771, 11.366953 ] ] ], [ [ [ 121.882324, 11.888853 ], [ 122.486572, 11.582288 ], [ 123.123779, 11.582288 ], [ 123.101807, 11.162235 ], [ 122.640381, 10.741572 ], [ 122.003174, 10.439196 ], [ 121.970215, 10.903436 ], [ 122.041626, 11.415418 ], [ 121.882324, 11.888853 ] ] ], [ [ [ 120.322266, 13.464422 ], [ 121.179199, 13.427024 ], [ 121.530762, 13.068777 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.464422 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.379761, -0.373533 ], [ 132.648926, -0.439449 ], [ 132.269897, -0.439449 ], [ 132.379761, -0.373533 ] ] ], [ [ [ 125.068359, 1.642231 ], [ 125.244141, 1.417092 ], [ 124.436646, 0.428463 ], [ 123.689575, 0.236205 ], [ 122.722778, 0.428463 ], [ 121.058350, 0.379026 ], [ 120.184937, 0.236205 ], [ 120.140991, 0.000000 ], [ 120.058594, -0.439449 ], [ 119.630127, -0.439449 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.888062, 1.307260 ], [ 121.668091, 1.010690 ], [ 122.931519, 0.873379 ], [ 124.079590, 0.917319 ], [ 125.068359, 1.642231 ] ] ], [ [ [ 127.935791, 2.174771 ], [ 128.007202, 1.625758 ], [ 128.594971, 1.537901 ], [ 128.688354, 1.131518 ], [ 128.638916, 0.258178 ], [ 128.122559, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.117065, -0.439449 ], [ 127.809448, -0.439449 ], [ 127.699585, -0.269164 ], [ 127.633667, 0.000000 ], [ 127.402954, 1.010690 ], [ 127.600708, 1.806951 ], [ 127.935791, 2.174771 ] ] ], [ [ [ 117.015381, 4.302591 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.284551 ], [ 117.877808, 1.828913 ], [ 118.998413, 0.900842 ], [ 117.811890, 0.785498 ], [ 117.482300, 0.098877 ], [ 117.482300, 0.000000 ], [ 117.504272, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.131518 ], [ 112.379150, 1.406109 ], [ 112.500000, 1.433566 ], [ 112.862549, 1.493971 ], [ 113.807373, 1.213898 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.167940 ], [ 115.867310, 4.302591 ], [ 117.015381, 4.302591 ] ] ] ] } } ] } ] } , @@ -1855,9 +2013,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 56.022948 ], [ 135.439453, 54.927142 ], [ 135.126343, 54.727792 ], [ 135.439453, 54.705582 ], [ 135.439453, 43.917680 ], [ 135.000000, 43.520672 ], [ 134.868164, 43.397065 ], [ 133.538818, 42.811522 ], [ 132.907104, 42.799431 ], [ 132.280884, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.220382 ], [ 130.643921, 42.395066 ], [ 129.995728, 42.984558 ], [ 129.600220, 42.423457 ], [ 128.051147, 41.992160 ], [ 128.210449, 41.467428 ], [ 127.342529, 41.500350 ], [ 126.870117, 41.816361 ], [ 126.183472, 41.108330 ], [ 125.919800, 40.979898 ], [ 125.238647, 40.647304 ], [ 121.942749, 40.647304 ], [ 121.640625, 40.946714 ], [ 120.904541, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 56.022948 ], [ 135.439453, 54.927142 ], [ 135.126343, 54.727792 ], [ 135.439453, 54.705582 ], [ 135.439453, 43.917680 ], [ 135.000000, 43.520672 ], [ 134.868164, 43.397065 ], [ 133.538818, 42.811522 ], [ 132.907104, 42.799431 ], [ 132.280884, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.220382 ], [ 130.643921, 42.395066 ], [ 130.632935, 42.900113 ], [ 131.143799, 42.928274 ], [ 131.292114, 44.111254 ], [ 131.028442, 44.968684 ], [ 131.885376, 45.321254 ], [ 133.099365, 45.143305 ], [ 133.769531, 46.115134 ], [ 134.115601, 47.212106 ], [ 134.500122, 47.576526 ], [ 135.000000, 48.432845 ], [ 135.027466, 48.476563 ], [ 135.000000, 48.472921 ], [ 133.374023, 48.180739 ], [ 132.506104, 47.787326 ], [ 130.989990, 47.791016 ], [ 130.583496, 48.727209 ], [ 129.396973, 49.439557 ], [ 127.661133, 49.759978 ], [ 127.287598, 50.739932 ], [ 126.941528, 51.354631 ], [ 126.567993, 51.784834 ], [ 125.947266, 52.792797 ], [ 125.068359, 53.159947 ], [ 123.574219, 53.458620 ], [ 122.244873, 53.432447 ], [ 121.003418, 53.252069 ], [ 120.179443, 52.752919 ], [ 120.728760, 52.516221 ], [ 120.739746, 51.964577 ], [ 120.184937, 51.641885 ], [ 119.278564, 50.583237 ], [ 119.289551, 50.141706 ], [ 117.883301, 49.510944 ], [ 116.680298, 49.887557 ], [ 116.191406, 49.135003 ], [ 115.488281, 48.133101 ], [ 115.746460, 47.724545 ], [ 116.312256, 47.853717 ], [ 117.295532, 47.694974 ], [ 118.064575, 48.067068 ], [ 118.866577, 47.746711 ], [ 119.772949, 47.047669 ], [ 119.663086, 46.690899 ], [ 118.877563, 46.803820 ], [ 117.421875, 46.672056 ], [ 116.718750, 46.388622 ], [ 115.988159, 45.725356 ], [ 114.461060, 45.340563 ], [ 113.466797, 44.809122 ], [ 112.500000, 44.999767 ], [ 112.434082, 45.011419 ], [ 112.060547, 45.073521 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.995728, 42.984558 ], [ 130.643921, 42.395066 ], [ 130.781250, 42.220382 ], [ 130.402222, 42.277309 ], [ 129.968262, 41.939063 ], [ 129.666138, 41.599013 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.880295 ], [ 129.188232, 40.659806 ], [ 129.171753, 40.647304 ], [ 125.238647, 40.647304 ], [ 125.919800, 40.979898 ], [ 126.183472, 41.108330 ], [ 126.870117, 41.816361 ], [ 127.342529, 41.500350 ], [ 128.210449, 41.467428 ], [ 128.051147, 41.992160 ], [ 129.600220, 42.423457 ], [ 129.995728, 42.984558 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.574219, 53.458620 ], [ 125.068359, 53.159947 ], [ 125.947266, 52.792797 ], [ 126.567993, 51.784834 ], [ 126.941528, 51.354631 ], [ 127.287598, 50.739932 ], [ 127.661133, 49.759978 ], [ 129.396973, 49.439557 ], [ 130.583496, 48.727209 ], [ 130.989990, 47.791016 ], [ 132.506104, 47.787326 ], [ 133.374023, 48.180739 ], [ 135.000000, 48.472921 ], [ 135.027466, 48.476563 ], [ 135.000000, 48.432845 ], [ 134.500122, 47.576526 ], [ 134.115601, 47.212106 ], [ 133.769531, 46.115134 ], [ 133.099365, 45.143305 ], [ 131.885376, 45.321254 ], [ 131.028442, 44.968684 ], [ 131.292114, 44.111254 ], [ 131.143799, 42.928274 ], [ 130.632935, 42.900113 ], [ 130.643921, 42.395066 ], [ 130.781250, 42.220382 ], [ 130.402222, 42.277309 ], [ 129.968262, 41.939063 ], [ 129.666138, 41.599013 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.880295 ], [ 129.188232, 40.659806 ], [ 129.171753, 40.647304 ], [ 121.942749, 40.647304 ], [ 121.640625, 40.946714 ], [ 120.904541, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.073521 ], [ 112.500000, 44.999767 ], [ 113.466797, 44.809122 ], [ 114.461060, 45.340563 ], [ 115.988159, 45.725356 ], [ 116.718750, 46.388622 ], [ 117.421875, 46.672056 ], [ 118.877563, 46.803820 ], [ 119.663086, 46.690899 ], [ 119.772949, 47.047669 ], [ 118.866577, 47.746711 ], [ 118.064575, 48.067068 ], [ 117.295532, 47.694974 ], [ 116.312256, 47.853717 ], [ 115.746460, 47.724545 ], [ 115.488281, 48.133101 ], [ 116.191406, 49.135003 ], [ 116.680298, 49.887557 ], [ 117.883301, 49.510944 ], [ 119.289551, 50.141706 ], [ 119.278564, 50.583237 ], [ 120.184937, 51.641885 ], [ 120.739746, 51.964577 ], [ 120.728760, 52.516221 ], [ 120.179443, 52.752919 ], [ 121.003418, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.574219, 53.458620 ] ] ] } } ] } ] } , @@ -1923,9 +2081,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.514648, -10.671404 ], [ 142.800293, -11.156845 ], [ 142.866211, -11.786703 ], [ 143.118896, -11.904979 ], [ 143.157349, -12.329269 ], [ 143.525391, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.563843, -13.763396 ], [ 143.920898, -14.551684 ], [ 144.563599, -14.173860 ], [ 144.898682, -14.594216 ], [ 145.376587, -14.987240 ], [ 145.272217, -15.427206 ], [ 145.486450, -16.288506 ], [ 145.640259, -16.788765 ], [ 145.892944, -16.909684 ], [ 146.162109, -17.764381 ], [ 146.063232, -18.281518 ], [ 146.387329, -18.958246 ], [ 147.474976, -19.482129 ], [ 148.178101, -19.957860 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.293213, -21.263781 ], [ 149.534912, -21.943046 ], [ 149.677734, -22.344995 ], [ 150.078735, -22.126355 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.980218 ], [ 134.675903, -11.942601 ], [ 135.000000, -12.098410 ], [ 135.302124, -12.248760 ], [ 135.884399, -11.964097 ], [ 136.257935, -12.050065 ], [ 136.494141, -11.856599 ], [ 136.955566, -12.350734 ], [ 136.686401, -12.886780 ], [ 136.307373, -13.293411 ], [ 135.961304, -13.325485 ], [ 136.076660, -13.726045 ], [ 135.785522, -14.227113 ], [ 135.428467, -14.716448 ], [ 135.499878, -14.997852 ], [ 136.296387, -15.548960 ], [ 137.065430, -15.871525 ], [ 137.581787, -16.214675 ], [ 138.306885, -16.809800 ], [ 138.587036, -16.809800 ], [ 139.108887, -17.062036 ], [ 139.262695, -17.371610 ], [ 140.218506, -17.712061 ], [ 140.877686, -17.371610 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.399536, -15.839820 ], [ 141.701660, -15.045601 ], [ 141.564331, -14.562318 ], [ 141.635742, -14.269707 ], [ 141.520386, -13.699362 ], [ 141.652222, -12.945676 ], [ 141.844482, -12.742158 ], [ 141.690674, -12.409754 ], [ 141.932373, -11.878102 ], [ 142.119141, -11.329253 ], [ 142.146606, -11.043647 ], [ 142.514648, -10.671404 ] ] ], [ [ [ 138.328857, -1.702630 ], [ 139.185791, -2.054003 ], [ 139.927368, -2.410787 ], [ 141.004028, -2.602864 ], [ 142.734375, -3.288598 ], [ 144.585571, -3.864255 ], [ 145.272217, -4.373798 ], [ 145.832520, -4.877521 ], [ 145.980835, -5.468364 ], [ 147.650757, -6.085936 ], [ 147.892456, -6.615501 ], [ 146.969604, -6.724620 ], [ 147.194824, -7.389705 ], [ 148.084717, -8.042913 ], [ 148.732910, -9.107521 ], [ 149.309692, -9.074976 ], [ 149.265747, -9.514079 ], [ 150.040283, -9.687398 ], [ 149.738159, -9.876864 ], [ 150.803833, -10.293301 ], [ 150.693970, -10.585022 ], [ 150.029297, -10.655210 ], [ 149.782104, -10.395975 ], [ 148.925171, -10.282491 ], [ 147.914429, -10.131117 ], [ 147.134399, -9.492408 ], [ 146.568604, -8.944767 ], [ 146.052246, -8.070107 ], [ 144.744873, -7.629331 ], [ 143.898926, -7.917793 ], [ 143.289185, -8.249546 ], [ 143.415527, -8.982749 ], [ 142.630005, -9.329831 ], [ 142.069702, -9.161756 ], [ 141.036987, -9.118368 ], [ 140.147095, -8.298470 ], [ 139.130859, -8.097300 ], [ 138.883667, -8.379997 ], [ 137.614746, -8.412602 ], [ 138.043213, -7.596663 ], [ 138.669434, -7.318882 ], [ 138.411255, -6.233395 ], [ 137.927856, -5.397273 ], [ 135.988770, -4.549046 ], [ 135.164795, -4.466904 ], [ 135.000000, -4.362843 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.849776 ], [ 135.000000, -3.102121 ], [ 135.461426, -3.370856 ], [ 136.296387, -2.306506 ], [ 137.444458, -1.702630 ], [ 138.328857, -1.702630 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.341919, -4.313546 ], [ 152.319946, -4.866574 ], [ 151.984863, -5.479300 ], [ 151.463013, -5.561315 ], [ 151.303711, -5.840081 ], [ 150.243530, -6.320758 ], [ 149.710693, -6.315299 ], [ 148.892212, -6.025848 ], [ 148.320923, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.298706, -5.583184 ], [ 149.848022, -5.506640 ], [ 149.996338, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.238037, -5.533978 ], [ 150.809326, -5.457427 ], [ 151.089478, -5.112830 ], [ 151.649780, -4.757098 ], [ 151.539917, -4.171115 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 150.941162, -2.504085 ], [ 151.479492, -2.783938 ], [ 151.820068, -3.003384 ], [ 152.243042, -3.239240 ], [ 152.644043, -3.661446 ], [ 153.023071, -3.979341 ], [ 153.143921, -4.499762 ], [ 152.830811, -4.768047 ], [ 152.638550, -4.176594 ], [ 152.407837, -3.793003 ], [ 151.386108, -3.036298 ], [ 150.661011, -2.745531 ], [ 150.941162, -2.504085 ] ] ], [ [ [ 154.654541, -5.041699 ], [ 154.758911, -5.342583 ], [ 155.066528, -5.566783 ], [ 155.549927, -6.200629 ], [ 156.022339, -6.539103 ], [ 155.879517, -6.822807 ], [ 155.599365, -6.920974 ], [ 155.170898, -6.539103 ], [ 154.731445, -5.900189 ], [ 154.517212, -5.140186 ], [ 154.654541, -5.041699 ] ] ], [ [ [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.560547, -6.429942 ], [ 134.560547, -5.523043 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.514648, -10.671404 ], [ 142.800293, -11.156845 ], [ 142.866211, -11.786703 ], [ 143.118896, -11.904979 ], [ 143.157349, -12.329269 ], [ 143.525391, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.563843, -13.763396 ], [ 143.920898, -14.551684 ], [ 144.563599, -14.173860 ], [ 144.898682, -14.594216 ], [ 145.376587, -14.987240 ], [ 145.272217, -15.427206 ], [ 145.486450, -16.288506 ], [ 145.640259, -16.788765 ], [ 145.892944, -16.909684 ], [ 146.162109, -17.764381 ], [ 146.063232, -18.281518 ], [ 146.387329, -18.958246 ], [ 147.474976, -19.482129 ], [ 148.178101, -19.957860 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.293213, -21.263781 ], [ 149.534912, -21.943046 ], [ 149.677734, -22.344995 ], [ 150.078735, -22.126355 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.980218 ], [ 134.675903, -11.942601 ], [ 135.000000, -12.098410 ], [ 135.302124, -12.248760 ], [ 135.884399, -11.964097 ], [ 136.257935, -12.050065 ], [ 136.494141, -11.856599 ], [ 136.955566, -12.350734 ], [ 136.686401, -12.886780 ], [ 136.307373, -13.293411 ], [ 135.961304, -13.325485 ], [ 136.076660, -13.726045 ], [ 135.785522, -14.227113 ], [ 135.428467, -14.716448 ], [ 135.499878, -14.997852 ], [ 136.296387, -15.548960 ], [ 137.065430, -15.871525 ], [ 137.581787, -16.214675 ], [ 138.306885, -16.809800 ], [ 138.587036, -16.809800 ], [ 139.108887, -17.062036 ], [ 139.262695, -17.371610 ], [ 140.218506, -17.712061 ], [ 140.877686, -17.371610 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.399536, -15.839820 ], [ 141.701660, -15.045601 ], [ 141.564331, -14.562318 ], [ 141.635742, -14.269707 ], [ 141.520386, -13.699362 ], [ 141.652222, -12.945676 ], [ 141.844482, -12.742158 ], [ 141.690674, -12.409754 ], [ 141.932373, -11.878102 ], [ 142.119141, -11.329253 ], [ 142.146606, -11.043647 ], [ 142.514648, -10.671404 ] ] ], [ [ [ 138.328857, -1.702630 ], [ 139.185791, -2.054003 ], [ 139.927368, -2.410787 ], [ 141.004028, -2.602864 ], [ 141.036987, -9.118368 ], [ 140.147095, -8.298470 ], [ 139.130859, -8.097300 ], [ 138.883667, -8.379997 ], [ 137.614746, -8.412602 ], [ 138.043213, -7.596663 ], [ 138.669434, -7.318882 ], [ 138.411255, -6.233395 ], [ 137.927856, -5.397273 ], [ 135.988770, -4.549046 ], [ 135.164795, -4.466904 ], [ 135.000000, -4.362843 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.849776 ], [ 135.000000, -3.102121 ], [ 135.461426, -3.370856 ], [ 136.296387, -2.306506 ], [ 137.444458, -1.702630 ], [ 138.328857, -1.702630 ] ] ], [ [ [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.560547, -6.429942 ], [ 134.560547, -5.523043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.544189, -6.599131 ], [ 157.142944, -7.024572 ], [ 157.500000, -7.318882 ], [ 157.538452, -7.351571 ], [ 157.500000, -7.362467 ], [ 157.340698, -7.406048 ], [ 156.901245, -7.177201 ], [ 156.494751, -6.768261 ], [ 156.544189, -6.599131 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.004028, -2.602864 ], [ 142.734375, -3.288598 ], [ 144.585571, -3.864255 ], [ 145.272217, -4.373798 ], [ 145.832520, -4.877521 ], [ 145.980835, -5.468364 ], [ 147.650757, -6.085936 ], [ 147.892456, -6.615501 ], [ 146.969604, -6.724620 ], [ 147.194824, -7.389705 ], [ 148.084717, -8.042913 ], [ 148.732910, -9.107521 ], [ 149.309692, -9.074976 ], [ 149.265747, -9.514079 ], [ 150.040283, -9.687398 ], [ 149.738159, -9.876864 ], [ 150.803833, -10.293301 ], [ 150.693970, -10.585022 ], [ 150.029297, -10.655210 ], [ 149.782104, -10.395975 ], [ 148.925171, -10.282491 ], [ 147.914429, -10.131117 ], [ 147.134399, -9.492408 ], [ 146.568604, -8.944767 ], [ 146.052246, -8.070107 ], [ 144.744873, -7.629331 ], [ 143.898926, -7.917793 ], [ 143.289185, -8.249546 ], [ 143.415527, -8.982749 ], [ 142.630005, -9.329831 ], [ 142.069702, -9.161756 ], [ 141.036987, -9.118368 ], [ 141.004028, -2.602864 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.341919, -4.313546 ], [ 152.319946, -4.866574 ], [ 151.984863, -5.479300 ], [ 151.463013, -5.561315 ], [ 151.303711, -5.840081 ], [ 150.243530, -6.320758 ], [ 149.710693, -6.315299 ], [ 148.892212, -6.025848 ], [ 148.320923, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.298706, -5.583184 ], [ 149.848022, -5.506640 ], [ 149.996338, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.238037, -5.533978 ], [ 150.809326, -5.457427 ], [ 151.089478, -5.112830 ], [ 151.649780, -4.757098 ], [ 151.539917, -4.171115 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 156.544189, -6.599131 ], [ 157.142944, -7.024572 ], [ 157.500000, -7.318882 ], [ 157.538452, -7.351571 ], [ 157.500000, -7.362467 ], [ 157.340698, -7.406048 ], [ 156.901245, -7.177201 ], [ 156.494751, -6.768261 ], [ 156.544189, -6.599131 ] ] ], [ [ [ 154.654541, -5.041699 ], [ 154.758911, -5.342583 ], [ 155.066528, -5.566783 ], [ 155.549927, -6.200629 ], [ 156.022339, -6.539103 ], [ 155.879517, -6.822807 ], [ 155.599365, -6.920974 ], [ 155.170898, -6.539103 ], [ 154.731445, -5.900189 ], [ 154.517212, -5.140186 ], [ 154.654541, -5.041699 ] ] ], [ [ [ 150.941162, -2.504085 ], [ 151.479492, -2.783938 ], [ 151.820068, -3.003384 ], [ 152.243042, -3.239240 ], [ 152.644043, -3.661446 ], [ 153.023071, -3.979341 ], [ 153.143921, -4.499762 ], [ 152.830811, -4.768047 ], [ 152.638550, -4.176594 ], [ 152.407837, -3.793003 ], [ 151.386108, -3.036298 ], [ 150.661011, -2.745531 ], [ 150.941162, -2.504085 ] ] ] ] } } ] } ] } , @@ -1937,7 +2095,11 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.372070, 41.376809 ], [ 141.525879, 40.979898 ], [ 141.657715, 40.647304 ], [ 139.938354, 40.647304 ], [ 140.163574, 40.979898 ], [ 140.306396, 41.195190 ], [ 141.372070, 41.376809 ] ] ], [ [ [ 141.970825, 45.548679 ], [ 143.146362, 44.508259 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.321655, 44.382766 ], [ 145.546875, 43.261206 ], [ 144.063721, 42.988576 ], [ 143.184814, 41.992160 ], [ 141.613770, 42.678397 ], [ 141.069946, 41.582580 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.561173 ], [ 140.311890, 43.333169 ], [ 141.383057, 43.389082 ], [ 141.674194, 44.770137 ], [ 141.970825, 45.548679 ] ] ], [ [ [ 137.197266, 56.022948 ], [ 136.796265, 55.776573 ], [ 135.126343, 54.727792 ], [ 136.702881, 54.603892 ], [ 137.197266, 53.975474 ], [ 138.164062, 53.755207 ], [ 138.806763, 54.252389 ], [ 139.905396, 54.188155 ], [ 141.344604, 53.087426 ], [ 141.383057, 52.237892 ], [ 140.597534, 51.237847 ], [ 140.515137, 50.043030 ], [ 140.064697, 48.447422 ], [ 138.554077, 46.998988 ], [ 138.218994, 46.305201 ], [ 136.862183, 45.143305 ], [ 135.516357, 43.988862 ], [ 135.000000, 43.520672 ], [ 134.868164, 43.397065 ], [ 134.560547, 43.265206 ], [ 134.560547, 56.022948 ], [ 137.197266, 56.022948 ] ] ], [ [ [ 142.657471, 54.364558 ], [ 142.915649, 53.703211 ], [ 143.261719, 52.739618 ], [ 143.234253, 51.754240 ], [ 143.651733, 50.746884 ], [ 144.656982, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.861089 ], [ 143.536377, 46.837650 ], [ 143.508911, 46.137977 ], [ 142.750854, 46.739861 ], [ 142.091675, 45.966425 ], [ 141.910400, 46.803820 ], [ 142.020264, 47.779943 ], [ 141.904907, 48.857487 ], [ 142.135620, 49.614269 ], [ 142.179565, 50.951506 ], [ 141.597290, 51.934105 ], [ 141.685181, 53.301338 ], [ 142.608032, 53.761702 ], [ 142.212524, 54.223496 ], [ 142.657471, 54.364558 ] ] ], [ [ [ 157.939453, 56.022948 ], [ 157.939453, 51.754240 ], [ 157.500000, 51.471119 ], [ 156.791382, 51.010299 ], [ 156.423340, 51.699800 ], [ 155.994873, 53.156653 ], [ 155.434570, 55.379110 ], [ 155.571899, 55.776573 ], [ 155.654297, 56.022948 ], [ 157.939453, 56.022948 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.197266, 56.022948 ], [ 136.796265, 55.776573 ], [ 135.126343, 54.727792 ], [ 136.702881, 54.603892 ], [ 137.197266, 53.975474 ], [ 138.164062, 53.755207 ], [ 138.806763, 54.252389 ], [ 139.905396, 54.188155 ], [ 141.344604, 53.087426 ], [ 141.383057, 52.237892 ], [ 140.597534, 51.237847 ], [ 140.515137, 50.043030 ], [ 140.064697, 48.447422 ], [ 138.554077, 46.998988 ], [ 138.218994, 46.305201 ], [ 136.862183, 45.143305 ], [ 135.516357, 43.988862 ], [ 135.000000, 43.520672 ], [ 134.868164, 43.397065 ], [ 134.560547, 43.265206 ], [ 134.560547, 47.683881 ], [ 135.000000, 48.432845 ], [ 135.027466, 48.476563 ], [ 135.000000, 48.472921 ], [ 134.560547, 48.396385 ], [ 134.560547, 56.022948 ], [ 137.197266, 56.022948 ] ] ], [ [ [ 142.657471, 54.364558 ], [ 142.915649, 53.703211 ], [ 143.261719, 52.739618 ], [ 143.234253, 51.754240 ], [ 143.651733, 50.746884 ], [ 144.656982, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.861089 ], [ 143.536377, 46.837650 ], [ 143.508911, 46.137977 ], [ 142.750854, 46.739861 ], [ 142.091675, 45.966425 ], [ 141.910400, 46.803820 ], [ 142.020264, 47.779943 ], [ 141.904907, 48.857487 ], [ 142.135620, 49.614269 ], [ 142.179565, 50.951506 ], [ 141.597290, 51.934105 ], [ 141.685181, 53.301338 ], [ 142.608032, 53.761702 ], [ 142.212524, 54.223496 ], [ 142.657471, 54.364558 ] ] ], [ [ [ 157.939453, 56.022948 ], [ 157.939453, 51.754240 ], [ 157.500000, 51.471119 ], [ 156.791382, 51.010299 ], [ 156.423340, 51.699800 ], [ 155.994873, 53.156653 ], [ 155.434570, 55.379110 ], [ 155.571899, 55.776573 ], [ 155.654297, 56.022948 ], [ 157.939453, 56.022948 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.027466, 48.476563 ], [ 135.000000, 48.432845 ], [ 134.560547, 47.683881 ], [ 134.560547, 48.396385 ], [ 135.000000, 48.472921 ], [ 135.027466, 48.476563 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.372070, 41.376809 ], [ 141.525879, 40.979898 ], [ 141.657715, 40.647304 ], [ 139.938354, 40.647304 ], [ 140.163574, 40.979898 ], [ 140.306396, 41.195190 ], [ 141.372070, 41.376809 ] ] ], [ [ [ 141.970825, 45.548679 ], [ 143.146362, 44.508259 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.321655, 44.382766 ], [ 145.546875, 43.261206 ], [ 144.063721, 42.988576 ], [ 143.184814, 41.992160 ], [ 141.613770, 42.678397 ], [ 141.069946, 41.582580 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.561173 ], [ 140.311890, 43.333169 ], [ 141.383057, 43.389082 ], [ 141.674194, 44.770137 ], [ 141.970825, 45.548679 ] ] ] ] } } ] } ] } , @@ -1991,15 +2153,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "New Caledonia", "adm0_a3": "NCL", "geou_dif": 0, "geounit": "New Caledonia", "gu_a3": "NCL", "su_dif": 0, "subunit": "New Caledonia", "su_a3": "NCL", "brk_diff": 0, "name": "New Caledonia", "name_long": "New Caledonia", "brk_a3": "NCL", "brk_name": "New Caledonia", "abbrev": "New C.", "postal": "NC", "formal_en": "New Caledonia", "formal_fr": "Nouvelle-Calédonie", "note_adm0": "Fr.", "name_sort": "New Caledonia", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 227436, "gdp_md_est": 3158, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "NC", "iso_a3": "NCL", "iso_n3": "540", "un_a3": "540", "wb_a2": "NC", "wb_a3": "NCL", "woe_id": -99, "adm0_a3_is": "NCL", "adm0_a3_us": "NCL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.798462, -40.497092 ], [ 173.051147, -40.979898 ], [ 173.232422, -41.310824 ], [ 172.001953, -41.310824 ], [ 172.089844, -40.979898 ], [ 172.100830, -40.959160 ], [ 172.798462, -40.497092 ] ] ], [ [ [ 173.007202, -34.452218 ], [ 173.551025, -35.007503 ], [ 174.331055, -35.268047 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.358276, -36.527295 ], [ 175.808716, -36.800488 ], [ 175.962524, -37.557642 ], [ 176.764526, -37.883525 ], [ 177.440186, -37.961523 ], [ 178.011475, -37.579413 ], [ 178.516846, -37.696861 ], [ 178.275146, -38.582526 ], [ 177.973022, -39.168400 ], [ 177.209473, -39.147103 ], [ 176.940308, -39.448919 ], [ 177.033691, -39.880235 ], [ 176.885376, -40.065461 ], [ 176.237183, -40.979898 ], [ 176.011963, -41.290190 ], [ 175.973511, -41.310824 ], [ 174.732056, -41.310824 ], [ 174.649658, -41.281935 ], [ 174.863892, -40.979898 ], [ 175.226440, -40.459487 ], [ 174.902344, -39.909736 ], [ 173.825684, -39.508279 ], [ 173.853149, -39.147103 ], [ 174.578247, -38.796908 ], [ 174.743042, -38.030786 ], [ 174.699097, -37.383253 ], [ 174.292603, -36.712467 ], [ 174.320068, -36.536123 ], [ 173.842163, -36.124565 ], [ 173.056641, -35.236646 ], [ 172.639160, -34.529187 ], [ 173.007202, -34.452218 ] ] ], [ [ [ 173.957520, -40.925965 ], [ 173.995972, -40.979898 ], [ 174.221191, -41.310824 ], [ 173.281860, -41.310824 ], [ 173.864136, -40.979898 ], [ 173.957520, -40.925965 ] ] ], [ [ [ 166.382446, -21.534847 ], [ 166.602173, -21.698265 ], [ 166.876831, -21.943046 ], [ 167.124023, -22.161971 ], [ 166.739502, -22.400872 ], [ 166.190186, -22.131443 ], [ 165.893555, -21.943046 ], [ 165.476074, -21.677848 ], [ 165.294800, -21.534847 ], [ 166.382446, -21.534847 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "New Caledonia", "adm0_a3": "NCL", "geou_dif": 0, "geounit": "New Caledonia", "gu_a3": "NCL", "su_dif": 0, "subunit": "New Caledonia", "su_a3": "NCL", "brk_diff": 0, "name": "New Caledonia", "name_long": "New Caledonia", "brk_a3": "NCL", "brk_name": "New Caledonia", "abbrev": "New C.", "postal": "NC", "formal_en": "New Caledonia", "formal_fr": "Nouvelle-Calédonie", "note_adm0": "Fr.", "name_sort": "New Caledonia", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 227436, "gdp_md_est": 3158, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "NC", "iso_a3": "NCL", "iso_n3": "540", "un_a3": "540", "wb_a2": "NC", "wb_a3": "NCL", "woe_id": -99, "adm0_a3_is": "NCL", "adm0_a3_us": "NCL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.382446, -21.534847 ], [ 166.602173, -21.698265 ], [ 166.876831, -21.943046 ], [ 167.124023, -22.161971 ], [ 166.739502, -22.400872 ], [ 166.190186, -22.131443 ], [ 165.893555, -21.943046 ], [ 165.476074, -21.677848 ], [ 165.294800, -21.534847 ], [ 166.382446, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.798462, -40.497092 ], [ 173.051147, -40.979898 ], [ 173.232422, -41.310824 ], [ 172.001953, -41.310824 ], [ 172.089844, -40.979898 ], [ 172.100830, -40.959160 ], [ 172.798462, -40.497092 ] ] ], [ [ [ 173.007202, -34.452218 ], [ 173.551025, -35.007503 ], [ 174.331055, -35.268047 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.358276, -36.527295 ], [ 175.808716, -36.800488 ], [ 175.962524, -37.557642 ], [ 176.764526, -37.883525 ], [ 177.440186, -37.961523 ], [ 178.011475, -37.579413 ], [ 178.516846, -37.696861 ], [ 178.275146, -38.582526 ], [ 177.973022, -39.168400 ], [ 177.209473, -39.147103 ], [ 176.940308, -39.448919 ], [ 177.033691, -39.880235 ], [ 176.885376, -40.065461 ], [ 176.237183, -40.979898 ], [ 176.011963, -41.290190 ], [ 175.973511, -41.310824 ], [ 174.732056, -41.310824 ], [ 174.649658, -41.281935 ], [ 174.863892, -40.979898 ], [ 175.226440, -40.459487 ], [ 174.902344, -39.909736 ], [ 173.825684, -39.508279 ], [ 173.853149, -39.147103 ], [ 174.578247, -38.796908 ], [ 174.743042, -38.030786 ], [ 174.699097, -37.383253 ], [ 174.292603, -36.712467 ], [ 174.320068, -36.536123 ], [ 173.842163, -36.124565 ], [ 173.056641, -35.236646 ], [ 172.639160, -34.529187 ], [ 173.007202, -34.452218 ] ] ], [ [ [ 173.281860, -41.310824 ], [ 173.864136, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.995972, -40.979898 ], [ 174.221191, -41.310824 ], [ 173.281860, -41.310824 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 164.031372, -20.107523 ], [ 164.459839, -20.122998 ], [ 165.020142, -20.463043 ], [ 165.459595, -20.802337 ], [ 165.783691, -21.079375 ], [ 166.602173, -21.703369 ], [ 166.876831, -21.943046 ], [ 167.124023, -22.161971 ], [ 166.821899, -22.350076 ], [ 166.635132, -22.350076 ], [ 166.190186, -22.131443 ], [ 165.893555, -21.943046 ], [ 165.476074, -21.682953 ], [ 164.833374, -21.151115 ], [ 164.168701, -20.447602 ], [ 164.031372, -20.107523 ] ] ], [ [ [ 167.217407, -15.892659 ], [ 167.843628, -16.467695 ], [ 167.514038, -16.599346 ], [ 167.178955, -16.161921 ], [ 167.217407, -15.892659 ] ] ], [ [ [ 166.629639, -14.626109 ], [ 167.107544, -14.934170 ], [ 167.272339, -15.739388 ], [ 167.003174, -15.617747 ], [ 166.794434, -15.670643 ], [ 166.651611, -15.395432 ], [ 166.629639, -14.626109 ] ] ], [ [ [ 158.362427, -7.318882 ], [ 158.823853, -7.563992 ], [ 159.642334, -8.021155 ], [ 159.878540, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.136963, -8.113615 ], [ 158.587646, -7.754537 ], [ 158.214111, -7.422389 ], [ 158.362427, -7.318882 ] ] ], [ [ [ 161.323242, -10.206813 ], [ 161.916504, -10.450000 ], [ 162.119751, -10.482410 ], [ 162.399902, -10.827911 ], [ 161.702271, -10.822515 ], [ 161.323242, -10.206813 ] ] ], [ [ [ 159.702759, -9.243093 ], [ 160.361938, -9.400291 ], [ 160.691528, -9.611582 ], [ 160.856323, -9.876864 ], [ 160.466309, -9.898510 ], [ 159.851074, -9.795678 ], [ 159.642334, -9.638661 ], [ 159.702759, -9.243093 ] ] ], [ [ [ 160.922241, -8.320212 ], [ 161.279297, -9.123792 ], [ 161.680298, -9.600750 ], [ 161.531982, -9.784851 ], [ 160.790405, -8.917634 ], [ 160.581665, -8.320212 ], [ 160.922241, -8.320212 ] ] ], [ [ [ 157.060547, -6.964597 ], [ 157.137451, -7.024572 ], [ 157.500000, -7.318882 ], [ 157.538452, -7.351571 ], [ 157.500000, -7.362467 ], [ 157.340698, -7.406048 ], [ 157.060547, -7.258945 ], [ 157.060547, -6.964597 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.323242, -10.206813 ], [ 161.916504, -10.450000 ], [ 162.119751, -10.482410 ], [ 162.399902, -10.827911 ], [ 161.702271, -10.822515 ], [ 161.323242, -10.206813 ] ] ], [ [ [ 159.702759, -9.243093 ], [ 160.361938, -9.400291 ], [ 160.691528, -9.611582 ], [ 160.856323, -9.876864 ], [ 160.466309, -9.898510 ], [ 159.851074, -9.795678 ], [ 159.642334, -9.638661 ], [ 159.702759, -9.243093 ] ] ], [ [ [ 160.922241, -8.320212 ], [ 161.279297, -9.123792 ], [ 161.680298, -9.600750 ], [ 161.531982, -9.784851 ], [ 160.790405, -8.917634 ], [ 160.581665, -8.320212 ], [ 160.922241, -8.320212 ] ] ], [ [ [ 158.362427, -7.318882 ], [ 158.823853, -7.563992 ], [ 159.642334, -8.021155 ], [ 159.878540, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.136963, -8.113615 ], [ 158.587646, -7.754537 ], [ 158.214111, -7.422389 ], [ 158.362427, -7.318882 ] ] ], [ [ [ 157.060547, -6.964597 ], [ 157.137451, -7.024572 ], [ 157.500000, -7.318882 ], [ 157.538452, -7.351571 ], [ 157.500000, -7.362467 ], [ 157.340698, -7.406048 ], [ 157.060547, -7.258945 ], [ 157.060547, -6.964597 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.374023, -17.340152 ], [ 178.720093, -17.628317 ], [ 178.555298, -18.151072 ], [ 177.934570, -18.286734 ], [ 177.385254, -18.166730 ], [ 177.286377, -17.727759 ], [ 177.670898, -17.382095 ], [ 178.126831, -17.507867 ], [ 178.374023, -17.340152 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.208740, -16.024696 ], [ 180.082397, -16.504566 ], [ 180.000000, -16.557227 ], [ 179.362793, -16.804541 ], [ 178.725586, -17.014768 ], [ 178.599243, -16.641455 ], [ 179.099121, -16.436085 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 164.031372, -20.107523 ], [ 164.459839, -20.122998 ], [ 165.020142, -20.463043 ], [ 165.459595, -20.802337 ], [ 165.783691, -21.079375 ], [ 166.602173, -21.703369 ], [ 166.876831, -21.943046 ], [ 167.124023, -22.161971 ], [ 166.821899, -22.350076 ], [ 166.635132, -22.350076 ], [ 166.190186, -22.131443 ], [ 165.893555, -21.943046 ], [ 165.476074, -21.682953 ], [ 164.833374, -21.151115 ], [ 164.168701, -20.447602 ], [ 164.031372, -20.107523 ] ] ], [ [ [ 178.374023, -17.340152 ], [ 178.720093, -17.628317 ], [ 178.555298, -18.151072 ], [ 177.934570, -18.286734 ], [ 177.385254, -18.166730 ], [ 177.286377, -17.727759 ], [ 177.670898, -17.382095 ], [ 178.126831, -17.507867 ], [ 178.374023, -17.340152 ] ] ], [ [ [ 180.208740, -16.024696 ], [ 180.082397, -16.504566 ], [ 180.000000, -16.557227 ], [ 179.362793, -16.804541 ], [ 178.725586, -17.014768 ], [ 178.599243, -16.641455 ], [ 179.099121, -16.436085 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ], [ 180.208740, -16.024696 ] ] ], [ [ [ 167.217407, -15.892659 ], [ 167.843628, -16.467695 ], [ 167.514038, -16.599346 ], [ 167.178955, -16.161921 ], [ 167.217407, -15.892659 ] ] ], [ [ [ 166.629639, -14.626109 ], [ 167.107544, -14.934170 ], [ 167.272339, -15.739388 ], [ 167.003174, -15.617747 ], [ 166.794434, -15.670643 ], [ 166.651611, -15.395432 ], [ 166.629639, -14.626109 ] ] ] ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json b/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json index 63132e2ba..15fc745d0 100644 --- a/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json +++ b/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json @@ -18,10 +18,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana", "tippecanoe:retain_points_multiplier_sequence": 41, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 71.455078, 51.179343 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ 69.257812, 41.310824 ] } } -, { "type": "Feature", "properties": { "NAME": "Bishkek", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 74.619141, 42.875964 ] } } , +{ "type": "Feature", "properties": { "NAME": "Tashkent", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ 69.257812, 41.310824 ] } } +, { "type": "Feature", "properties": { "NAME": "Bangkok", "tippecanoe:retain_points_multiplier_sequence": 68, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 100.546875, 13.752725 ] } } , { "type": "Feature", "properties": { "NAME": "Vientiane", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ 102.568359, 17.978733 ] } } @@ -30,22 +30,22 @@ , { "type": "Feature", "properties": { "NAME": "Berlin", "tippecanoe:retain_points_multiplier_sequence": 72, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 13.359375, 52.536273 ] } } , -{ "type": "Feature", "properties": { "NAME": "Prague", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 50.064192 ] } } -, { "type": "Feature", "properties": { "NAME": "Warsaw", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.268157 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bir Lehlou", "tippecanoe:retain_points_multiplier_sequence": 3, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } +{ "type": "Feature", "properties": { "NAME": "Prague", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 50.064192 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dakar", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -17.490234, 14.689881 ] } } +{ "type": "Feature", "properties": { "NAME": "Bir Lehlou", "tippecanoe:retain_points_multiplier_sequence": 3, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } , { "type": "Feature", "properties": { "NAME": "Nouakchott", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -15.996094, 18.062312 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bucharest", "tippecanoe:retain_points_multiplier_sequence": 53, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.465151 ] } } +{ "type": "Feature", "properties": { "NAME": "Dakar", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -17.490234, 14.689881 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } +{ "type": "Feature", "properties": { "NAME": "Bucharest", "tippecanoe:retain_points_multiplier_sequence": 53, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.465151 ] } } , { "type": "Feature", "properties": { "NAME": "Istanbul", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } , +{ "type": "Feature", "properties": { "NAME": "Chisinau", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } +, { "type": "Feature", "properties": { "NAME": "Cairo", "tippecanoe:retain_points_multiplier_sequence": 87, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.289062, 30.069094 ] } } , { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ 34.804688, 32.101190 ] } } @@ -60,10 +60,10 @@ , { "type": "Feature", "properties": { "NAME": "Funafuti", "tippecanoe:retain_points_multiplier_sequence": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 179.208984, -8.494105 ], [ -180.791016, -8.494105 ] ] } } , -{ "type": "Feature", "properties": { "NAME": "Suva", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 178.417969, -18.145852 ], [ -181.582031, -18.145852 ] ] } } -, { "type": "Feature", "properties": { "NAME": "Auckland", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.726562, -36.879621 ], [ -185.273438, -36.879621 ] ] } } , +{ "type": "Feature", "properties": { "NAME": "Suva", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 178.417969, -18.145852 ], [ -181.582031, -18.145852 ] ] } } +, { "type": "Feature", "properties": { "NAME": "Guatemala", "tippecanoe:retain_points_multiplier_sequence": 35, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } , { "type": "Feature", "properties": { "NAME": "Chicago", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -87.714844, 41.836828 ] } } @@ -72,16 +72,16 @@ , { "type": "Feature", "properties": { "NAME": "Hong Kong", "tippecanoe:retain_points_multiplier_sequence": 92, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 114.169922, 22.268764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Shanghai", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ 121.464844, 31.203405 ] } } -, { "type": "Feature", "properties": { "NAME": "Taipei", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.005973 ] } } , -{ "type": "Feature", "properties": { "NAME": "Jakarta", "tippecanoe:retain_points_multiplier_sequence": 86, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 106.787109, -6.140555 ] } } +{ "type": "Feature", "properties": { "NAME": "Shanghai", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ 121.464844, 31.203405 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dili", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +{ "type": "Feature", "properties": { "NAME": "Jakarta", "tippecanoe:retain_points_multiplier_sequence": 86, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 106.787109, -6.140555 ] } } , { "type": "Feature", "properties": { "NAME": "Port Moresby", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 147.216797, -9.449062 ] } } , +{ "type": "Feature", "properties": { "NAME": "Dili", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +, { "type": "Feature", "properties": { "NAME": "Kabul", "tippecanoe:retain_points_multiplier_sequence": 78, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 69.169922, 34.524661 ] } } , { "type": "Feature", "properties": { "NAME": "Islamabad", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 73.125000, 33.724340 ] } } @@ -90,10 +90,10 @@ , { "type": "Feature", "properties": { "NAME": "Khartoum", "tippecanoe:retain_points_multiplier_sequence": 54, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.519531, 15.623037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } -, { "type": "Feature", "properties": { "NAME": "Kampala", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, 0.351560 ] } } , +{ "type": "Feature", "properties": { "NAME": "Juba", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } +, { "type": "Feature", "properties": { "NAME": "Kingston", "tippecanoe:retain_points_multiplier_sequence": 31, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -76.728516, 17.978733 ] } } , { "type": "Feature", "properties": { "NAME": "Port-au-Prince", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.562947 ] } } @@ -120,28 +120,28 @@ , { "type": "Feature", "properties": { "NAME": "Luxembourg", "tippecanoe:retain_points_multiplier_sequence": 0, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 49.610710 ] } } , -{ "type": "Feature", "properties": { "NAME": "Paris", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ 2.373047, 48.864715 ] } } -, { "type": "Feature", "properties": { "NAME": "Andorra", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 1.494141, 42.488302 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo", "tippecanoe:retain_points_multiplier_sequence": 33, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Paris", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ 2.373047, 48.864715 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 0.351560 ] } } +{ "type": "Feature", "properties": { "NAME": "Malabo", "tippecanoe:retain_points_multiplier_sequence": 33, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } , { "type": "Feature", "properties": { "NAME": "Ndjamena", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } , -{ "type": "Feature", "properties": { "NAME": "Male", "tippecanoe:retain_points_multiplier_sequence": 48, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 73.476562, 4.127285 ] } } +{ "type": "Feature", "properties": { "NAME": "Libreville", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 0.351560 ] } } , -{ "type": "Feature", "properties": { "NAME": "Colombo", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 79.892578, 6.926427 ] } } +{ "type": "Feature", "properties": { "NAME": "Male", "tippecanoe:retain_points_multiplier_sequence": 48, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 73.476562, 4.127285 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama", "tippecanoe:retain_points_multiplier_sequence": 16, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 50.625000, 26.273714 ] } } +{ "type": "Feature", "properties": { "NAME": "Colombo", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 79.892578, 6.926427 ] } } , -{ "type": "Feature", "properties": { "NAME": "Doha", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 51.503906, 25.324167 ] } } +{ "type": "Feature", "properties": { "NAME": "Manama", "tippecanoe:retain_points_multiplier_sequence": 16, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 50.625000, 26.273714 ] } } , { "type": "Feature", "properties": { "NAME": "Dubai", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.244696 ] } } , +{ "type": "Feature", "properties": { "NAME": "Doha", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 51.503906, 25.324167 ] } } +, { "type": "Feature", "properties": { "NAME": "Maseru", "tippecanoe:retain_points_multiplier_sequence": 30, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 27.509766, -29.305561 ] } } , { "type": "Feature", "properties": { "NAME": "Pretoria", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 28.212891, -25.720735 ] } } @@ -156,10 +156,10 @@ , { "type": "Feature", "properties": { "NAME": "Nairobi", "tippecanoe:retain_points_multiplier_sequence": 85, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.318243 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dodoma", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 35.771484, -6.140555 ] } } -, { "type": "Feature", "properties": { "NAME": "Dar es Salaam", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ 39.287109, -6.839170 ] } } , +{ "type": "Feature", "properties": { "NAME": "Dodoma", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 35.771484, -6.140555 ] } } +, { "type": "Feature", "properties": { "NAME": "New York", "tippecanoe:retain_points_multiplier_sequence": 81, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } , { "type": "Feature", "properties": { "NAME": "Nassau", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } @@ -168,28 +168,28 @@ , { "type": "Feature", "properties": { "NAME": "Ouagadougou", "tippecanoe:retain_points_multiplier_sequence": 46, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -1.494141, 12.382928 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monrovia", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } -, { "type": "Feature", "properties": { "NAME": "Yamoussoukro", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.839170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rome", "tippecanoe:retain_points_multiplier_sequence": 84, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bratislava", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 17.138672, 48.166085 ] } } +{ "type": "Feature", "properties": { "NAME": "Rome", "tippecanoe:retain_points_multiplier_sequence": 84, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sao Paulo", "tippecanoe:retain_points_multiplier_sequence": 91, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -46.669922, -23.563987 ] } } +{ "type": "Feature", "properties": { "NAME": "Bratislava", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 17.138672, 48.166085 ] } } , -{ "type": "Feature", "properties": { "NAME": "Montevideo", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.885931 ] } } +{ "type": "Feature", "properties": { "NAME": "Sao Paulo", "tippecanoe:retain_points_multiplier_sequence": 91, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -46.669922, -23.563987 ] } } , { "type": "Feature", "properties": { "NAME": "Rio de Janeiro", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -43.242188, -22.917923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Skopje", "tippecanoe:retain_points_multiplier_sequence": 12, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 21.445312, 41.967659 ] } } +{ "type": "Feature", "properties": { "NAME": "Montevideo", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.885931 ] } } , -{ "type": "Feature", "properties": { "NAME": "Helsinki", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ 24.960938, 60.196156 ] } } +{ "type": "Feature", "properties": { "NAME": "Skopje", "tippecanoe:retain_points_multiplier_sequence": 12, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 21.445312, 41.967659 ] } } , { "type": "Feature", "properties": { "NAME": "Tallinn", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 24.697266, 59.445075 ] } } , +{ "type": "Feature", "properties": { "NAME": "Helsinki", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ 24.960938, 60.196156 ] } } +, { "type": "Feature", "properties": { "NAME": "Valletta", "tippecanoe:retain_points_multiplier_sequence": 47, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } , { "type": "Feature", "properties": { "NAME": "Niamey", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.496473 ] } } diff --git a/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json b/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json index cba384f55..8aa08548a 100644 --- a/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json +++ b/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json @@ -18,16 +18,16 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Luxembourg", "tippecanoe:retain_points_multiplier_sequence": 0, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 49.610710 ] } } , -{ "type": "Feature", "properties": { "NAME": "Paris", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ 2.373047, 48.864715 ] } } -, { "type": "Feature", "properties": { "NAME": "Andorra", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 1.494141, 42.488302 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti", "tippecanoe:retain_points_multiplier_sequence": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 179.208984, -8.494105 ], [ -180.791016, -8.494105 ] ] } } +{ "type": "Feature", "properties": { "NAME": "Paris", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ 2.373047, 48.864715 ] } } , -{ "type": "Feature", "properties": { "NAME": "Suva", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 178.417969, -18.145852 ], [ -181.582031, -18.145852 ] ] } } +{ "type": "Feature", "properties": { "NAME": "Funafuti", "tippecanoe:retain_points_multiplier_sequence": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 179.208984, -8.494105 ], [ -180.791016, -8.494105 ] ] } } , { "type": "Feature", "properties": { "NAME": "Auckland", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.726562, -36.879621 ], [ -185.273438, -36.879621 ] ] } } , +{ "type": "Feature", "properties": { "NAME": "Suva", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 178.417969, -18.145852 ], [ -181.582031, -18.145852 ] ] } } +, { "type": "Feature", "properties": { "NAME": "Melekeok", "tippecanoe:retain_points_multiplier_sequence": 2, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 134.648438, 7.449624 ] } } , { "type": "Feature", "properties": { "NAME": "Osaka", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } @@ -36,16 +36,16 @@ , { "type": "Feature", "properties": { "NAME": "Bir Lehlou", "tippecanoe:retain_points_multiplier_sequence": 3, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dakar", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -17.490234, 14.689881 ] } } -, { "type": "Feature", "properties": { "NAME": "Nouakchott", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -15.996094, 18.062312 ] } } , -{ "type": "Feature", "properties": { "NAME": "Skopje", "tippecanoe:retain_points_multiplier_sequence": 12, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 21.445312, 41.967659 ] } } +{ "type": "Feature", "properties": { "NAME": "Dakar", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -17.490234, 14.689881 ] } } , -{ "type": "Feature", "properties": { "NAME": "Helsinki", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ 24.960938, 60.196156 ] } } +{ "type": "Feature", "properties": { "NAME": "Skopje", "tippecanoe:retain_points_multiplier_sequence": 12, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 21.445312, 41.967659 ] } } , { "type": "Feature", "properties": { "NAME": "Tallinn", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 24.697266, 59.445075 ] } } , +{ "type": "Feature", "properties": { "NAME": "Helsinki", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ 24.960938, 60.196156 ] } } +, { "type": "Feature", "properties": { "NAME": "Kingstown", "tippecanoe:retain_points_multiplier_sequence": 14, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } , { "type": "Feature", "properties": { "NAME": "Saint George's", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -61.699219, 12.039321 ] } } @@ -54,10 +54,10 @@ , { "type": "Feature", "properties": { "NAME": "Manama", "tippecanoe:retain_points_multiplier_sequence": 16, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 50.625000, 26.273714 ] } } , -{ "type": "Feature", "properties": { "NAME": "Doha", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 51.503906, 25.324167 ] } } -, { "type": "Feature", "properties": { "NAME": "Dubai", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.244696 ] } } , +{ "type": "Feature", "properties": { "NAME": "Doha", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 51.503906, 25.324167 ] } } +, { "type": "Feature", "properties": { "NAME": "Maseru", "tippecanoe:retain_points_multiplier_sequence": 30, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 27.509766, -29.305561 ] } } , { "type": "Feature", "properties": { "NAME": "Pretoria", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 28.212891, -25.720735 ] } } @@ -72,10 +72,10 @@ , { "type": "Feature", "properties": { "NAME": "Malabo", "tippecanoe:retain_points_multiplier_sequence": 33, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 0.351560 ] } } -, { "type": "Feature", "properties": { "NAME": "Ndjamena", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } , +{ "type": "Feature", "properties": { "NAME": "Libreville", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 0.351560 ] } } +, { "type": "Feature", "properties": { "NAME": "Guatemala", "tippecanoe:retain_points_multiplier_sequence": 35, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } , { "type": "Feature", "properties": { "NAME": "Chicago", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -87.714844, 41.836828 ] } } @@ -84,16 +84,16 @@ , { "type": "Feature", "properties": { "NAME": "Astana", "tippecanoe:retain_points_multiplier_sequence": 41, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 71.455078, 51.179343 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ 69.257812, 41.310824 ] } } -, { "type": "Feature", "properties": { "NAME": "Bishkek", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 74.619141, 42.875964 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ouagadougou", "tippecanoe:retain_points_multiplier_sequence": 46, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -1.494141, 12.382928 ] } } +{ "type": "Feature", "properties": { "NAME": "Tashkent", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ 69.257812, 41.310824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monrovia", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou", "tippecanoe:retain_points_multiplier_sequence": 46, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -1.494141, 12.382928 ] } } , { "type": "Feature", "properties": { "NAME": "Yamoussoukro", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.839170 ] } } , +{ "type": "Feature", "properties": { "NAME": "Monrovia", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } +, { "type": "Feature", "properties": { "NAME": "Valletta", "tippecanoe:retain_points_multiplier_sequence": 47, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } , { "type": "Feature", "properties": { "NAME": "Niamey", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.496473 ] } } @@ -102,22 +102,22 @@ , { "type": "Feature", "properties": { "NAME": "Male", "tippecanoe:retain_points_multiplier_sequence": 48, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 73.476562, 4.127285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Colombo", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 79.892578, 6.926427 ] } } -, { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bucharest", "tippecanoe:retain_points_multiplier_sequence": 53, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.465151 ] } } +{ "type": "Feature", "properties": { "NAME": "Colombo", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 79.892578, 6.926427 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } +{ "type": "Feature", "properties": { "NAME": "Bucharest", "tippecanoe:retain_points_multiplier_sequence": 53, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.465151 ] } } , { "type": "Feature", "properties": { "NAME": "Istanbul", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } , -{ "type": "Feature", "properties": { "NAME": "Khartoum", "tippecanoe:retain_points_multiplier_sequence": 54, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.519531, 15.623037 ] } } +{ "type": "Feature", "properties": { "NAME": "Chisinau", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Khartoum", "tippecanoe:retain_points_multiplier_sequence": 54, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.519531, 15.623037 ] } } , { "type": "Feature", "properties": { "NAME": "Kampala", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, 0.351560 ] } } , +{ "type": "Feature", "properties": { "NAME": "Juba", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } +, { "type": "Feature", "properties": { "NAME": "Dublin", "tippecanoe:retain_points_multiplier_sequence": 57, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "London", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -0.087891, 51.508742 ] } } @@ -138,10 +138,10 @@ , { "type": "Feature", "properties": { "NAME": "Berlin", "tippecanoe:retain_points_multiplier_sequence": 72, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 13.359375, 52.536273 ] } } , -{ "type": "Feature", "properties": { "NAME": "Prague", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 50.064192 ] } } -, { "type": "Feature", "properties": { "NAME": "Warsaw", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.268157 ] } } , +{ "type": "Feature", "properties": { "NAME": "Prague", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 50.064192 ] } } +, { "type": "Feature", "properties": { "NAME": "Kinshasa", "tippecanoe:retain_points_multiplier_sequence": 74, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } , { "type": "Feature", "properties": { "NAME": "Luanda", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ 13.271484, -8.841651 ] } } @@ -168,22 +168,22 @@ , { "type": "Feature", "properties": { "NAME": "Rome", "tippecanoe:retain_points_multiplier_sequence": 84, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bratislava", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 17.138672, 48.166085 ] } } -, { "type": "Feature", "properties": { "NAME": "Budapest", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nairobi", "tippecanoe:retain_points_multiplier_sequence": 85, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.318243 ] } } +{ "type": "Feature", "properties": { "NAME": "Bratislava", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 17.138672, 48.166085 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dodoma", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 35.771484, -6.140555 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi", "tippecanoe:retain_points_multiplier_sequence": 85, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.318243 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ 39.287109, -6.839170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Jakarta", "tippecanoe:retain_points_multiplier_sequence": 86, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 106.787109, -6.140555 ] } } +{ "type": "Feature", "properties": { "NAME": "Dodoma", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 35.771484, -6.140555 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dili", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +{ "type": "Feature", "properties": { "NAME": "Jakarta", "tippecanoe:retain_points_multiplier_sequence": 86, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 106.787109, -6.140555 ] } } , { "type": "Feature", "properties": { "NAME": "Port Moresby", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 147.216797, -9.449062 ] } } , +{ "type": "Feature", "properties": { "NAME": "Dili", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +, { "type": "Feature", "properties": { "NAME": "Cairo", "tippecanoe:retain_points_multiplier_sequence": 87, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.289062, 30.069094 ] } } , { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ 34.804688, 32.101190 ] } } @@ -192,15 +192,15 @@ , { "type": "Feature", "properties": { "NAME": "Sao Paulo", "tippecanoe:retain_points_multiplier_sequence": 91, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -46.669922, -23.563987 ] } } , -{ "type": "Feature", "properties": { "NAME": "Montevideo", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.885931 ] } } -, { "type": "Feature", "properties": { "NAME": "Rio de Janeiro", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -43.242188, -22.917923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Hong Kong", "tippecanoe:retain_points_multiplier_sequence": 92, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 114.169922, 22.268764 ] } } +{ "type": "Feature", "properties": { "NAME": "Montevideo", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.885931 ] } } , -{ "type": "Feature", "properties": { "NAME": "Shanghai", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ 121.464844, 31.203405 ] } } +{ "type": "Feature", "properties": { "NAME": "Hong Kong", "tippecanoe:retain_points_multiplier_sequence": 92, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 114.169922, 22.268764 ] } } , { "type": "Feature", "properties": { "NAME": "Taipei", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.005973 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Shanghai", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ 121.464844, 31.203405 ] } } ] } ] } ] } diff --git a/text.cpp b/text.cpp index b1aa2d673..83cbac151 100644 --- a/text.cpp +++ b/text.cpp @@ -225,3 +225,31 @@ unsigned long long fnv1a(size_t size, void *p) { } return h; } + +// This function reverses the order of the bits in a 64-bit word. +// Instead of shifting individual bits in a loop, it shifts them +// in blocks, starting with swapping the halfwords, and working downward +// until it is swapping individual pairs of adjacent bits. +// +// The purpose is to permute the order in which features are visited: +// instead of working in an orderly fashion from the top left to the +// bottom right of the tile, instead jump around to minimize adjacency, +// like a hash function, but taking advantage of the knowledge that we +// are operating on a fixed-size input that can be directly inverted. +// https://en.wikipedia.org/wiki/Bit-reversal_permutation +// +// This allows calculating an appropriate set of features to appear +// at a fractional zoom level: at what is effectively z4.25, for example, +// we can bring in a quarter of the features that will be added in the +// transition from z4 to z5, and have them be spatially distributed +// across the tile rather than clumped together. + +unsigned long long bit_reverse(unsigned long long v) { + v = ((v & 0x00000000FFFFFFFF) << 32) | ((v & 0xFFFFFFFF00000000) >> 32); + v = ((v & 0x0000FFFF0000FFFF) << 16) | ((v & 0xFFFF0000FFFF0000) >> 16); + v = ((v & 0x00FF00FF00FF00FF) << 8) | ((v & 0xFF00FF00FF00FF00) >> 8); + v = ((v & 0x0F0F0F0F0F0F0F0F) << 4) | ((v & 0xF0F0F0F0F0F0F0F0) >> 4); + v = ((v & 0x3333333333333333) << 2) | ((v & 0xCCCCCCCCCCCCCCCC) >> 2); + v = ((v & 0x5555555555555555) << 1) | ((v & 0xAAAAAAAAAAAAAAAA) >> 1); + return v; +} diff --git a/text.hpp b/text.hpp index 8909a8f38..a89386daa 100644 --- a/text.hpp +++ b/text.hpp @@ -11,5 +11,6 @@ std::string format_commandline(int argc, char **argv); unsigned long long fnv1a(std::string const &s); 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); #endif diff --git a/tile.cpp b/tile.cpp index 157b26d2d..fef8fad57 100644 --- a/tile.cpp +++ b/tile.cpp @@ -199,6 +199,22 @@ struct coalindexcmp_comparator { } }; +static unsigned long long calculate_drop_sequence(serial_feature const &sf); + +struct drop_sequence_cmp { + bool operator()(const serial_feature &a, const serial_feature &b) { + unsigned long long a_seq = calculate_drop_sequence(a); + unsigned long long b_seq = calculate_drop_sequence(b); + + // sorts backwards, to put the features that would be dropped last, first here + if (a_seq > b_seq) { + return true; + } else { + return false; + } + } +}; + // retrieve an attribute key or value from the string pool and return it as mvt_value static mvt_value retrieve_string(long long off, const char *stringpool, std::shared_ptr const &tile_stringpool) { int type = stringpool[off]; @@ -408,6 +424,11 @@ static std::vector disassemble_multiplier_clusters(std::vector 1) { + std::sort(cluster.begin() + 1, cluster.end(), drop_sequence_cmp()); + } + for (auto const &feature : cluster) { out.push_back(std::move(feature)); } @@ -673,7 +694,9 @@ static void *simplification_worker(void *v) { to_tile_scale(geom, z, out_detail); } - (*features)[i].index = i; + if ((*features)[i].index == 0) { + (*features)[i].index = i; + } (*features)[i].geometry = std::move(geom); } @@ -801,6 +824,28 @@ static long long choose_minextent(std::vector &extents, double f, lon return extents[ix]; } +static unsigned long long choose_mindrop_sequence(std::vector &drop_sequences, double f, unsigned long long existing_drop_sequence) { + if (drop_sequences.size() == 0) { + return ULLONG_MAX; + } + + std::sort(drop_sequences.begin(), drop_sequences.end()); + + size_t ix = (drop_sequences.size() - 1) * (1 - f); + while (ix + 1 < drop_sequences.size() && drop_sequences[ix] == existing_drop_sequence) { + ix++; + } + + return drop_sequences[ix]; +} + +static unsigned long long calculate_drop_sequence(serial_feature const &sf) { + unsigned long long zoom = std::min(std::max((unsigned long long) sf.feature_minzoom, 0ULL), 31ULL); + unsigned long long out = zoom << (64 - 5); // top bits are the zoom level: top-priority features are those that appear in the low zooms + out |= bit_reverse(sf.index) & ~(31ULL << (64 - 5)); // remaining bits are from the inverted indes, which should incrementally fill in spatially + return ~out; // lowest numbered feature gets dropped first +} + // This is the block of parameters that are passed to write_tile() to read a tile // from the serialized form, do whatever needs to be done to it, and to write the // MVT-format output to the output tileset. @@ -846,8 +891,8 @@ struct write_tile_args { unsigned long long mingap_out = 0; long long minextent = 0; long long minextent_out = 0; - double fraction = 0; - double fraction_out = 0; + unsigned long long mindrop_sequence = 0; + unsigned long long mindrop_sequence_out = 0; size_t tile_size_out = 0; size_t feature_count_out = 0; const char *prefilter = NULL; @@ -976,7 +1021,7 @@ static void remove_attributes(serial_feature &sf, std::set const &e // --accumulate-attribute option so that features' attributes can be averaged in // without knowing their total count in advance. struct multiplier_state { - std::map count; + std::map count; }; // This function is called repeatedly from write_tile() to retrieve the next feature @@ -1113,30 +1158,29 @@ static serial_feature next_feature(decompressor *geoms, std::atomic * } if (sf.tippecanoe_minzoom == -1) { - bool keep = false; + sf.dropped = FEATURE_DROPPED; // dropped std::string &layername = (*layer_unmaps)[sf.segment][sf.layer]; auto count = multiplier_state->count.find(layername); if (count == multiplier_state->count.end()) { multiplier_state->count.emplace(layername, 0); count = multiplier_state->count.find(layername); - keep = true; // the first feature in each layer in each tile is always kept + sf.dropped = FEATURE_KEPT; // the first feature in each tile is always kept } - sf.dropped = true; - - if (z >= sf.feature_minzoom || keep) { - count->second = retain_points_multiplier; + if (z >= sf.feature_minzoom || sf.dropped == FEATURE_KEPT) { + count->second = 0; + sf.dropped = FEATURE_KEPT; // feature is kept if (retain_points_multiplier > 1) { sf.full_keys.push_back("tippecanoe:retain_points_multiplier_first"); sf.full_values.emplace_back(mvt_bool, "true"); } - } - - if (count->second > 0) { - sf.dropped = false; - count->second -= 1; + } else if (count->second + 1 < retain_points_multiplier) { + count->second++; + sf.dropped = count->second; + } else { + sf.dropped = FEATURE_DROPPED; } } @@ -1402,16 +1446,16 @@ void add_sample_to(std::vector &vals, T val, size_t &increment, size_t seq) { } void coalesce_geometry(serial_feature &p, serial_feature &sf) { - // XXX need another way to deduplicate here +// XXX need another way to deduplicate here #if 0 - // if the geometry being coalesced on is an exact duplicate - // of an existing geometry, just drop it +// if the geometry being coalesced on is an exact duplicate +// of an existing geometry, just drop it - for (size_t i = 0; i < p.geometries.size(); i++) { - if (p.geometries[i] == sf.geometry) { - return; - } - } +for (size_t i = 0; i < p.geometries.size(); i++) { +if (p.geometries[i] == sf.geometry) { +return; +} +} #endif size_t s = p.geometry.size(); @@ -1421,10 +1465,11 @@ void coalesce_geometry(serial_feature &p, serial_feature &sf) { } } -long long write_tile(decompressor *geoms, std::atomic *geompos_in, char *global_stringpool, int z, const unsigned tx, const unsigned ty, const int detail, int min_detail, sqlite3 *outdb, const char *outdir, int buffer, const char *fname, compressor **geomfile, int minzoom, int maxzoom, double todo, std::atomic *along, long long alongminus, double gamma, int child_shards, long long *pool_off, unsigned *initial_x, unsigned *initial_y, std::atomic *running, double simplification, std::vector> *layermaps, std::vector> *layer_unmaps, size_t tiling_seg, size_t pass, unsigned long long mingap, long long minextent, double fraction, const char *prefilter, const char *postfilter, json_object *filter, write_tile_args *arg, atomic_strategy *strategy, bool compressed_input, node *shared_nodes_map, size_t nodepos) { +long long write_tile(decompressor *geoms, std::atomic *geompos_in, char *global_stringpool, int z, const unsigned tx, const unsigned ty, const int detail, int min_detail, sqlite3 *outdb, const char *outdir, int buffer, const char *fname, compressor **geomfile, int minzoom, int maxzoom, double todo, std::atomic *along, long long alongminus, double gamma, int child_shards, long long *pool_off, unsigned *initial_x, unsigned *initial_y, std::atomic *running, double simplification, std::vector> *layermaps, std::vector> *layer_unmaps, size_t tiling_seg, size_t pass, unsigned long long mingap, long long minextent, unsigned long long mindrop_sequence, const char *prefilter, const char *postfilter, json_object *filter, write_tile_args *arg, atomic_strategy *strategy, bool compressed_input, node *shared_nodes_map, size_t nodepos) { double merge_fraction = 1; double mingap_fraction = 1; double minextent_fraction = 1; + double mindrop_sequence_fraction = 1; // allow larger tile sizes at low zooms when the retain-points-multiplier // is intended to allow more points through. scale back down toward a @@ -1471,8 +1516,6 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch long long count = 0; double accum_area = 0; - double fraction_accum = 0; - unsigned long long previndex = 0, density_previndex = 0, merge_previndex = 0; unsigned long long extent_previndex = 0; double scale = (double) (1LL << (64 - 2 * (z + 8))); @@ -1487,6 +1530,8 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch std::vector indices; std::vector extents; size_t extents_increment = 1; + std::vector drop_sequences; + size_t drop_sequences_increment = 1; double coalesced_area = 0; drawvec shared_nodes; @@ -1599,6 +1644,8 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch struct multiplier_state multiplier_state; size_t multiplier_seq = retain_points_multiplier - 1; + bool drop_rest = false; // are we dropping the remainder of a multiplier cluster whose first point was dropped? + for (size_t seq = 0;; seq++) { serial_feature sf; ssize_t which_serial_feature = -1; @@ -1633,7 +1680,18 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch extent_previndex = sf.index; } - if (sf.dropped) { + unsigned long long drop_sequence = 0; + if (additional[A_COALESCE_FRACTION_AS_NEEDED] || additional[A_DROP_FRACTION_AS_NEEDED] || prevent[P_DYNAMIC_DROP]) { + drop_sequence = calculate_drop_sequence(sf); + } + + if (sf.dropped == FEATURE_KEPT) { + // this is a new multiplier cluster, so stop dropping features + // that were dropped because the previous lead feature was dropped + drop_rest = false; + } + + if (sf.dropped == FEATURE_DROPPED || drop_rest) { multiplier_seq = (multiplier_seq + 1) % retain_points_multiplier; if (find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { @@ -1645,83 +1703,114 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch multiplier_seq = retain_points_multiplier - 1; } - if (gamma > 0) { - if (manage_gap(sf.index, &previndex, scale, gamma, &gap) && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { - preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); - strategy->dropped_by_gamma++; - continue; + // only the first point of a multiplier cluster can be dropped + // by any of these mechanisms. (but if one is, it drags the whole + // cluster down with it by setting drop_rest). + if (sf.dropped == FEATURE_KEPT) { + if (gamma > 0) { + if (manage_gap(sf.index, &previndex, scale, gamma, &gap) && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { + preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); + strategy->dropped_by_gamma++; + drop_rest = true; + continue; + } } - } - // Cap the indices, rather than sampling them like extents (areas), - // because choose_mingap cares about the distance between *surviving* - // features, not between *original* features, so we can't just store - // gaps rather than indices to be able to downsample them fairly. - // Hopefully the first 100K features in the tile are reasonably - // representative of the other features in the tile. - const size_t MAX_INDICES = 100000; + // Cap the indices, rather than sampling them like extents (areas), + // because choose_mingap cares about the distance between *surviving* + // features, not between *original* features, so we can't just store + // gaps rather than indices to be able to downsample them fairly. + // Hopefully the first 100K features in the tile are reasonably + // representative of the other features in the tile. + const size_t MAX_INDICES = 100000; - if (z <= cluster_maxzoom && (additional[A_CLUSTER_DENSEST_AS_NEEDED] || cluster_distance != 0)) { - if (indices.size() < MAX_INDICES) { - indices.push_back(sf.index); - } - if ((sf.index < merge_previndex || sf.index - merge_previndex < mingap) && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { - features[which_serial_feature].clustered++; - - if (features[which_serial_feature].t == VT_POINT && - features[which_serial_feature].geometry.size() == 1 && - sf.geometry.size() == 1) { - double x = (double) features[which_serial_feature].geometry[0].x * features[which_serial_feature].clustered; - double y = (double) features[which_serial_feature].geometry[0].y * features[which_serial_feature].clustered; - x += sf.geometry[0].x; - y += sf.geometry[0].y; - features[which_serial_feature].geometry[0].x = x / (features[which_serial_feature].clustered + 1); - features[which_serial_feature].geometry[0].y = y / (features[which_serial_feature].clustered + 1); + if (z <= cluster_maxzoom && (additional[A_CLUSTER_DENSEST_AS_NEEDED] || cluster_distance != 0)) { + if (indices.size() < MAX_INDICES) { + indices.push_back(sf.index); } + if ((sf.index < merge_previndex || sf.index - merge_previndex < mingap) && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { + features[which_serial_feature].clustered++; + + if (features[which_serial_feature].t == VT_POINT && + features[which_serial_feature].geometry.size() == 1 && + sf.geometry.size() == 1) { + double x = (double) features[which_serial_feature].geometry[0].x * features[which_serial_feature].clustered; + double y = (double) features[which_serial_feature].geometry[0].y * features[which_serial_feature].clustered; + x += sf.geometry[0].x; + y += sf.geometry[0].y; + features[which_serial_feature].geometry[0].x = x / (features[which_serial_feature].clustered + 1); + features[which_serial_feature].geometry[0].y = y / (features[which_serial_feature].clustered + 1); + } - preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); - strategy->coalesced_as_needed++; - continue; - } - } else if (additional[A_DROP_DENSEST_AS_NEEDED]) { - if (indices.size() < MAX_INDICES) { - indices.push_back(sf.index); - } - if (sf.index - merge_previndex < mingap && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { - preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); - strategy->dropped_as_needed++; - continue; - } - } else if (additional[A_COALESCE_DENSEST_AS_NEEDED]) { - if (indices.size() < MAX_INDICES) { - indices.push_back(sf.index); - } - if (sf.index - merge_previndex < mingap && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { - coalesce_geometry(features[which_serial_feature], sf); - features[which_serial_feature].coalesced = true; - coalesced_area += sf.extent; - preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); - strategy->coalesced_as_needed++; - continue; - } - } else if (additional[A_DROP_SMALLEST_AS_NEEDED]) { - add_sample_to(extents, sf.extent, extents_increment, seq); - // search here is for LLONG_MAX, not minextent, because we are dropping features, not coalescing them, - // so we shouldn't expect to find anything small that we can related this feature to. - if (minextent != 0 && sf.extent + coalesced_area <= minextent && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { - preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); - strategy->dropped_as_needed++; - continue; - } - } else if (additional[A_COALESCE_SMALLEST_AS_NEEDED]) { - add_sample_to(extents, sf.extent, extents_increment, seq); - if (minextent != 0 && sf.extent + coalesced_area <= minextent && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, minextent, multiplier_seq)) { - coalesce_geometry(features[which_serial_feature], sf); - features[which_serial_feature].coalesced = true; - coalesced_area += sf.extent; - preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); - strategy->coalesced_as_needed++; - continue; + preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); + strategy->coalesced_as_needed++; + drop_rest = true; + continue; + } + } else if (additional[A_DROP_DENSEST_AS_NEEDED]) { + if (indices.size() < MAX_INDICES) { + indices.push_back(sf.index); + } + if (sf.index - merge_previndex < mingap && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { + preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); + strategy->dropped_as_needed++; + drop_rest = true; + continue; + } + } else if (additional[A_COALESCE_DENSEST_AS_NEEDED]) { + if (indices.size() < MAX_INDICES) { + indices.push_back(sf.index); + } + if (sf.index - merge_previndex < mingap && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { + coalesce_geometry(features[which_serial_feature], sf); + features[which_serial_feature].coalesced = true; + coalesced_area += sf.extent; + preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); + strategy->coalesced_as_needed++; + drop_rest = true; + continue; + } + } else if (additional[A_DROP_SMALLEST_AS_NEEDED]) { + add_sample_to(extents, sf.extent, extents_increment, seq); + // search here is for LLONG_MAX, not minextent, because we are dropping features, not coalescing them, + // so we shouldn't expect to find anything small that we can related this feature to. + if (minextent != 0 && sf.extent + coalesced_area <= minextent && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { + preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); + strategy->dropped_as_needed++; + drop_rest = true; + continue; + } + } else if (additional[A_COALESCE_SMALLEST_AS_NEEDED]) { + add_sample_to(extents, sf.extent, extents_increment, seq); + if (minextent != 0 && sf.extent + coalesced_area <= minextent && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, minextent, multiplier_seq)) { + coalesce_geometry(features[which_serial_feature], sf); + features[which_serial_feature].coalesced = true; + coalesced_area += sf.extent; + preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); + strategy->coalesced_as_needed++; + drop_rest = true; + continue; + } + } else if (additional[A_DROP_FRACTION_AS_NEEDED] || prevent[P_DYNAMIC_DROP]) { + add_sample_to(drop_sequences, drop_sequence, drop_sequences_increment, seq); + // search here is for LLONG_MAX, not minextent, because we are dropping features, not coalescing them, + // so we shouldn't expect to find anything small that we can related this feature to. + if (mindrop_sequence != 0 && drop_sequence <= mindrop_sequence && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { + preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); + strategy->dropped_as_needed++; + drop_rest = true; + continue; + } + } else if (additional[A_COALESCE_FRACTION_AS_NEEDED]) { + add_sample_to(drop_sequences, drop_sequence, drop_sequences_increment, seq); + if (mindrop_sequence != 0 && drop_sequence <= mindrop_sequence && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { + coalesce_geometry(features[which_serial_feature], sf); + features[which_serial_feature].coalesced = true; + preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); + strategy->coalesced_as_needed++; + drop_rest = true; + continue; + } } } @@ -1737,21 +1826,6 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch } } - fraction_accum += fraction; - if (fraction_accum < 1 && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { - if (additional[A_COALESCE_FRACTION_AS_NEEDED]) { - coalesce_geometry(features[which_serial_feature], sf); - features[which_serial_feature].coalesced = true; - coalesced_area += sf.extent; - strategy->coalesced_as_needed++; - } else { - strategy->dropped_as_needed++; - } - preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); - continue; - } - fraction_accum -= 1; - bool still_need_simplification_after_reduction = false; if (sf.t == VT_POLYGON) { bool simplified_away_by_reduction = false; @@ -2271,22 +2345,26 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch line_detail++; continue; } - } else if (totalsize > layers.size() && (prevent[P_DYNAMIC_DROP] || additional[A_DROP_FRACTION_AS_NEEDED] || additional[A_COALESCE_FRACTION_AS_NEEDED])) { + } else if (totalsize > layers.size() && (additional[A_DROP_FRACTION_AS_NEEDED] || additional[A_COALESCE_FRACTION_AS_NEEDED] || prevent[P_DYNAMIC_DROP])) { // The 95% is a guess to avoid too many retries // and probably actually varies based on how much duplicated metadata there is - fraction = fraction * max_tile_features / totalsize * 0.95; - if (!quiet) { - fprintf(stderr, "Going to try keeping %0.2f%% of the features to make it fit\n", fraction * 100); - } - if ((additional[A_DROP_FRACTION_AS_NEEDED] || additional[A_COALESCE_FRACTION_AS_NEEDED]) && fraction < arg->fraction_out) { - arg->fraction_out = fraction; - arg->still_dropping = true; - } else if (prevent[P_DYNAMIC_DROP]) { - arg->still_dropping = true; + mindrop_sequence_fraction = mindrop_sequence_fraction * max_tile_features / totalsize * 0.95; + unsigned long long m = choose_mindrop_sequence(drop_sequences, mindrop_sequence_fraction, mindrop_sequence); + if (m != mindrop_sequence) { + mindrop_sequence = m; + if (mindrop_sequence > arg->mindrop_sequence_out) { + if (!prevent[P_DYNAMIC_DROP]) { + arg->mindrop_sequence_out = mindrop_sequence; + } + arg->still_dropping = true; + } + if (!quiet) { + fprintf(stderr, "Going to try keeping %0.2f%% of the features to make it fit\n", mindrop_sequence_fraction * 100.0); + } + line_detail++; // to keep it the same when the loop decrements it + continue; } - line_detail++; // to keep it the same when the loop decrements it - continue; } else { fprintf(stderr, "Try using --drop-fraction-as-needed or --drop-densest-as-needed.\n"); return -1; @@ -2379,21 +2457,23 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch line_detail++; continue; } - } else if (totalsize > layers.size() && (prevent[P_DYNAMIC_DROP] || additional[A_DROP_FRACTION_AS_NEEDED] || additional[A_COALESCE_FRACTION_AS_NEEDED])) { - // The 95% is a guess to avoid too many retries - // and probably actually varies based on how much duplicated metadata there is - - fraction = fraction * scaled_max_tile_size / (kept_adjust * compressed.size()) * 0.95; - if (!quiet) { - fprintf(stderr, "Going to try keeping %0.2f%% of the features to make it fit\n", fraction * 100); - } - if ((additional[A_DROP_FRACTION_AS_NEEDED] || additional[A_COALESCE_FRACTION_AS_NEEDED]) && fraction < arg->fraction_out) { - arg->fraction_out = fraction; - arg->still_dropping = true; - } else if (prevent[P_DYNAMIC_DROP]) { - arg->still_dropping = true; + } else if (totalsize > layers.size() && (additional[A_DROP_FRACTION_AS_NEEDED] || additional[A_COALESCE_FRACTION_AS_NEEDED] || prevent[P_DYNAMIC_DROP])) { + mindrop_sequence_fraction = mindrop_sequence_fraction * scaled_max_tile_size / (kept_adjust * compressed.size()) * 0.75; + unsigned long long m = choose_mindrop_sequence(drop_sequences, mindrop_sequence_fraction, mindrop_sequence); + if (m != mindrop_sequence) { + mindrop_sequence = m; + if (mindrop_sequence > arg->mindrop_sequence_out) { + if (!prevent[P_DYNAMIC_DROP]) { + arg->mindrop_sequence_out = mindrop_sequence; + } + arg->still_dropping = true; + } + if (!quiet) { + fprintf(stderr, "Going to try keeping %0.2f%% of the features to make it fit\n", mindrop_sequence_fraction * 100.0); + } + line_detail++; + continue; } - line_detail++; // to keep it the same when the loop decrements it } else { strategy->detail_reduced++; } @@ -2480,11 +2560,11 @@ void *run_thread(void *vargs) { dc.deserialize_uint(&x, &geompos); dc.deserialize_uint(&y, &geompos); #if 0 - // currently broken because also requires tracking nextzoom when skipping zooms - if (z != arg->zoom) { - fprintf(stderr, "Expected zoom %d, found zoom %d\n", arg->zoom, z); - exit(EXIT_IMPOSSIBLE); - } +// currently broken because also requires tracking nextzoom when skipping zooms +if (z != arg->zoom) { +fprintf(stderr, "Expected zoom %d, found zoom %d\n", arg->zoom, z); +exit(EXIT_IMPOSSIBLE); +} #endif if (arg->compressed) { @@ -2495,7 +2575,7 @@ void *run_thread(void *vargs) { // fprintf(stderr, "%d/%u/%u\n", z, x, y); - long long len = write_tile(&dc, &geompos, arg->global_stringpool, z, x, y, z == arg->maxzoom ? arg->full_detail : arg->low_detail, arg->min_detail, arg->outdb, arg->outdir, arg->buffer, arg->fname, arg->geomfile, arg->minzoom, arg->maxzoom, arg->todo, arg->along, geompos, arg->gamma, arg->child_shards, arg->pool_off, arg->initial_x, arg->initial_y, arg->running, arg->simplification, arg->layermaps, arg->layer_unmaps, arg->tiling_seg, arg->pass, arg->mingap, arg->minextent, arg->fraction, arg->prefilter, arg->postfilter, arg->filter, arg, arg->strategy, arg->compressed, arg->shared_nodes_map, arg->nodepos); + long long len = write_tile(&dc, &geompos, arg->global_stringpool, z, x, y, z == arg->maxzoom ? arg->full_detail : arg->low_detail, arg->min_detail, arg->outdb, arg->outdir, arg->buffer, arg->fname, arg->geomfile, arg->minzoom, arg->maxzoom, arg->todo, arg->along, geompos, arg->gamma, arg->child_shards, arg->pool_off, arg->initial_x, arg->initial_y, arg->running, arg->simplification, arg->layermaps, arg->layer_unmaps, arg->tiling_seg, arg->pass, arg->mingap, arg->minextent, arg->mindrop_sequence, arg->prefilter, arg->postfilter, arg->filter, arg, arg->strategy, arg->compressed, arg->shared_nodes_map, arg->nodepos); if (pthread_mutex_lock(&var_lock) != 0) { perror("pthread_mutex_lock"); @@ -2697,7 +2777,7 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std:: double zoom_gamma = gamma; unsigned long long zoom_mingap = ((1LL << (32 - z)) / 256 * cluster_distance) * ((1LL << (32 - z)) / 256 * cluster_distance); long long zoom_minextent = 0; - double zoom_fraction = 1; + unsigned long long zoom_mindrop_sequence = 0; size_t zoom_tile_size = 0; size_t zoom_feature_count = 0; @@ -2725,8 +2805,8 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std:: args[thread].mingap_out = zoom_mingap; args[thread].minextent = zoom_minextent; args[thread].minextent_out = zoom_minextent; - args[thread].fraction = zoom_fraction; - args[thread].fraction_out = zoom_fraction; + args[thread].mindrop_sequence = zoom_mindrop_sequence; + args[thread].mindrop_sequence_out = zoom_mindrop_sequence; args[thread].tile_size_out = 0; args[thread].feature_count_out = 0; args[thread].child_shards = TEMP_FILES / threads; @@ -2801,8 +2881,8 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std:: zoom_minextent = args[thread].minextent_out; again = true; } - if (args[thread].fraction_out < zoom_fraction) { - zoom_fraction = args[thread].fraction_out; + if (args[thread].mindrop_sequence_out > zoom_mindrop_sequence) { + zoom_mindrop_sequence = args[thread].mindrop_sequence_out; again = true; } if (args[thread].tile_size_out > zoom_tile_size) { diff --git a/unit.cpp b/unit.cpp index 0dc98f61d..eb5eb4c73 100644 --- a/unit.cpp +++ b/unit.cpp @@ -99,3 +99,9 @@ TEST_CASE("Tile-join cache", "tile cache") { REQUIRE(tc.overzoom_cache.size() == 5); REQUIRE(tc.overzoom_cache.find(zxy(11, 5, 8)) == tc.overzoom_cache.end()); } + +TEST_CASE("Bit reversal", "bit reversal") { + REQUIRE(bit_reverse(1) == 0x8000000000000000); + REQUIRE(bit_reverse(0x1234567812489BCF) == 0xF3D912481E6A2C48); + REQUIRE(bit_reverse(0xF3D912481E6A2C48) == 0x1234567812489BCF); +} diff --git a/version.hpp b/version.hpp index 21c99be6b..b99ce27fe 100644 --- a/version.hpp +++ b/version.hpp @@ -1,6 +1,6 @@ #ifndef VERSION_HPP #define VERSION_HPP -#define VERSION "v2.42.0" +#define VERSION "v2.43.0" #endif diff --git a/write_json.cpp b/write_json.cpp index 02fbec9d4..307428e99 100644 --- a/write_json.cpp +++ b/write_json.cpp @@ -15,6 +15,7 @@ #include "write_json.hpp" #include "milo/dtoa_milo.h" #include "errors.hpp" +#include "serial.hpp" void json_writer::json_adjust() { if (state.size() == 0) { @@ -267,7 +268,7 @@ void write_coords(json_writer &state, lonlat const &ll, double scale) { } } -void layer_to_geojson(mvt_layer const &layer, unsigned z, unsigned x, unsigned y, bool comma, bool name, bool zoom, bool dropped, unsigned long long index, long long sequence, long long extent, bool complain, json_writer &state, double scale) { +void layer_to_geojson(mvt_layer const &layer, unsigned z, unsigned x, unsigned y, bool comma, bool name, bool zoom, bool write_dropped, unsigned long long index, long long sequence, long long extent, bool complain, json_writer &state, double scale) { for (size_t f = 0; f < layer.features.size(); f++) { mvt_feature const &feat = layer.features[f]; @@ -297,9 +298,9 @@ void layer_to_geojson(mvt_layer const &layer, unsigned z, unsigned x, unsigned y state.json_write_unsigned(z); } - if (dropped) { + if (write_dropped) { state.json_write_string("dropped"); - state.json_write_bool(feat.dropped); + state.json_write_bool(feat.dropped == FEATURE_DROPPED); } if (index != 0) {