From e8ca6c6de34b8d642fce40682e60adbe44ab4eca Mon Sep 17 00:00:00 2001 From: Erica Fischer Date: Fri, 5 Jan 2024 11:07:14 -0800 Subject: [PATCH] Slightly less compression makes as-needed dropping twice as fast (#182) * Slightly less compression makes as-needed dropping twice as fast * Update changelog --- CHANGELOG.md | 4 + mvt.cpp | 2 +- tests/muni/decode/multi.mbtiles.stats.json | 4 +- tests/muni/out/-Z11_-z13_-M10000.json | 2 +- tests/muni/out/-Z11_-z13_-M10000_-aG.json | 1106 ++++++++--------- tests/muni/out/-Z11_-z13_-M10000_-ad.json | 916 +++++++------- tests/muni/out/-Z11_-z13_-M10000_-pd.json | 532 ++++---- tests/muni/out/-Z11_-z13_-M5000_-as.json | 58 +- ...e_-zg_-M5000_--drop-densest-as-needed.json | 10 +- ..._-zg_-M5000_--drop-fraction-as-needed.json | 16 +- ..._-zg_-M5000_--drop-smallest-as-needed.json | 2 +- .../-ae_-zg_-M5000_--force-feature-limit.json | 16 +- ...5_-M5000_--coalesce-densest-as-needed.json | 2 +- ..._-M5000_--coalesce-fraction-as-needed.json | 44 +- ..._-M5000_--coalesce-smallest-as-needed.json | 2 +- .../-z5_-M5000_--drop-smallest-as-needed.json | 2 +- .../-z5_-M500_--drop-smallest-as-needed.json | 2 +- ...end-zooms-if-still-dropping-maximum_2.json | 2 +- ...-M10000_--coalesce-smallest-as-needed.json | 2 +- ...-z1_-M10000_--drop-smallest-as-needed.json | 2 +- version.hpp | 2 +- 21 files changed, 1353 insertions(+), 1375 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e6e80b22..85eb7f027 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 2.40.0 + +* Slightly reduce compression aggressiveness to improve as-needed dropping speed + # 2.39.0 * Reduce memory usage during tiling diff --git a/mvt.cpp b/mvt.cpp index 4c21716ea..91062eca4 100644 --- a/mvt.cpp +++ b/mvt.cpp @@ -89,7 +89,7 @@ int compress(std::string const &input, std::string &output, bool gz) { deflate_s.opaque = Z_NULL; deflate_s.avail_in = 0; deflate_s.next_in = Z_NULL; - deflateInit2(&deflate_s, Z_BEST_COMPRESSION, Z_DEFLATED, gz ? 31 : 15, 8, Z_DEFAULT_STRATEGY); + deflateInit2(&deflate_s, Z_DEFAULT_COMPRESSION, Z_DEFLATED, gz ? 31 : 15, 8, Z_DEFAULT_STRATEGY); deflate_s.next_in = (Bytef *) input.data(); deflate_s.avail_in = input.size(); size_t length = 0; diff --git a/tests/muni/decode/multi.mbtiles.stats.json b/tests/muni/decode/multi.mbtiles.stats.json index 07c42ffac..a572a3ee7 100644 --- a/tests/muni/decode/multi.mbtiles.stats.json +++ b/tests/muni/decode/multi.mbtiles.stats.json @@ -1,9 +1,9 @@ [ { "zoom": 11, "x": 326, "y": 791, "bytes": 376, "compressed": true, "layers": { "muni": { "points": 14, "lines": 0, "polygons": 0, "extent": 4096 } } } , -{ "zoom": 11, "x": 327, "y": 792, "bytes": 6533, "compressed": true, "layers": { "muni": { "points": 528, "lines": 0, "polygons": 0, "extent": 4096 } } } +{ "zoom": 11, "x": 327, "y": 792, "bytes": 6543, "compressed": true, "layers": { "muni": { "points": 528, "lines": 0, "polygons": 0, "extent": 4096 } } } , -{ "zoom": 11, "x": 327, "y": 791, "bytes": 45265, "compressed": true, "layers": { "muni": { "points": 4284, "lines": 0, "polygons": 0, "extent": 4096 }, "subway": { "points": 19, "lines": 0, "polygons": 0, "extent": 4096 } } } +{ "zoom": 11, "x": 327, "y": 791, "bytes": 45475, "compressed": true, "layers": { "muni": { "points": 4284, "lines": 0, "polygons": 0, "extent": 4096 }, "subway": { "points": 19, "lines": 0, "polygons": 0, "extent": 4096 } } } , { "zoom": 11, "x": 954, "y": 791, "bytes": 75, "compressed": true, "layers": { "muni": { "points": 12, "lines": 0, "polygons": 0, "extent": 4096 } } } ] diff --git a/tests/muni/out/-Z11_-z13_-M10000.json b/tests/muni/out/-Z11_-z13_-M10000.json index 8bf4060f0..28c4072e5 100644 --- a/tests/muni/out/-Z11_-z13_-M10000.json +++ b/tests/muni/out/-Z11_-z13_-M10000.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M10000.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":18540,\"detail_reduced\":4,\"tile_size_desired\":10857},{\"dropped_by_rate\":6391,\"detail_reduced\":3,\"tile_size_desired\":10700},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":18540,\"detail_reduced\":4,\"tile_size_desired\":10887},{\"dropped_by_rate\":6391,\"detail_reduced\":3,\"tile_size_desired\":10721},{}]", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/muni/out/-Z11_-z13_-M10000_-aG.json b/tests/muni/out/-Z11_-z13_-M10000_-aG.json index 4941aba46..2222049b4 100644 --- a/tests/muni/out/-Z11_-z13_-M10000_-aG.json +++ b/tests/muni/out/-Z11_-z13_-M10000_-aG.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M10000_-aG.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":14925,\"dropped_by_gamma\":53,\"detail_reduced\":3,\"tile_size_desired\":10857},{\"dropped_by_rate\":5252,\"dropped_by_gamma\":155,\"detail_reduced\":2,\"tile_size_desired\":10700},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":14925,\"dropped_by_gamma\":53,\"detail_reduced\":3,\"tile_size_desired\":10887},{\"dropped_by_rate\":6391,\"dropped_by_gamma\":190,\"detail_reduced\":3,\"tile_size_desired\":10721},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -1760,34 +1760,34 @@ ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1583 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 1024 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 512 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.789031 ] } } , { "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } , { "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788828 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779059 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510347, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } , { "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } , @@ -1795,389 +1795,389 @@ , { "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502966, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } , { "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503910, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507687, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.775600 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , { "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.763998 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.756805 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499447, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } , { "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.779806 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488117, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.776007 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492838, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489576, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785707 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780280 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.780620 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.772682 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772750 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772682 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760808 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.765083 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763455 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761283 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761419 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.755991 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753955 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754090 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506399, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745404 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747508 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745404 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.753208 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.741807 ] } } , { "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.505283, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742146 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500820, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751783 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490864, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.748186 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738549 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485628, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750426 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746490 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745268 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.742892 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729860 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } , { "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } , @@ -2187,65 +2187,65 @@ , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , { "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719066 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784418 ] } } , { "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.471123, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.780959 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.783130 ] } } +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.777024 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , @@ -2253,39 +2253,39 @@ , { "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.466230, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773496 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , { "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783197 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784147 ] } } , @@ -2295,51 +2295,51 @@ , { "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461681, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.774446 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774650 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765558 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765694 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764133 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } , @@ -2347,557 +2347,557 @@ , { "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.759180 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754226 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.758366 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.756533 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756466 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.764405 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764473 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758569 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.758434 ] } } +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758366 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754701 ] } } , { "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } , { "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.755312 ] } } +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784418 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787132 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784825 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775464 ] } } , { "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773089 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775735 ] } } , { "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773903 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.774175 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774446 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.785165 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783401 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438936, 37.780416 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.780687 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777838 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.777838 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774650 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774853 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774921 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.778177 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775125 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775464 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768204 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769561 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766847 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764744 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.769901 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.768951 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767119 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.770443 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766101 ] } } , { "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.445889, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } , { "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } , { "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } , { "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761894 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.757823 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.756466 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.753955 ] } } +{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754023 ] } } , { "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768951 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } , { "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764133 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764201 ] } } , { "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } , { "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762708 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760605 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759180 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748661 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746761 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748933 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.750697 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.749136 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743164 ] } } , -{ "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.470093, 37.741535 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741196 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } , { "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } , { "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751512 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } , -{ "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/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 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 & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.745268 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746354 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746422 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740449 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } , { "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736716 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731014 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.731014 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.730946 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474642, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734612 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731285 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.720084 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724361 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724429 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } , { "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } , @@ -2905,95 +2905,95 @@ , { "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.750426 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.748051 ] } } , { "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.748933 ] } } +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.746897 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.746693 ] } } , { "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740788 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.741128 ] } } , { "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.446661, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736580 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736648 ] } } , { "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , { "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746897 ] } } +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745268 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.749476 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751376 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.751512 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433786, 37.749611 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.747033 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.745607 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } , @@ -3001,25 +3001,25 @@ , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } , { "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738141 ] } } , @@ -3029,176 +3029,176 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727891 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.731625 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728977 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727755 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.727688 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730335 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , { "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733458 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731285 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724633 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724701 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726330 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , { "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.430010, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743503 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733186 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724768 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } , { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.717300 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 1024 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 512 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } , { "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } diff --git a/tests/muni/out/-Z11_-z13_-M10000_-ad.json b/tests/muni/out/-Z11_-z13_-M10000_-ad.json index 0cfd6ef16..5d327d2a6 100644 --- a/tests/muni/out/-Z11_-z13_-M10000_-ad.json +++ b/tests/muni/out/-Z11_-z13_-M10000_-ad.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M10000_-ad.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4080,\"dropped_as_needed\":99,\"tile_size_desired\":10857},{\"dropped_by_rate\":2974,\"dropped_as_needed\":227,\"tile_size_desired\":10700},{}]", +"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},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -35,7 +35,7 @@ , { "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "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 ] } } , @@ -49,7 +49,7 @@ , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } , @@ -63,7 +63,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.714856 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , @@ -77,7 +77,7 @@ , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710918 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.714347 ] } } , @@ -91,7 +91,7 @@ , { "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 ] } } , @@ -105,7 +105,7 @@ , { "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 ] } } , @@ -117,10 +117,10 @@ , { "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 ] } } , +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +, { "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 ] } } @@ -131,10 +131,10 @@ , { "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 ] } } @@ -145,10 +145,10 @@ , { "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 ] } } +, { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } @@ -159,10 +159,10 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } -, { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } , +{ "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 ] } } @@ -183,7 +183,7 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801002 ] } } , -{ "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.456789, 37.803918 ] } } , { "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803749 ] } } , @@ -197,7 +197,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800324 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } , @@ -211,7 +211,7 @@ , { "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 ] } } , @@ -225,7 +225,7 @@ , { "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795848 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792728 ] } } , { "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } , @@ -239,7 +239,7 @@ , { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504210, 37.780993 ] } } +{ "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 ] } } , @@ -253,7 +253,7 @@ , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760503 ] } } +{ "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 ] } } , @@ -265,10 +265,10 @@ , { "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779568 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } -, { "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 ] } } @@ -279,10 +279,10 @@ , { "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.784079 ] } } -, { "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": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782214 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484469, 37.778042 ] } } @@ -293,10 +293,10 @@ , { "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 ] } } @@ -307,10 +307,10 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765117 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480350, 37.765185 ] } } -, { "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.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 ] } } @@ -321,10 +321,10 @@ , { "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 ] } } @@ -335,10 +335,10 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } -, { "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.742010 ] } } , +{ "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 ] } } @@ -349,10 +349,10 @@ , { "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 ] } } @@ -361,12 +361,12 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } -, { "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 ] } } @@ -375,12 +375,12 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } -, { "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": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727111 ] } } +, { "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725956 ] } } @@ -389,12 +389,12 @@ , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } -, { "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780518 ] } } , +{ "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 ] } } @@ -403,12 +403,12 @@ , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773055 ] } } -, { "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } , +{ "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 ] } } @@ -417,12 +417,12 @@ , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } -, { "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781061 ] } } , { "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 ] } } @@ -431,116 +431,114 @@ , { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765660 ] } } -, { "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765999 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763896 ] } } +, { "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761928 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759112 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758196 ] } } -, { "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } , { "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": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } -, { "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 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782960 ] } } -, { "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": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } -, { "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777804 ] } } , { "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 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765558 ] } } , +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } +, { "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.770206 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } -, { "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } , { "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760910 ] } } , +{ "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 ] } } @@ -549,9 +547,9 @@ , { "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.769120 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } , { "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.762641 ] } } , @@ -561,12 +559,12 @@ , { "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.434816, 37.760842 ] } } +, { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , { "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,12 +573,12 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } , +{ "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": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740992 ] } } -, { "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.740856 ] } } @@ -589,12 +587,12 @@ , { "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": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745302 ] } } -, { "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 ] } } @@ -603,12 +601,12 @@ , { "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": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731625 ] } } -, { "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 ] } } @@ -617,12 +615,12 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , +{ "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.475286, 37.721102 ] } } , { "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } -, { "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719575 ] } } @@ -631,9 +629,9 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } , @@ -645,9 +643,9 @@ , { "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445760, 37.750392 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445760, 37.750392 ] } } , { "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } , @@ -659,9 +657,9 @@ , { "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738175 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , { "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } , @@ -673,9 +671,9 @@ , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.751274 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749611 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744691 ] } } +{ "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 ] } } , @@ -687,9 +685,9 @@ , { "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , { "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.728502 ] } } , @@ -701,9 +699,9 @@ , { "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721034 ] } } +{ "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 ] } } , @@ -715,7 +713,7 @@ , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722800 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } , @@ -729,7 +727,7 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } +{ "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 ] } } , @@ -743,7 +741,7 @@ , { "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } +{ "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 ] } } , @@ -757,7 +755,7 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800459 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } , @@ -771,7 +769,7 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793813 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } +{ "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 ] } } , @@ -785,7 +783,7 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } +{ "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 ] } } , @@ -799,7 +797,7 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795407 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792863 ] } } , @@ -909,7 +907,7 @@ , { "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373919, 37.823514 ] } } +{ "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 ] } } , @@ -923,7 +921,7 @@ , { "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 ] } } , @@ -937,7 +935,7 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , @@ -951,7 +949,7 @@ , { "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 ] } } , @@ -965,7 +963,7 @@ , { "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778686 ] } } , @@ -979,8 +977,6 @@ , { "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774209 ] } } -, { "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 ] } } @@ -991,10 +987,10 @@ , { "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } -, { "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.428894, 37.767288 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } , { "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764710 ] } } @@ -1005,10 +1001,10 @@ , { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } -, { "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 ] } } @@ -1019,10 +1015,10 @@ , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } -, { "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } , +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } +, { "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 ] } } @@ -1033,10 +1029,10 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } -, { "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785368 ] } } , +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +, { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } , { "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784690 ] } } @@ -1045,10 +1041,10 @@ , { "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 ] } } @@ -1059,10 +1055,10 @@ , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } -, { "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 ] } } @@ -1073,10 +1069,10 @@ , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } -, { "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 ] } } @@ -1085,12 +1081,12 @@ , { "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } -, { "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,12 +1095,12 @@ , { "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764914 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766237 ] } } -, { "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } , { "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 ] } } @@ -1113,12 +1109,12 @@ , { "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 ] } } @@ -1127,12 +1123,12 @@ , { "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763353 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } -, { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395978, 37.758400 ] } } , { "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 ] } } @@ -1141,12 +1137,12 @@ , { "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755685 ] } } -, { "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } , { "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 ] } } @@ -1155,12 +1151,12 @@ , { "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736343 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742010 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.740992 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } , +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739397 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } , { "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.752055 ] } } @@ -1169,102 +1165,100 @@ , { "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 ] } } , +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +, { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } , { "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 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728604 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.728468 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723105 ] } } , +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } +, { "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } , { "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": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } -, { "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": "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 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739125 ] } } , +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752360 ] } } +, { "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.752360 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749849 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745981 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } -, { "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,12 +1267,12 @@ , { "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727993 ] } } , +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734781 ] } } +, { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , { "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726126 ] } } -, { "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 ] } } @@ -1287,12 +1281,12 @@ , { "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +, { "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.721442 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } -, { "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734781 ] } } @@ -1301,12 +1295,12 @@ , { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } , +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +, { "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729215 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390399, 37.728061 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.725312 ] } } -, { "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 ] } } @@ -1315,12 +1309,12 @@ , { "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 & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } -, { "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 ] } } @@ -1329,12 +1323,12 @@ , { "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 ] } } @@ -1343,12 +1337,12 @@ , { "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 ] } } @@ -1357,9 +1351,9 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +{ "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 ] } } , @@ -1373,6 +1367,8 @@ { "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 ] } } ] } ] } @@ -1477,7 +1473,7 @@ , { "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 ] } } , @@ -1493,7 +1489,7 @@ , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710120 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.716418 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.715976 ] } } , @@ -1509,7 +1505,7 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710290 ] } } +{ "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 ] } } , @@ -1525,7 +1521,7 @@ , { "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 ] } } , @@ -1541,7 +1537,7 @@ , { "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 ] } } , @@ -1555,10 +1551,10 @@ , { "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.714143 ] } } -, { "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } , +{ "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 ] } } @@ -1570,8 +1566,6 @@ { "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 ] } } ] } ] } , @@ -1653,7 +1647,7 @@ , { "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } , { "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781790 ] } } , @@ -1669,7 +1663,7 @@ , { "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 ] } } , @@ -1685,7 +1679,7 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494576, 37.775888 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776024 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496336, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772089 ] } } , @@ -1701,7 +1695,7 @@ , { "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 ] } } , { "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.783944 ] } } , @@ -1717,7 +1711,7 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482688, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478440, 37.784232 ] } } +{ "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 ] } } , @@ -1731,10 +1725,10 @@ , { "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 ] } } @@ -1747,10 +1741,10 @@ , { "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 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495649, 37.760758 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495520, 37.758892 ] } } @@ -1763,7 +1757,7 @@ , { "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 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } , @@ -1779,7 +1773,7 @@ , { "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480371, 37.765185 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765372 ] } } , @@ -1793,10 +1787,10 @@ , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.761453 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761572 ] } } -, { "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481101, 37.757874 ] } } , +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } +, { "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 ] } } @@ -1809,10 +1803,10 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761572 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.757891 ] } } -, { "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.756008 ] } } , +{ "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 ] } } @@ -1825,10 +1819,10 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753123 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749323 ] } } -, { "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 & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504961, 37.745590 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504790, 37.745421 ] } } @@ -1841,10 +1835,10 @@ , { "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 ] } } @@ -1857,10 +1851,10 @@ , { "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 ] } } @@ -1871,12 +1865,12 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495005, 37.751800 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749798 ] } } -, { "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 ] } } @@ -1887,12 +1881,12 @@ , { "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 ] } } @@ -1903,12 +1897,12 @@ , { "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 ] } } @@ -1919,12 +1913,12 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748712 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746473 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742672 ] } } , +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742774 ] } } +, { "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 ] } } @@ -1933,14 +1927,14 @@ , { "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 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493675, 37.733356 ] } } , +{ "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 ] } } @@ -1949,12 +1943,12 @@ , { "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 ] } } , { "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.728774 ] } } @@ -1965,12 +1959,12 @@ , { "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 ] } } @@ -1981,12 +1975,12 @@ , { "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": "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 ] } } @@ -1997,12 +1991,12 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470586, 37.780840 ] } } -, { "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468956, 37.784554 ] } } , { "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 ] } } @@ -2011,14 +2005,14 @@ , { "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 ] } } @@ -2027,14 +2021,14 @@ , { "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469814, 37.773174 ] } } -, { "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.775023 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773479 ] } } , { "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 ] } } @@ -2043,14 +2037,14 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.781128 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780874 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461145, 37.781044 ] } } , { "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786029 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.785589 ] } } , +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } +, { "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 ] } } @@ -2059,22 +2053,20 @@ , { "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.781417 ] } } -, { "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781078 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781518 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.777279 ] } } , +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776973 ] } } +, { "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775447 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461746, 37.777397 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.773734 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } -, { "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777075 ] } } @@ -2083,14 +2075,14 @@ , { "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } , +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.774599 ] } } +, { "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 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765558 ] } } -, { "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765643 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770426 ] } } @@ -2099,14 +2091,14 @@ , { "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.766016 ] } } , +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765847 ] } } +, { "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 ] } } @@ -2115,14 +2107,14 @@ , { "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 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473204, 37.754243 ] } } , { "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 ] } } @@ -2131,28 +2123,28 @@ , { "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 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461874, 37.766050 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462840, 37.762386 ] } } -, { "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": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766084 ] } } -, { "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } , { "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.758417 ] } } @@ -2161,14 +2153,14 @@ , { "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": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } -, { "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450244, 37.786708 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } @@ -2177,14 +2169,14 @@ , { "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 ] } } @@ -2193,14 +2185,14 @@ , { "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782672 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782977 ] } } +, { "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.777753 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449644, 37.778347 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.775413 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453120, 37.774904 ] } } -, { "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774022 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } @@ -2209,14 +2201,14 @@ , { "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": "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.443185, 37.777262 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.776939 ] } } @@ -2225,12 +2217,12 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } , +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446511, 37.773920 ] } } +, { "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445610, 37.771953 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774192 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774429 ] } } -, { "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 ] } } @@ -2241,12 +2233,12 @@ , { "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": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } -, { "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } @@ -2257,12 +2249,12 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } , +{ "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": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.781502 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779280 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777313 ] } } @@ -2273,12 +2265,12 @@ , { "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": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.774718 ] } } -, { "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773174 ] } } @@ -2289,9 +2281,9 @@ , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775413 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } +{ "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 ] } } , @@ -2305,9 +2297,9 @@ , { "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769884 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450202, 37.766830 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764591 ] } } , @@ -2321,9 +2313,9 @@ , { "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769935 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769002 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.767254 ] } } +{ "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 ] } } , @@ -2335,12 +2327,12 @@ , { "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": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765813 ] } } -, { "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 ] } } @@ -2351,12 +2343,12 @@ , { "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.760910 ] } } , +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760927 ] } } +, { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446125, 37.758942 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758654 ] } } , -{ "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 ] } } @@ -2367,9 +2359,9 @@ , { "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.757789 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.756449 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758213 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } +{ "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 ] } } , @@ -2383,9 +2375,9 @@ , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.767611 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.768951 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.769392 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.767611 ] } } , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } , @@ -2395,10 +2387,10 @@ , { "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 ] } } @@ -2411,9 +2403,9 @@ , { "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.754040 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755804 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757399 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755804 ] } } , { "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435138, 37.760944 ] } } , @@ -2427,7 +2419,7 @@ , { "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.750799 ] } } +{ "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 ] } } , @@ -2443,7 +2435,7 @@ , { "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752716 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.749153 ] } } +{ "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 ] } } , @@ -2459,7 +2451,7 @@ , { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741518 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } +{ "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 ] } } , @@ -2475,7 +2467,7 @@ , { "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.465737, 37.740839 ] } } +{ "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 ] } } , @@ -2491,7 +2483,7 @@ , { "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.751495 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748271 ] } } +{ "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 ] } } , @@ -2519,7 +2511,7 @@ , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455480, 37.743113 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736733 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.741976 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.734713 ] } } , @@ -2535,7 +2527,7 @@ , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.734306 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.731625 ] } } +{ "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 ] } } , @@ -2551,7 +2543,7 @@ , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469471, 37.729928 ] } } +{ "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 ] } } , @@ -2645,7 +2637,7 @@ , { "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } , { "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746880 ] } } , @@ -2661,7 +2653,7 @@ , { "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.450609, 37.740195 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740178 ] } } , { "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450716, 37.738175 ] } } , @@ -2677,7 +2669,7 @@ , { "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752411 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442605, 37.749255 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.750969 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.752784 ] } } , @@ -2693,7 +2685,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.752072 ] } } +{ "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 ] } } , @@ -2707,7 +2699,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435868, 37.745641 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744674 ] } } , { "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.748068 ] } } , @@ -2723,7 +2715,7 @@ , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740195 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.738667 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740025 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } , @@ -2739,7 +2731,7 @@ , { "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731608 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.731608 ] } } , { "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , @@ -2755,7 +2747,7 @@ , { "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734561 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.731472 ] } } , { "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.726041 ] } } , @@ -2771,7 +2763,7 @@ , { "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 ] } } , @@ -2785,10 +2777,10 @@ , { "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 ] } } @@ -2801,10 +2793,10 @@ , { "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446554, 37.720610 ] } } -, { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.720457 ] } } , +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.722851 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722817 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.720271 ] } } @@ -2817,10 +2809,10 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731506 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.728994 ] } } -, { "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 ] } } @@ -2833,10 +2825,10 @@ , { "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433164, 37.729588 ] } } -, { "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": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441189, 37.727145 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441232, 37.723258 ] } } @@ -2849,10 +2841,10 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724650 ] } } -, { "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724718 ] } } , +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723903 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.726347 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.725515 ] } } @@ -2863,12 +2855,12 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } -, { "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": "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 ] } } @@ -2879,12 +2871,12 @@ , { "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767662 ] } } , -{ "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": "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 ] } } @@ -2895,10 +2887,10 @@ , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } -, { "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } , +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +, { "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } , { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } @@ -2999,7 +2991,7 @@ , { "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.442863, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.798883 ] } } , { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , @@ -3015,7 +3007,7 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439344, 37.800358 ] } } +{ "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 ] } } , @@ -3031,7 +3023,7 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.799713 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436039, 37.799595 ] } } , @@ -3047,7 +3039,7 @@ , { "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 ] } } , @@ -3063,7 +3055,7 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792202 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , @@ -3077,10 +3069,10 @@ , { "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.790099 ] } } -, { "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": "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 ] } } @@ -3093,10 +3085,10 @@ , { "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": "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 ] } } @@ -3183,7 +3175,7 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.707132 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.706283 ] } } , { "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.709051 ] } } , @@ -3199,7 +3191,7 @@ , { "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712632 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.710205 ] } } +{ "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 ] } } , @@ -3215,7 +3207,7 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716265 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.714669 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } , @@ -3231,7 +3223,7 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712225 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.711139 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713549 ] } } , { "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.712021 ] } } , @@ -3247,7 +3239,7 @@ , { "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711206 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.710969 ] } } +{ "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 ] } } , @@ -3335,7 +3327,7 @@ , { "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } , -{ "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.421663, 37.787827 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } , @@ -3351,7 +3343,7 @@ , { "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 ] } } , @@ -3367,7 +3359,7 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.776244 ] } } , -{ "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 ] } } , @@ -3383,7 +3375,7 @@ , { "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 ] } } , @@ -3399,7 +3391,7 @@ , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.786352 ] } } +{ "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 ] } } , @@ -3413,10 +3405,10 @@ , { "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781688 ] } } -, { "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 ] } } @@ -3429,10 +3421,10 @@ , { "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 ] } } +, { "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786097 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784096 ] } } @@ -3445,6 +3437,8 @@ , { "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782095 ] } } +, { "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } @@ -3457,7 +3451,7 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.775362 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777703 ] } } , @@ -3469,10 +3463,10 @@ , { "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.772988 ] } } -, { "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.772801 ] } } , +{ "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 ] } } @@ -3483,10 +3477,10 @@ , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410762, 37.779178 ] } } -, { "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": "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 ] } } @@ -3499,8 +3493,6 @@ , { "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769290 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767662 ] } } -, { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767814 ] } } , { "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } @@ -3515,10 +3507,10 @@ , { "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.428787, 37.764456 ] } } -, { "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 ] } } @@ -3531,10 +3523,10 @@ , { "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.764625 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } -, { "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": "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 ] } } @@ -3545,12 +3537,12 @@ , { "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.421727, 37.761758 ] } } -, { "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } , { "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 ] } } @@ -3561,12 +3553,12 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.768459 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.766203 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764998 ] } } , { "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765134 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.762624 ] } } +, { "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.765253 ] } } , { "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } @@ -3577,12 +3569,12 @@ , { "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769103 ] } } -, { "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.768103 ] } } , { "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 ] } } @@ -3593,12 +3585,12 @@ , { "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 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.755159 ] } } , +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416685, 37.755719 ] } } +, { "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } @@ -3607,14 +3599,14 @@ , { "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 ] } } @@ -3623,10 +3615,10 @@ , { "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784639 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784775 ] } } -, { "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783876 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784673 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } @@ -3637,12 +3629,12 @@ , { "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785521 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784334 ] } } -, { "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.783503 ] } } , { "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 ] } } @@ -3653,12 +3645,12 @@ , { "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.785962 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786335 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784639 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.786080 ] } } +, { "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.783994 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.783978 ] } } @@ -3669,12 +3661,12 @@ , { "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409217, 37.777923 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407844, 37.776634 ] } } -, { "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 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } @@ -3683,14 +3675,14 @@ , { "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778941 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.776159 ] } } -, { "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399433, 37.773462 ] } } , +{ "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 ] } } @@ -3699,14 +3691,14 @@ , { "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395313, 37.784520 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395012, 37.784096 ] } } -, { "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.782434 ] } } , { "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 ] } } @@ -3715,14 +3707,14 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783587 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389863, 37.779721 ] } } -, { "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 ] } } @@ -3731,22 +3723,20 @@ , { "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.394025, 37.776244 ] } } -, { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.776278 ] } } , { "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773157 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } , +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.778720 ] } } +, { "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778093 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772835 ] } } -, { "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } @@ -3755,14 +3745,14 @@ , { "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 ] } } @@ -3771,14 +3761,14 @@ , { "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": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766220 ] } } -, { "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764931 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } @@ -3787,14 +3777,14 @@ , { "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": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.755414 ] } } -, { "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 ] } } @@ -3803,28 +3793,28 @@ , { "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } , +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.759587 ] } } +, { "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758383 ] } } , { "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.758128 ] } } , { "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 ] } } @@ -3833,14 +3823,14 @@ , { "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 ] } } @@ -3849,14 +3839,14 @@ , { "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": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758383 ] } } -, { "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 ] } } @@ -3865,14 +3855,14 @@ , { "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.754667 ] } } , +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.754701 ] } } +, { "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757636 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755499 ] } } , { "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 ] } } , { "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760452 ] } } @@ -3881,14 +3871,14 @@ , { "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } , +{ "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 & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } -, { "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 ] } } @@ -3897,12 +3887,12 @@ , { "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 & 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": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743588 ] } } @@ -3913,12 +3903,12 @@ , { "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 ] } } @@ -3929,12 +3919,12 @@ , { "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 & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.739380 ] } } -, { "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.739719 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.737055 ] } } @@ -3945,12 +3935,12 @@ , { "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": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752479 ] } } -, { "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , { "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } @@ -3961,9 +3951,9 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.746235 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420290, 37.745081 ] } } +{ "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 ] } } , @@ -3977,9 +3967,9 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413766, 37.748084 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745319 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.748203 ] } } , @@ -3993,9 +3983,9 @@ , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.744369 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.741823 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741450 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.738922 ] } } +{ "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 ] } } , @@ -4007,12 +3997,12 @@ , { "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740059 ] } } , +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.739702 ] } } +, { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.733322 ] } } , -{ "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 ] } } , { "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429645, 37.731387 ] } } @@ -4023,12 +4013,12 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } , +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728468 ] } } +, { "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.728604 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.735426 ] } } -, { "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735070 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426083, 37.728553 ] } } @@ -4039,9 +4029,9 @@ , { "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723105 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720135 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720135 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } , @@ -4055,9 +4045,9 @@ , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725074 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724734 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725430 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725074 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426040, 37.720390 ] } } , @@ -4071,9 +4061,9 @@ , { "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416728, 37.734968 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733271 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.729130 ] } } +{ "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 ] } } , @@ -4087,9 +4077,9 @@ , { "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.734900 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725855 ] } } +{ "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 ] } } , @@ -4103,7 +4093,7 @@ , { "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.723241 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.722732 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } , @@ -4119,7 +4109,7 @@ , { "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406085, 37.751630 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752106 ] } } +{ "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 ] } } , @@ -4135,7 +4125,7 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738362 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.737938 ] } } +{ "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 ] } } , @@ -4151,7 +4141,7 @@ , { "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749018 ] } } , @@ -4167,7 +4157,7 @@ , { "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398231, 37.738209 ] } } +{ "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 ] } } , @@ -4197,7 +4187,7 @@ , { "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388403, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740110 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.737921 ] } } , @@ -4213,7 +4203,7 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.727993 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } , { "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.727433 ] } } , @@ -4229,7 +4219,7 @@ , { "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727637 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +{ "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 ] } } , @@ -4323,7 +4313,7 @@ , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.727026 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720339 ] } } +{ "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.386923, 37.755380 ] } } , @@ -4339,7 +4329,7 @@ , { "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 ] } } , @@ -4355,7 +4345,7 @@ , { "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738769 ] } } +{ "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 ] } } , @@ -4371,7 +4361,7 @@ , { "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383082, 37.733237 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385142, 37.730793 ] } } +{ "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 ] } } , @@ -4385,7 +4375,7 @@ , { "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 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380335, 37.730573 ] } } , @@ -4401,7 +4391,7 @@ , { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730250 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729130 ] } } , { "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725329 ] } } , @@ -4417,7 +4407,7 @@ , { "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 ] } } ] } @@ -4425,14 +4415,14 @@ { "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 Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } -, { "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775142 ] } } , { "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , { "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778669 ] } } , +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } +, { "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784300 ] } } ] } ] } @@ -4515,7 +4505,7 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.790523 ] } } , @@ -4531,7 +4521,7 @@ , { "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +{ "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 ] } } , @@ -4547,7 +4537,7 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790438 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } , @@ -4563,7 +4553,7 @@ , { "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +{ "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 ] } } , @@ -4579,7 +4569,7 @@ , { "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803782 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +{ "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 ] } } , @@ -4593,10 +4583,10 @@ , { "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800103 ] } } -, { "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.799018 ] } } , +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800375 ] } } +, { "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.800375 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.798187 ] } } @@ -4609,10 +4599,10 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795390 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794644 ] } } -, { "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } , +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793626 ] } } +, { "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 ] } } @@ -4625,7 +4615,7 @@ , { "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 ] } } , { "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.790896 ] } } , @@ -4641,7 +4631,7 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.795983 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795254 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796204 ] } } , @@ -4655,10 +4645,10 @@ , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794576 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794440 ] } } -, { "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 ] } } @@ -4671,10 +4661,10 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808224 ] } } , -{ "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.406278, 37.806936 ] } } , +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806614 ] } } +, { "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.803494 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } @@ -4687,10 +4677,10 @@ , { "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 ] } } @@ -4703,10 +4693,10 @@ , { "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405655, 37.797051 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.805190 ] } } -, { "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 ] } } @@ -4719,10 +4709,10 @@ , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400720, 37.798543 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.796729 ] } } -, { "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796238 ] } } , +{ "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 ] } } @@ -4733,12 +4723,12 @@ , { "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.792507 ] } } -, { "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 ] } } @@ -4749,12 +4739,12 @@ , { "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } -, { "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407029, 37.789472 ] } } , +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792372 ] } } +, { "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.795729 ] } } @@ -4765,12 +4755,12 @@ , { "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.792931 ] } } , -{ "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.401085, 37.793304 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } , +{ "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 ] } } @@ -4779,12 +4769,12 @@ , { "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788607 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.792287 ] } } -, { "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790286 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } +, { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } @@ -4793,14 +4783,14 @@ , { "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.798967 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } -, { "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 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793525 ] } } @@ -4809,12 +4799,12 @@ , { "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.396386, 37.793185 ] } } -, { "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396171, 37.793474 ] } } , { "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 ] } } @@ -4825,12 +4815,12 @@ , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.792524 ] } } -, { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } , { "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } , +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793694 ] } } +, { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793457 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } @@ -4841,12 +4831,12 @@ , { "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } -, { "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 ] } } @@ -4857,12 +4847,12 @@ , { "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.394240, 37.789811 ] } } -, { "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": "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 ] } } @@ -4871,14 +4861,14 @@ , { "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 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.789675 ] } } , { "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 ] } } @@ -4887,14 +4877,14 @@ , { "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 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369521, 37.818497 ] } } , +{ "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 ] } } @@ -4903,14 +4893,14 @@ , { "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 ] } } , { "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363384, 37.810377 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +, { "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 ] } } @@ -4919,22 +4909,20 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } , -{ "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": "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 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +, { "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } , { "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } -, { "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } diff --git a/tests/muni/out/-Z11_-z13_-M10000_-pd.json b/tests/muni/out/-Z11_-z13_-M10000_-pd.json index 1013c0d5c..bbe5db31b 100644 --- a/tests/muni/out/-Z11_-z13_-M10000_-pd.json +++ b/tests/muni/out/-Z11_-z13_-M10000_-pd.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M10000_-pd.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":7695,\"dropped_as_needed\":86,\"tile_size_desired\":10857},{\"dropped_by_rate\":4113,\"dropped_as_needed\":85,\"tile_size_desired\":10700},{}]", +"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},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -207,7 +207,7 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801002 ] } } , -{ "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.456789, 37.803918 ] } } , { "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803749 ] } } , @@ -221,7 +221,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800324 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } , @@ -235,7 +235,7 @@ , { "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 ] } } , @@ -249,7 +249,7 @@ , { "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795848 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792728 ] } } , { "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } , @@ -263,7 +263,7 @@ , { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504210, 37.780993 ] } } +{ "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 ] } } , @@ -277,7 +277,7 @@ , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760503 ] } } +{ "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 ] } } , @@ -289,10 +289,10 @@ , { "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779568 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } -, { "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 ] } } @@ -303,10 +303,10 @@ , { "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.784079 ] } } -, { "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": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782214 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484469, 37.778042 ] } } @@ -317,10 +317,10 @@ , { "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 ] } } @@ -331,10 +331,10 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765117 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480350, 37.765185 ] } } -, { "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.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 ] } } @@ -345,10 +345,10 @@ , { "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 ] } } @@ -359,10 +359,10 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } -, { "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.742010 ] } } , +{ "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 ] } } @@ -373,10 +373,10 @@ , { "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 ] } } @@ -385,12 +385,12 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } -, { "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 ] } } @@ -399,12 +399,12 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } -, { "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": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727111 ] } } +, { "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725956 ] } } @@ -413,12 +413,12 @@ , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } -, { "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780518 ] } } , +{ "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 ] } } @@ -427,12 +427,12 @@ , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773055 ] } } -, { "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } , +{ "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 ] } } @@ -441,12 +441,12 @@ , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } -, { "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781061 ] } } , { "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 ] } } @@ -455,116 +455,114 @@ , { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765660 ] } } -, { "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765999 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763896 ] } } +, { "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761928 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759112 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758196 ] } } -, { "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } , { "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": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } -, { "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 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782960 ] } } -, { "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": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } -, { "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777804 ] } } , { "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 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765558 ] } } , +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } +, { "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.770206 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } -, { "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } , { "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760910 ] } } , +{ "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 ] } } @@ -573,9 +571,9 @@ , { "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.769120 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } , { "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.762641 ] } } , @@ -585,12 +583,12 @@ , { "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.434816, 37.760842 ] } } +, { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , { "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,12 +597,12 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } , +{ "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": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740992 ] } } -, { "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.740856 ] } } @@ -613,12 +611,12 @@ , { "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": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745302 ] } } -, { "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 ] } } @@ -627,12 +625,12 @@ , { "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": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731625 ] } } -, { "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 ] } } @@ -641,12 +639,12 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , +{ "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.475286, 37.721102 ] } } , { "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } -, { "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719575 ] } } @@ -655,9 +653,9 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } , @@ -669,9 +667,9 @@ , { "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445760, 37.750392 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445760, 37.750392 ] } } , { "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } , @@ -683,9 +681,9 @@ , { "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738175 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , { "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } , @@ -697,9 +695,9 @@ , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.751274 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749611 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744691 ] } } +{ "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 ] } } , @@ -711,9 +709,9 @@ , { "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , { "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.728502 ] } } , @@ -725,9 +723,9 @@ , { "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721034 ] } } +{ "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 ] } } , @@ -739,7 +737,7 @@ , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722800 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } , @@ -753,7 +751,7 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } +{ "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 ] } } , @@ -767,7 +765,7 @@ , { "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } +{ "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 ] } } , @@ -781,7 +779,7 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800459 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } , @@ -795,7 +793,7 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793813 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } +{ "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 ] } } , @@ -809,7 +807,7 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } +{ "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 ] } } , @@ -823,7 +821,7 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795407 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792863 ] } } , @@ -933,7 +931,7 @@ , { "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373919, 37.823514 ] } } +{ "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 ] } } , @@ -947,7 +945,7 @@ , { "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 ] } } , @@ -961,7 +959,7 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , @@ -975,7 +973,7 @@ , { "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 ] } } , @@ -989,7 +987,7 @@ , { "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778686 ] } } , @@ -1003,8 +1001,6 @@ , { "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774209 ] } } -, { "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 ] } } @@ -1015,10 +1011,10 @@ , { "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } -, { "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.428894, 37.767288 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } , { "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764710 ] } } @@ -1029,10 +1025,10 @@ , { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } -, { "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 ] } } @@ -1043,10 +1039,10 @@ , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } -, { "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } , +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } +, { "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 ] } } @@ -1057,10 +1053,10 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } -, { "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785368 ] } } , +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +, { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } , { "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784690 ] } } @@ -1069,10 +1065,10 @@ , { "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 ] } } @@ -1083,10 +1079,10 @@ , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } -, { "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 ] } } @@ -1097,10 +1093,10 @@ , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } -, { "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 ] } } @@ -1109,12 +1105,12 @@ , { "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } -, { "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,12 +1119,12 @@ , { "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764914 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766237 ] } } -, { "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } , { "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 ] } } @@ -1137,12 +1133,12 @@ , { "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 ] } } @@ -1151,12 +1147,12 @@ , { "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763353 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } -, { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395978, 37.758400 ] } } , { "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 ] } } @@ -1165,12 +1161,12 @@ , { "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755685 ] } } -, { "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } , { "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 ] } } @@ -1179,12 +1175,12 @@ , { "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736343 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742010 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.740992 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } , +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739397 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } , { "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.752055 ] } } @@ -1193,102 +1189,100 @@ , { "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 ] } } , +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +, { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } , { "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 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728604 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.728468 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723105 ] } } , +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } +, { "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } , { "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": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } -, { "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": "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 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739125 ] } } , +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752360 ] } } +, { "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.752360 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749849 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745981 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } -, { "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,12 +1291,12 @@ , { "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727993 ] } } , +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734781 ] } } +, { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , { "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726126 ] } } -, { "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 ] } } @@ -1311,12 +1305,12 @@ , { "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +, { "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.721442 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } -, { "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734781 ] } } @@ -1325,12 +1319,12 @@ , { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } , +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +, { "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729215 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390399, 37.728061 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.725312 ] } } -, { "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 ] } } @@ -1339,12 +1333,12 @@ , { "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 & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } -, { "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 ] } } @@ -1353,12 +1347,12 @@ , { "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 ] } } @@ -1367,12 +1361,12 @@ , { "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 ] } } @@ -1381,9 +1375,9 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +{ "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 ] } } , @@ -1397,6 +1391,8 @@ { "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 ] } } ] } ] } @@ -1703,7 +1699,7 @@ , { "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } , { "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781790 ] } } , @@ -1719,7 +1715,7 @@ , { "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 ] } } , @@ -1735,7 +1731,7 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494576, 37.775888 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776024 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496336, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772089 ] } } , @@ -1751,7 +1747,7 @@ , { "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 ] } } , { "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.783944 ] } } , @@ -1767,7 +1763,7 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482688, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478440, 37.784232 ] } } +{ "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 ] } } , @@ -1781,10 +1777,10 @@ , { "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 ] } } @@ -1797,10 +1793,10 @@ , { "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 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495649, 37.760758 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495520, 37.758892 ] } } @@ -1813,7 +1809,7 @@ , { "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 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } , @@ -1829,7 +1825,7 @@ , { "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480371, 37.765185 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765372 ] } } , @@ -1843,10 +1839,10 @@ , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.761453 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761572 ] } } -, { "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481101, 37.757874 ] } } , +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } +, { "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 ] } } @@ -1859,10 +1855,10 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761572 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.757891 ] } } -, { "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.756008 ] } } , +{ "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 ] } } @@ -1875,10 +1871,10 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753123 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749323 ] } } -, { "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 & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504961, 37.745590 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504790, 37.745421 ] } } @@ -1891,10 +1887,10 @@ , { "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 ] } } @@ -1907,10 +1903,10 @@ , { "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 ] } } @@ -1921,12 +1917,12 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495005, 37.751800 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749798 ] } } -, { "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 ] } } @@ -1937,12 +1933,12 @@ , { "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 ] } } @@ -1953,12 +1949,12 @@ , { "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 ] } } @@ -1969,12 +1965,12 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748712 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746473 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742672 ] } } , +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742774 ] } } +, { "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 ] } } @@ -1983,14 +1979,14 @@ , { "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 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493675, 37.733356 ] } } , +{ "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 ] } } @@ -1999,12 +1995,12 @@ , { "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 ] } } , { "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.728774 ] } } @@ -2015,12 +2011,12 @@ , { "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 ] } } @@ -2031,12 +2027,12 @@ , { "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": "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 ] } } @@ -2047,12 +2043,12 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470586, 37.780840 ] } } -, { "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468956, 37.784554 ] } } , { "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 ] } } @@ -2061,14 +2057,14 @@ , { "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 ] } } @@ -2077,14 +2073,14 @@ , { "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469814, 37.773174 ] } } -, { "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.775023 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773479 ] } } , { "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 ] } } @@ -2093,14 +2089,14 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.781128 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780874 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461145, 37.781044 ] } } , { "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786029 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.785589 ] } } , +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } +, { "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 ] } } @@ -2109,22 +2105,20 @@ , { "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.781417 ] } } -, { "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781078 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781518 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.777279 ] } } , +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776973 ] } } +, { "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775447 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461746, 37.777397 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.773734 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } -, { "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777075 ] } } @@ -2133,14 +2127,14 @@ , { "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } , +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.774599 ] } } +, { "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 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765558 ] } } -, { "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765643 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770426 ] } } @@ -2149,14 +2143,14 @@ , { "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.766016 ] } } , +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765847 ] } } +, { "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 ] } } @@ -2165,14 +2159,14 @@ , { "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 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473204, 37.754243 ] } } , { "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 ] } } @@ -2181,28 +2175,28 @@ , { "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 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461874, 37.766050 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462840, 37.762386 ] } } -, { "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": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766084 ] } } -, { "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } , { "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.758417 ] } } @@ -2211,14 +2205,14 @@ , { "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": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } -, { "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450244, 37.786708 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } @@ -2227,14 +2221,14 @@ , { "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 ] } } @@ -2243,14 +2237,14 @@ , { "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782672 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782977 ] } } +, { "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.777753 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449644, 37.778347 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.775413 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453120, 37.774904 ] } } -, { "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774022 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } @@ -2259,14 +2253,14 @@ , { "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": "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.443185, 37.777262 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.776939 ] } } @@ -2275,12 +2269,12 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } , +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446511, 37.773920 ] } } +, { "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445610, 37.771953 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774192 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774429 ] } } -, { "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 ] } } @@ -2291,12 +2285,12 @@ , { "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": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } -, { "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } @@ -2307,12 +2301,12 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } , +{ "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": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.781502 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779280 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777313 ] } } @@ -2323,12 +2317,12 @@ , { "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": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.774718 ] } } -, { "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773174 ] } } @@ -2339,9 +2333,9 @@ , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775413 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } +{ "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 ] } } , @@ -2355,9 +2349,9 @@ , { "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769884 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450202, 37.766830 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764591 ] } } , @@ -2371,9 +2365,9 @@ , { "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769935 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769002 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.767254 ] } } +{ "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 ] } } , @@ -2385,12 +2379,12 @@ , { "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": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765813 ] } } -, { "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 ] } } @@ -2401,12 +2395,12 @@ , { "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.760910 ] } } , +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760927 ] } } +, { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446125, 37.758942 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758654 ] } } , -{ "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 ] } } @@ -2417,9 +2411,9 @@ , { "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.757789 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.756449 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758213 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } +{ "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 ] } } , @@ -2433,9 +2427,9 @@ , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.767611 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.768951 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.769392 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.767611 ] } } , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } , @@ -2445,9 +2439,9 @@ , { "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": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762454 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764490 ] } } +{ "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.432992, 37.762641 ] } } , @@ -2461,9 +2455,9 @@ , { "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.754040 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755804 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757399 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755804 ] } } , { "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435138, 37.760944 ] } } , @@ -2477,7 +2471,7 @@ , { "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.750799 ] } } +{ "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 ] } } , @@ -2493,7 +2487,7 @@ , { "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752716 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.749153 ] } } +{ "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 ] } } , @@ -2509,7 +2503,7 @@ , { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741518 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } +{ "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 ] } } , @@ -2525,7 +2519,7 @@ , { "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.465737, 37.740839 ] } } +{ "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 ] } } , @@ -2541,7 +2535,7 @@ , { "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.751495 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748271 ] } } +{ "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 ] } } , @@ -2569,7 +2563,7 @@ , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455480, 37.743113 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736733 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.741976 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.734713 ] } } , @@ -2585,7 +2579,7 @@ , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.734306 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.731625 ] } } +{ "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 ] } } , @@ -2601,7 +2595,7 @@ , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469471, 37.729928 ] } } +{ "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 ] } } , @@ -2695,7 +2689,7 @@ , { "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } , { "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746880 ] } } , @@ -2711,7 +2705,7 @@ , { "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.450609, 37.740195 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740178 ] } } , { "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450716, 37.738175 ] } } , @@ -2727,7 +2721,7 @@ , { "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752411 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442605, 37.749255 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.750969 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.752784 ] } } , @@ -2743,7 +2737,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.752072 ] } } +{ "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 ] } } , @@ -2757,7 +2751,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435868, 37.745641 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744674 ] } } , { "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.748068 ] } } , @@ -2773,7 +2767,7 @@ , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740195 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.738667 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740025 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } , @@ -2789,7 +2783,7 @@ , { "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731608 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.731608 ] } } , { "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , @@ -2805,7 +2799,7 @@ , { "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734561 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.731472 ] } } , { "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.726041 ] } } , @@ -2821,7 +2815,7 @@ , { "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 ] } } , @@ -2835,10 +2829,10 @@ , { "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 ] } } @@ -2851,10 +2845,10 @@ , { "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446554, 37.720610 ] } } -, { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.720457 ] } } , +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.722851 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722817 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.720271 ] } } @@ -2867,10 +2861,10 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731506 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.728994 ] } } -, { "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 ] } } @@ -2883,10 +2877,10 @@ , { "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433164, 37.729588 ] } } -, { "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": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441189, 37.727145 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441232, 37.723258 ] } } @@ -2899,10 +2893,10 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724650 ] } } -, { "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724718 ] } } , +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723903 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.726347 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.725515 ] } } @@ -2913,12 +2907,12 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } -, { "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": "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 ] } } @@ -2929,12 +2923,12 @@ , { "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767662 ] } } , -{ "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": "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 ] } } @@ -2945,10 +2939,10 @@ , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } -, { "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } , +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +, { "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } , { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } diff --git a/tests/muni/out/-Z11_-z13_-M5000_-as.json b/tests/muni/out/-Z11_-z13_-M5000_-as.json index ac0784288..5abc9c1fa 100644 --- a/tests/muni/out/-Z11_-z13_-M5000_-as.json +++ b/tests/muni/out/-Z11_-z13_-M5000_-as.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M5000_-as.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4080,\"dropped_as_needed\":482,\"tile_size_desired\":10857},{\"dropped_by_rate\":2974,\"dropped_as_needed\":1304,\"tile_size_desired\":10700},{\"dropped_as_needed\":3036,\"tile_size_desired\":9646}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4080,\"dropped_as_needed\":482,\"tile_size_desired\":10887},{\"dropped_by_rate\":2974,\"dropped_as_needed\":1302,\"tile_size_desired\":10721},{\"dropped_as_needed\":3042,\"tile_size_desired\":9664}]", "type": "overlay", "version": "2" }, "features": [ @@ -645,6 +645,8 @@ , { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719694 ] } } , +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719728 ] } } +, { "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719745 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } @@ -993,6 +995,8 @@ , { "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } , +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766084 ] } } +, { "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } @@ -1005,7 +1009,7 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.782231 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.784758 ] } } , @@ -2569,8 +2573,6 @@ , { "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479845, 37.782307 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479137, 37.782222 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479481, 37.780221 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477506, 37.782290 ] } } @@ -2815,7 +2817,7 @@ , { "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467378, 37.712514 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469460, 37.710358 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.469331, 37.710281 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714203 ] } } , @@ -3017,7 +3019,7 @@ , { "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466263, 37.741170 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465522, 37.741153 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465909, 37.740763 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469052, 37.738099 ] } } , @@ -3071,7 +3073,7 @@ , { "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453946, 37.736690 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474974, 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.475103, 37.732787 ] } } , @@ -3135,8 +3137,6 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457765, 37.732236 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732092 ] } } -, { "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.730691 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457529, 37.731107 ] } } @@ -3501,8 +3501,6 @@ , { "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468998, 37.782799 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468365, 37.782697 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780984 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782901 ] } } @@ -3559,7 +3557,7 @@ , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783859 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456328, 37.785970 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455212, 37.786250 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454751, 37.783961 ] } } , @@ -3985,7 +3983,7 @@ , { "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466477, 37.752886 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752776 ] } } , { "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455856, 37.753073 ] } } , @@ -4003,8 +4001,6 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431372, 37.776999 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430836, 37.775803 ] } } -, { "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774268 ] } } , { "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431276, 37.767534 ] } } @@ -4127,7 +4123,7 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800892 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799705 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436050, 37.799595 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437059, 37.796789 ] } } , @@ -4249,7 +4245,7 @@ , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417532, 37.712233 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.713396 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416052, 37.712021 ] } } , @@ -4497,7 +4493,7 @@ , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411224, 37.741450 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410666, 37.741510 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.741832 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414614, 37.738829 ] } } , @@ -4579,7 +4575,7 @@ , { "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415687, 37.734892 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732838 ] } } , { "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415258, 37.733271 ] } } , @@ -4947,8 +4943,6 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431372, 37.776999 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430836, 37.775803 ] } } -, { "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776057 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426952, 37.779187 ] } } @@ -5027,11 +5021,11 @@ , { "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413155, 37.784876 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412425, 37.783884 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410280, 37.787174 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786038 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411449, 37.785088 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784105 ] } } , @@ -5091,7 +5085,7 @@ , { "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.429162, 37.769502 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.769460 ] } } , { "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.767772 ] } } , @@ -5399,7 +5393,7 @@ , { "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402233, 37.759621 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758391 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401117, 37.760936 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401031, 37.759663 ] } } , @@ -5447,7 +5441,7 @@ , { "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389659, 37.762904 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388929, 37.762988 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388843, 37.762971 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.761326 ] } } , @@ -5533,7 +5527,7 @@ , { "type": "Feature", "properties": { "name": "Jefferson St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414120, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.806563 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413455, 37.806520 ] } } , @@ -5675,7 +5669,7 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417296, 37.790167 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416910, 37.788217 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.788429 ] } } , @@ -5711,8 +5705,6 @@ , { "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409164, 37.806097 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407211, 37.807182 ] } } -, { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806944 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405430, 37.806614 ] } } @@ -5777,7 +5769,7 @@ , { "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404411, 37.794474 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409292, 37.792210 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409142, 37.792304 ] } } , { "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407554, 37.792312 ] } } , @@ -5815,7 +5807,7 @@ , { "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399765, 37.791312 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400409, 37.790159 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401310, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398585, 37.798967 ] } } , diff --git a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json index e3e7d8af1..2b1934d9f 100644 --- a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_as_needed\":168,\"tile_size_desired\":39190},{\"dropped_as_needed\":184,\"tile_size_desired\":25154},{\"dropped_as_needed\":160,\"tiny_polygons\":1,\"tile_size_desired\":21201},{\"dropped_as_needed\":133,\"tile_size_desired\":10758},{\"dropped_as_needed\":58,\"tile_size_desired\":6601},{\"tiny_polygons\":2}]", +"strategies": "[{\"dropped_as_needed\":167,\"tile_size_desired\":39241},{\"dropped_as_needed\":184,\"tile_size_desired\":25163},{\"dropped_as_needed\":160,\"tiny_polygons\":1,\"tile_size_desired\":21214},{\"dropped_as_needed\":133,\"tile_size_desired\":10758},{\"dropped_as_needed\":58,\"tile_size_desired\":6601},{\"tiny_polygons\":2}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,19 +17,21 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.830078, 20.303418 ], [ -155.214844, 19.973349 ], [ -154.775391, 19.476950 ], [ -155.654297, 18.895893 ], [ -155.917969, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.830078, 19.973349 ], [ -155.830078, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.005859, 20.797201 ], [ -156.445312, 20.550509 ], [ -156.708984, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -156.796875, 21.043491 ], [ -157.324219, 21.125498 ], [ -157.236328, 21.207459 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -158.027344, 21.698265 ], [ -157.675781, 21.289374 ], [ -158.115234, 21.289374 ], [ -158.291016, 21.616579 ], [ -158.027344, 21.698265 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.345703, 22.187405 ], [ -159.345703, 21.943046 ], [ -159.433594, 21.861499 ], [ -159.785156, 22.105999 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -94.833984, 49.382373 ], [ -94.658203, 48.864715 ], [ -94.306641, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.791016, 48.283193 ], [ -89.560547, 47.989922 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.283193 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.619261 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.437857 ], [ -84.375000, 46.437857 ], [ -84.111328, 46.498392 ], [ -84.111328, 46.255847 ], [ -83.847656, 46.134170 ], [ -83.583984, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.583984, 45.828799 ], [ -82.529297, 45.336702 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.244141, 42.358544 ], [ -78.925781, 42.875964 ], [ -79.189453, 43.452919 ], [ -78.750000, 43.644026 ], [ -76.816406, 43.644026 ], [ -76.464844, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.367188, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.890008 ], [ -69.960938, 46.679594 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.159840 ], [ -68.203125, 47.338823 ], [ -67.763672, 47.040182 ], [ -67.763672, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.027344, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.488281, 41.836828 ], [ -70.048828, 41.771312 ], [ -70.224609, 42.163403 ], [ -69.873047, 41.902277 ], [ -69.960938, 41.640078 ], [ -72.861328, 41.244772 ], [ -73.740234, 40.913513 ], [ -72.246094, 41.112469 ], [ -71.982422, 40.913513 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.916016, 40.780541 ], [ -74.267578, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.707187 ], [ -74.882812, 38.959409 ], [ -74.970703, 39.164141 ], [ -75.498047, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.754083 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.025391, 37.230328 ], [ -75.761719, 37.926868 ], [ -76.201172, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.685510 ], [ -76.289062, 38.065392 ], [ -76.992188, 38.272689 ], [ -76.289062, 37.926868 ], [ -76.289062, 36.949892 ], [ -75.937500, 36.879621 ], [ -75.761719, 35.532226 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.046875, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.189453, 33.137551 ], [ -80.332031, 32.472695 ], [ -81.298828, 31.428663 ], [ -81.474609, 30.751278 ], [ -81.298828, 30.069094 ], [ -80.507812, 28.459033 ], [ -80.507812, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.799891 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.165173 ], [ -81.298828, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.880859, 27.916767 ], [ -82.617188, 28.536275 ], [ -82.968750, 29.075375 ], [ -83.671875, 29.916852 ], [ -84.111328, 30.069094 ], [ -85.078125, 29.611670 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.372875 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.372875 ], [ -89.560547, 30.145127 ], [ -89.384766, 29.916852 ], [ -89.472656, 29.458731 ], [ -89.208984, 29.305561 ], [ -89.384766, 29.152161 ], [ -89.736328, 29.305561 ], [ -90.175781, 29.152161 ], [ -90.878906, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.460938, 29.535230 ], [ -93.251953, 29.764377 ], [ -94.658203, 29.458731 ], [ -95.625000, 28.767659 ], [ -96.591797, 28.304381 ], [ -97.119141, 27.839076 ], [ -97.382812, 27.371767 ], [ -97.382812, 26.667096 ], [ -97.119141, 25.878994 ], [ -97.558594, 25.878994 ], [ -99.052734, 26.352498 ], [ -99.492188, 27.527758 ], [ -100.107422, 28.071980 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.764377 ], [ -102.480469, 29.764377 ], [ -103.095703, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.414062, 29.535230 ], [ -105.029297, 30.675715 ], [ -106.523438, 31.728167 ], [ -108.281250, 31.728167 ], [ -108.281250, 31.353637 ], [ -111.005859, 31.353637 ], [ -114.785156, 32.546813 ], [ -114.697266, 32.694866 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.388672, 33.724340 ], [ -118.476562, 34.016242 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.585938, 34.597042 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.519531, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.837891, 39.774769 ], [ -124.365234, 40.313043 ], [ -124.189453, 41.112469 ], [ -124.189453, 41.967659 ], [ -124.541016, 42.747012 ], [ -124.101562, 43.707594 ], [ -123.925781, 45.521744 ], [ -124.101562, 46.860191 ], [ -124.716797, 48.166085 ], [ -124.541016, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.338823 ], [ -122.871094, 48.980217 ], [ -95.185547, 48.980217 ], [ -95.185547, 49.382373 ], [ -94.833984, 49.382373 ] ] ], [ [ [ -156.621094, 71.357067 ], [ -155.039062, 71.159391 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.902268 ], [ -152.226562, 70.815812 ], [ -152.226562, 70.612614 ], [ -150.732422, 70.436799 ], [ -149.677734, 70.524897 ], [ -147.656250, 70.199994 ], [ -145.722656, 70.110485 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.140364 ], [ -142.031250, 69.839622 ], [ -140.976562, 69.718107 ], [ -140.976562, 60.326948 ], [ -140.009766, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.904646 ], [ -136.494141, 59.445075 ], [ -135.439453, 59.800634 ], [ -134.912109, 59.265881 ], [ -133.330078, 58.401712 ], [ -131.748047, 56.559482 ], [ -129.990234, 55.924586 ], [ -129.990234, 55.279115 ], [ -130.517578, 54.826008 ], [ -131.044922, 55.178868 ], [ -131.923828, 55.478853 ], [ -132.275391, 56.365250 ], [ -133.505859, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.493694 ], [ -139.833984, 59.534318 ], [ -142.558594, 60.064840 ], [ -143.964844, 60.020952 ], [ -145.898438, 60.457218 ], [ -147.128906, 60.887700 ], [ -148.183594, 60.673179 ], [ -148.007812, 59.977005 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.355596 ], [ -151.699219, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.716198 ], [ -150.380859, 61.015725 ], [ -150.644531, 61.270233 ], [ -151.875000, 60.716198 ], [ -152.578125, 60.064840 ], [ -153.984375, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.124320 ], [ -156.269531, 57.421294 ], [ -156.533203, 56.992883 ], [ -158.115234, 56.462490 ], [ -158.466797, 55.973798 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.627996 ], [ -163.037109, 54.673831 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.572062 ], [ -162.861328, 55.329144 ], [ -161.806641, 55.875311 ], [ -160.576172, 56.022948 ], [ -160.048828, 56.413901 ], [ -158.642578, 56.992883 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.562995 ], [ -157.587891, 58.309489 ], [ -157.060547, 58.904646 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.768200 ], [ -159.082031, 58.401712 ], [ -159.697266, 58.950008 ], [ -159.960938, 58.585436 ], [ -160.312500, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.265881 ], [ -161.894531, 59.623325 ], [ -162.509766, 59.977005 ], [ -163.828125, 59.800634 ], [ -164.619141, 60.283408 ], [ -165.322266, 60.500525 ], [ -165.322266, 61.058285 ], [ -166.113281, 61.480760 ], [ -165.761719, 62.062733 ], [ -164.882812, 62.633770 ], [ -164.531250, 63.154355 ], [ -163.740234, 63.233627 ], [ -163.037109, 63.074866 ], [ -162.246094, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.751953, 63.782486 ], [ -160.927734, 64.206377 ], [ -161.542969, 64.396938 ], [ -160.751953, 64.774125 ], [ -161.367188, 64.774125 ], [ -162.421875, 64.548440 ], [ -162.773438, 64.320872 ], [ -163.564453, 64.548440 ], [ -164.970703, 64.434892 ], [ -166.464844, 64.699105 ], [ -166.816406, 65.072130 ], [ -168.134766, 65.658275 ], [ -166.728516, 66.089364 ], [ -164.443359, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.722541 ], [ -163.740234, 67.101656 ], [ -164.443359, 67.609221 ], [ -165.410156, 68.040461 ], [ -166.728516, 68.366801 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -163.125000, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.894531, 70.318738 ], [ -160.927734, 70.436799 ], [ -159.082031, 70.902268 ], [ -158.115234, 70.815812 ], [ -156.621094, 71.357067 ] ] ], [ [ [ -153.193359, 57.984808 ], [ -152.578125, 57.891497 ], [ -152.138672, 57.610107 ], [ -153.017578, 57.136239 ], [ -153.984375, 56.752723 ], [ -154.511719, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.193359, 57.984808 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.430860 ], [ -168.662109, 63.312683 ], [ -168.750000, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.312683 ], [ -171.826172, 63.391522 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.370429 ], [ -165.673828, 60.283408 ], [ -165.585938, 59.888937 ], [ -166.201172, 59.756395 ], [ -167.431641, 60.196156 ], [ -166.464844, 60.370429 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.222656, 25.244696 ], [ -77.871094, 25.165173 ], [ -77.519531, 24.367114 ], [ -77.519531, 23.725012 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.398438, 24.607069 ], [ -78.222656, 25.244696 ] ] ], [ [ [ -77.783203, 27.059126 ], [ -76.992188, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.343750, 26.037042 ], [ -77.343750, 26.509905 ], [ -77.783203, 27.059126 ] ] ], [ [ [ -77.871094, 26.824071 ], [ -77.783203, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -77.871094, 26.824071 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.068359, 83.647837 ], [ -27.070312, 83.520162 ], [ -20.830078, 82.732092 ], [ -22.675781, 82.344100 ], [ -26.542969, 82.297121 ], [ -31.904297, 82.202302 ], [ -31.376953, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.873047, 81.786210 ], [ -22.939453, 82.094243 ], [ -22.060547, 81.735830 ], [ -23.203125, 81.147481 ], [ -20.654297, 81.518272 ], [ -15.732422, 81.910828 ], [ -12.744141, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.259766, 80.575346 ], [ -16.875000, 80.356995 ], [ -20.039062, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.896484, 79.400085 ], [ -19.687500, 78.750659 ], [ -19.687500, 77.636542 ], [ -18.457031, 76.980149 ], [ -20.039062, 76.940488 ], [ -21.708984, 76.618901 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.654297, 75.163300 ], [ -19.335938, 74.307353 ], [ -21.621094, 74.211983 ], [ -20.390625, 73.824820 ], [ -20.742188, 73.453473 ], [ -22.148438, 73.302624 ], [ -23.554688, 73.302624 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.181804 ], [ -24.257812, 72.607120 ], [ -24.785156, 72.342464 ], [ -23.466797, 72.073911 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.466207 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.324219, 70.140364 ], [ -25.048828, 69.256149 ], [ -27.773438, 68.463800 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.106102 ], [ -32.783203, 67.742759 ], [ -34.189453, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.001953, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.129784 ], [ -41.220703, 63.470145 ], [ -42.802734, 62.674143 ], [ -42.451172, 61.897578 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.020952 ], [ -46.230469, 60.844911 ], [ -48.251953, 60.844911 ], [ -49.218750, 61.396719 ], [ -49.921875, 62.390369 ], [ -51.591797, 63.626745 ], [ -52.119141, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.089364 ], [ -53.261719, 66.826520 ], [ -53.964844, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.720441 ], [ -51.064453, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.411242 ], [ -53.437500, 69.287257 ], [ -54.667969, 69.595890 ], [ -54.755859, 70.289117 ], [ -54.316406, 70.815812 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -53.964844, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.810547, 71.663663 ], [ -54.755859, 72.580829 ], [ -55.283203, 72.971189 ], [ -57.304688, 74.706450 ], [ -58.623047, 75.095633 ], [ -58.623047, 75.519151 ], [ -61.259766, 76.100796 ], [ -63.369141, 76.184995 ], [ -68.466797, 76.058508 ], [ -69.697266, 76.372619 ], [ -71.367188, 76.999935 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.370301 ], [ -71.015625, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.125000, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.302734, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.886056 ], [ -50.361328, 82.437205 ], [ -47.988281, 82.070028 ], [ -46.582031, 81.984696 ], [ -44.560547, 81.659685 ], [ -46.933594, 82.202302 ], [ -46.757812, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.583984, 83.549851 ], [ -35.068359, 83.647837 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 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.513260 ], [ -14.501953, 66.443107 ], [ -14.765625, 65.802776 ], [ -13.623047, 65.109148 ], [ -14.941406, 64.358931 ], [ -18.632812, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.396938 ], [ -23.994141, 64.886265 ], [ -22.148438, 65.072130 ], [ -22.236328, 65.366837 ], [ -24.345703, 65.622023 ], [ -23.642578, 66.266856 ], [ -22.148438, 66.407955 ], [ -20.566406, 65.730626 ], [ -19.072266, 66.266856 ], [ -17.841797, 65.982270 ], [ -16.171875, 66.513260 ] ] ] } } , { "type": "Feature", "properties": { "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": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.113281, 69.565226 ], [ 29.443359, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.773438, 70.170201 ], [ 26.191406, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.879358 ], [ 22.324219, 68.847665 ], [ 21.269531, 69.380313 ], [ 20.654297, 69.099940 ], [ 20.039062, 69.068563 ], [ 19.863281, 68.399180 ], [ 18.017578, 68.560384 ], [ 17.753906, 68.007571 ], [ 16.787109, 68.007571 ], [ 15.117188, 66.196009 ], [ 13.535156, 64.774125 ], [ 13.886719, 64.434892 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.052978 ], [ 11.953125, 63.114638 ], [ 11.953125, 61.814664 ], [ 12.656250, 61.312452 ], [ 12.304688, 60.108670 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.371094, 59.489726 ], [ 8.349609, 58.309489 ], [ 7.031250, 58.077876 ], [ 5.625000, 58.585436 ], [ 5.273438, 59.667741 ], [ 5.009766, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.546875, 64.472794 ], [ 12.392578, 65.874725 ], [ 14.765625, 67.809245 ], [ 19.160156, 69.809309 ], [ 21.357422, 70.259452 ], [ 23.027344, 70.199994 ], [ 24.521484, 71.016960 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.281250, 79.702907 ], [ 21.533203, 78.954560 ], [ 18.984375, 78.560488 ], [ 18.457031, 77.823323 ], [ 17.578125, 77.636542 ], [ 17.138672, 76.800739 ], [ 15.908203, 76.760541 ], [ 13.798828, 77.389504 ], [ 14.677734, 77.730282 ], [ 13.183594, 78.025574 ], [ 11.250000, 78.870048 ], [ 10.458984, 79.655668 ], [ 13.183594, 80.012423 ], [ 13.710938, 79.655668 ], [ 15.117188, 79.671438 ], [ 15.556641, 80.012423 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 22.939453, 80.661308 ], [ 25.488281, 80.401063 ], [ 27.421875, 80.058050 ], [ 25.927734, 79.512662 ], [ 23.027344, 79.400085 ], [ 20.039062, 79.560546 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.402344, 80.312728 ], [ 20.478516, 80.604086 ], [ 21.884766, 80.356995 ], [ 22.939453, 80.661308 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.291016, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.500000, 77.446940 ], [ 20.742188, 77.674122 ], [ 21.445312, 77.934055 ], [ 20.830078, 78.260332 ], [ 22.851562, 78.455425 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "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": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.029297, 51.124213 ], [ 15.468750, 50.792047 ], [ 16.259766, 50.680797 ], [ 16.171875, 50.401515 ], [ 16.699219, 50.233152 ], [ 16.875000, 50.457504 ], [ 17.578125, 50.345460 ], [ 17.666016, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.896484, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.193359, 49.267805 ], [ 18.105469, 49.037868 ], [ 17.929688, 48.922499 ], [ 17.578125, 48.806863 ], [ 17.138672, 48.806863 ], [ 16.962891, 48.574790 ], [ 16.523438, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.292969, 49.037868 ], [ 14.941406, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.623047, 48.864715 ], [ 12.480469, 49.553726 ], [ 12.216797, 50.289339 ], [ 13.007812, 50.457504 ], [ 13.359375, 50.736455 ], [ 14.062500, 50.903033 ], [ 14.326172, 51.124213 ], [ 14.589844, 51.013755 ], [ 15.029297, 51.124213 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.876953, 52.052490 ], [ 100.019531, 51.618017 ], [ 102.041016, 51.234407 ], [ 102.216797, 50.513427 ], [ 103.710938, 50.064192 ], [ 105.908203, 50.401515 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.781264 ], [ 108.457031, 49.267805 ], [ 109.423828, 49.267805 ], [ 110.654297, 49.152970 ], [ 111.621094, 49.382373 ], [ 112.939453, 49.553726 ], [ 114.345703, 50.233152 ], [ 114.960938, 50.120578 ], [ 115.488281, 49.781264 ], [ 116.718750, 49.894634 ], [ 115.488281, 48.107431 ], [ 115.751953, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.333984, 47.694974 ], [ 118.037109, 48.048710 ], [ 118.828125, 47.754098 ], [ 119.794922, 47.040182 ], [ 119.707031, 46.679594 ], [ 118.916016, 46.800059 ], [ 117.421875, 46.679594 ], [ 116.718750, 46.377254 ], [ 116.015625, 45.706179 ], [ 114.433594, 45.336702 ], [ 113.466797, 44.777936 ], [ 111.884766, 45.089036 ], [ 111.357422, 44.465151 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.389082 ], [ 110.390625, 42.875964 ], [ 109.248047, 42.488302 ], [ 107.753906, 42.488302 ], [ 106.171875, 42.163403 ], [ 104.941406, 41.574361 ], [ 104.501953, 41.902277 ], [ 103.271484, 41.902277 ], [ 101.865234, 42.488302 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.470703, 42.747012 ], [ 96.328125, 42.747012 ], [ 95.800781, 43.325178 ], [ 95.273438, 44.213710 ], [ 94.658203, 44.339565 ], [ 93.515625, 44.964798 ], [ 90.966797, 45.274886 ], [ 90.615234, 45.706179 ], [ 90.966797, 46.860191 ], [ 90.263672, 47.694974 ], [ 88.857422, 48.048710 ], [ 87.978516, 48.574790 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.792047 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.457504 ], [ 94.833984, 50.007739 ], [ 95.800781, 49.951220 ], [ 97.294922, 49.724479 ], [ 98.261719, 50.401515 ], [ 97.822266, 51.013755 ], [ 98.876953, 52.052490 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.632909 ], [ 69.609375, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.576172, -49.267805 ], [ 70.312500, -49.724479 ], [ 68.730469, -49.781264 ], [ 68.730469, -49.267805 ], [ 68.906250, -48.632909 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.914062, -8.233237 ], [ 127.353516, -8.407168 ], [ 127.001953, -8.667918 ], [ 125.068359, -9.362353 ], [ 124.980469, -8.928487 ], [ 125.068359, -8.667918 ], [ 126.914062, -8.233237 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.980469, -8.928487 ], [ 125.068359, -9.362353 ], [ 124.453125, -10.141932 ], [ 123.574219, -10.401378 ], [ 123.486328, -10.228437 ], [ 123.574219, -9.882275 ], [ 124.013672, -9.275622 ], [ 124.980469, -8.928487 ] ] ], [ [ [ 119.882812, -9.362353 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.322266, -10.228437 ], [ 119.003906, -9.535749 ], [ 119.882812, -9.362353 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.790990 ], [ 134.384766, -2.811371 ], [ 135.439453, -3.337954 ], [ 136.318359, -2.284551 ], [ 137.460938, -1.669686 ], [ 138.339844, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.635789 ], [ 141.064453, -9.102097 ], [ 140.185547, -8.320212 ], [ 139.130859, -8.059230 ], [ 138.867188, -8.407168 ], [ 137.636719, -8.407168 ], [ 138.076172, -7.623887 ], [ 138.691406, -7.362467 ], [ 138.427734, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.565474 ], [ 135.175781, -4.477856 ], [ 133.681641, -3.513421 ], [ 133.330078, -4.039618 ], [ 132.978516, -4.127285 ], [ 132.714844, -3.776559 ], [ 132.714844, -3.337954 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.275391, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.957031, -1.406109 ], [ 130.517578, -0.966751 ], [ 131.835938, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.861328, -8.059230 ], [ 118.300781, -8.320212 ], [ 118.916016, -8.320212 ], [ 119.091797, -8.667918 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.494105 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.783203, -8.667918 ], [ 121.289062, -8.928487 ], [ 119.882812, -8.841651 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.376953, -8.494105 ], [ 121.992188, -8.494105 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 106.083984, -5.878332 ], [ 107.226562, -5.965754 ], [ 108.457031, -6.402648 ], [ 108.632812, -6.751896 ], [ 110.566406, -6.839170 ], [ 110.742188, -6.489983 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.623887 ], [ 114.521484, -7.798079 ], [ 115.664062, -8.407168 ], [ 114.521484, -8.754795 ], [ 113.466797, -8.320212 ], [ 111.533203, -8.320212 ], [ 108.720703, -7.623887 ], [ 108.281250, -7.798079 ], [ 106.435547, -7.362467 ], [ 106.259766, -6.926427 ], [ 105.380859, -6.839170 ], [ 106.083984, -5.878332 ] ] ], [ [ [ 116.982422, 4.302591 ], [ 117.861328, 4.127285 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.878872 ], [ 117.773438, 0.790990 ], [ 117.509766, 0.087891 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.460181 ], [ 116.191406, -4.039618 ], [ 116.015625, -3.688855 ], [ 114.873047, -4.127285 ], [ 114.433594, -3.513421 ], [ 113.730469, -3.425692 ], [ 113.291016, -3.162456 ], [ 112.060547, -3.513421 ], [ 111.708984, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.599609, -1.318243 ], [ 109.072266, -0.439449 ], [ 108.984375, 0.439449 ], [ 109.072266, 1.318243 ], [ 109.687500, 2.021065 ], [ 109.863281, 1.318243 ], [ 110.478516, 0.790990 ], [ 111.181641, 0.966751 ], [ 111.796875, 0.878872 ], [ 112.412109, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.406109 ], [ 115.136719, 2.811371 ], [ 115.488281, 3.162456 ], [ 115.839844, 4.302591 ], [ 116.982422, 4.302591 ] ] ], [ [ [ 95.273438, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.689453, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.527336 ], [ 103.798828, 0.087891 ], [ 103.447266, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.372369 ], [ 105.644531, -2.460181 ], [ 106.083984, -3.074695 ], [ 105.820312, -4.302591 ], [ 105.820312, -5.878332 ], [ 104.677734, -5.878332 ], [ 103.886719, -5.003394 ], [ 102.568359, -4.214943 ], [ 101.425781, -2.811371 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.175781 ], [ 98.613281, 1.845384 ], [ 97.734375, 2.460181 ], [ 97.207031, 3.337954 ], [ 96.416016, 3.864255 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.441022 ] ] ], [ [ [ 134.472656, -5.441022 ], [ 134.736328, -5.703448 ], [ 134.736328, -6.227934 ], [ 134.208984, -6.926427 ], [ 134.121094, -6.140555 ], [ 134.472656, -5.441022 ] ] ], [ [ [ 125.068359, 1.669686 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 120.146484, 0.263671 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.966751 ], [ 122.431641, -1.493971 ], [ 121.464844, -1.933227 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.353521 ], [ 122.607422, -5.615986 ], [ 122.255859, -5.266008 ], [ 122.695312, -4.477856 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.640625, -4.214943 ], [ 120.937500, -3.601142 ], [ 120.937500, -2.635789 ], [ 120.322266, -2.899153 ], [ 120.410156, -5.528511 ], [ 119.794922, -5.703448 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.477856 ], [ 119.531250, -3.513421 ], [ 119.091797, -3.513421 ], [ 118.740234, -2.811371 ], [ 119.179688, -2.108899 ], [ 119.355469, -1.318243 ], [ 120.058594, 0.527336 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.958984, 0.878872 ], [ 124.101562, 0.878872 ], [ 125.068359, 1.669686 ] ] ], [ [ [ 127.968750, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.671875, 0.263671 ], [ 128.144531, 0.351560 ], [ 127.968750, -0.263671 ], [ 128.408203, -0.790990 ], [ 128.056641, -0.878872 ], [ 127.705078, -0.263671 ], [ 127.441406, 1.054628 ], [ 127.617188, 1.845384 ], [ 127.968750, 2.196727 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.429688, -3.074695 ], [ 130.869141, -3.864255 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.425692 ], [ 128.144531, -2.811371 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 127.001953, -3.162456 ], [ 127.265625, -3.425692 ], [ 126.914062, -3.776559 ], [ 126.210938, -3.601142 ], [ 125.947266, -3.162456 ], [ 127.001953, -3.162456 ] ] ] ] } } , { "type": "Feature", "properties": { "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 ] ] ] ] } } ] } 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 3f2377cd2..3c22d4fe2 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\":39190},{\"dropped_as_needed\":187,\"tile_size_desired\":25154},{\"dropped_as_needed\":190,\"tiny_polygons\":1,\"tile_size_desired\":21201},{\"dropped_as_needed\":181,\"tile_size_desired\":10758},{\"dropped_as_needed\":147,\"tile_size_desired\":6601},{\"tiny_polygons\":2}]", +"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}]", "type": "overlay", "version": "2" }, "features": [ @@ -23,23 +23,23 @@ , { "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": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.830078, 43.261206 ], [ 21.621094, 42.682435 ], [ 21.796875, 42.682435 ], [ 21.533203, 42.228517 ], [ 20.742188, 42.032974 ], [ 20.742188, 41.836828 ], [ 20.566406, 41.836828 ], [ 20.566406, 42.228517 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.811522 ], [ 20.478516, 42.875964 ], [ 20.654297, 43.197167 ], [ 20.830078, 43.261206 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 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": 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": "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": 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.851562, 11.178402 ], [ 22.939453, 10.746969 ], [ 23.554688, 10.055403 ], [ 23.378906, 9.275622 ], [ 23.466797, 8.928487 ], [ 25.136719, 7.798079 ], [ 25.136719, 7.536764 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.246094, 5.528511 ], [ 27.333984, 5.266008 ], [ 27.070312, 5.090944 ], [ 25.664062, 5.266008 ], [ 25.312500, 5.178482 ], [ 25.136719, 4.915833 ], [ 24.785156, 4.915833 ], [ 24.433594, 5.090944 ], [ 23.291016, 4.653080 ], [ 22.851562, 4.740675 ], [ 22.412109, 4.039618 ], [ 20.917969, 4.302591 ], [ 19.511719, 5.003394 ], [ 18.896484, 4.740675 ], [ 18.544922, 4.214943 ], [ 18.457031, 3.513421 ], [ 17.138672, 3.688855 ], [ 16.523438, 3.162456 ], [ 15.996094, 2.284551 ], [ 15.820312, 2.986927 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.501953, 4.740675 ], [ 14.589844, 5.003394 ], [ 14.501953, 5.441022 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.402648 ], [ 15.292969, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.710992 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.885147 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 20.039062, 9.015302 ], [ 21.005859, 9.449062 ], [ 21.708984, 10.574222 ], [ 22.236328, 11.005904 ], [ 22.851562, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "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": 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": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.156250, 9.795678 ], [ 80.859375, 9.275622 ], [ 81.826172, 7.536764 ], [ 81.650391, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 5.965754 ], [ 79.892578, 6.751896 ], [ 79.716797, 8.233237 ], [ 80.156250, 9.795678 ] ] ] } } +{ "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": "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.158203, 6.926427 ], [ 117.685547, 6.402648 ], [ 117.685547, 5.965754 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.003394 ], [ 118.476562, 5.003394 ], [ 118.652344, 4.477856 ], [ 117.861328, 4.127285 ], [ 116.982422, 4.302591 ], [ 115.839844, 4.302591 ], [ 115.488281, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.609375, 1.406109 ], [ 113.818359, 1.230374 ], [ 112.851562, 1.493971 ], [ 112.412109, 1.406109 ], [ 111.796875, 0.878872 ], [ 111.181641, 0.966751 ], [ 110.478516, 0.790990 ], [ 109.863281, 1.318243 ], [ 109.687500, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.357422, 2.723583 ], [ 113.027344, 3.074695 ], [ 114.169922, 4.565474 ], [ 114.697266, 4.039618 ], [ 114.873047, 4.390229 ], [ 115.312500, 4.302591 ], [ 115.488281, 5.441022 ], [ 116.191406, 6.140555 ], [ 116.718750, 6.926427 ], [ 117.158203, 6.926427 ] ] ], [ [ [ 100.283203, 6.664608 ], [ 101.074219, 6.227934 ], [ 101.162109, 5.703448 ], [ 101.777344, 5.790897 ], [ 102.128906, 6.227934 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.828260 ], [ 103.359375, 3.688855 ], [ 103.535156, 2.811371 ], [ 103.886719, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.238281, 1.318243 ], [ 103.535156, 1.230374 ], [ 101.425781, 2.723583 ], [ 101.250000, 3.250209 ], [ 100.722656, 3.951941 ], [ 100.546875, 4.740675 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.107422, 6.489983 ], [ 100.283203, 6.664608 ] ] ] ] } } +{ "type": "Feature", "properties": { "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": 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.783203, -9.188870 ], [ 33.750000, -9.449062 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.523088 ], [ 34.277344, -12.297068 ], [ 34.541016, -13.581921 ], [ 34.892578, -13.581921 ], [ 35.244141, -13.923404 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.130262 ], [ 35.068359, -16.804541 ], [ 34.365234, -16.214675 ], [ 34.277344, -15.453680 ], [ 34.541016, -15.029686 ], [ 34.453125, -14.604847 ], [ 34.101562, -14.349548 ], [ 33.750000, -14.434680 ], [ 32.695312, -13.752725 ], [ 32.958984, -12.811801 ], [ 33.310547, -12.468760 ], [ 33.134766, -11.609193 ], [ 33.486328, -10.487812 ], [ 33.222656, -9.709057 ], [ 32.783203, -9.188870 ] ] ] } } +{ "type": "Feature", "properties": { "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": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.279297, -10.228437 ], [ 162.158203, -10.487812 ], [ 162.421875, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.279297, -10.228437 ] ] ], [ [ [ 159.697266, -9.275622 ], [ 160.400391, -9.362353 ], [ 160.839844, -9.882275 ], [ 159.873047, -9.795678 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.275622 ] ] ], [ [ [ 160.927734, -8.320212 ], [ 161.279297, -9.102097 ], [ 161.718750, -9.622414 ], [ 161.542969, -9.795678 ], [ 160.751953, -8.928487 ], [ 160.576172, -8.320212 ], [ 160.927734, -8.320212 ] ] ], [ [ [ 158.378906, -7.362467 ], [ 159.609375, -8.059230 ], [ 159.960938, -8.581021 ], [ 158.203125, -7.449624 ], [ 158.378906, -7.362467 ] ] ], [ [ [ 156.533203, -6.577303 ], [ 157.500000, -7.362467 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.188101 ], [ 156.533203, -6.751896 ], [ 156.533203, -6.577303 ] ] ] ] } } +{ "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 ] ] ] ] } } ] } ] } , diff --git a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json index cc6fce76c..15b323623 100644 --- a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_as_needed\":174,\"tile_size_desired\":39190},{\"dropped_as_needed\":200,\"tile_size_desired\":25154},{\"dropped_as_needed\":187,\"tiny_polygons\":1,\"tile_size_desired\":21201},{\"dropped_as_needed\":154,\"tile_size_desired\":10758},{\"dropped_as_needed\":79,\"tile_size_desired\":6601},{\"tiny_polygons\":2}]", +"strategies": "[{\"dropped_as_needed\":174,\"tile_size_desired\":39241},{\"dropped_as_needed\":200,\"tile_size_desired\":25163},{\"dropped_as_needed\":187,\"tiny_polygons\":1,\"tile_size_desired\":21214},{\"dropped_as_needed\":154,\"tile_size_desired\":10758},{\"dropped_as_needed\":79,\"tile_size_desired\":6601},{\"tiny_polygons\":2}]", "type": "overlay", "version": "2" }, "features": [ 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 9feaab93e..5cb6606e9 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\":39190},{\"dropped_as_needed\":264,\"tiny_polygons\":2,\"tile_size_desired\":25154},{\"dropped_as_needed\":221,\"tiny_polygons\":2,\"tile_size_desired\":21201},{\"dropped_as_needed\":93,\"tile_size_desired\":10758},{\"dropped_as_needed\":9,\"tile_size_desired\":6601},{\"tiny_polygons\":2}]", +"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}]", "type": "overlay", "version": "2" }, "features": [ @@ -23,23 +23,23 @@ , { "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": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.830078, 43.261206 ], [ 21.621094, 42.682435 ], [ 21.796875, 42.682435 ], [ 21.533203, 42.228517 ], [ 20.742188, 42.032974 ], [ 20.742188, 41.836828 ], [ 20.566406, 41.836828 ], [ 20.566406, 42.228517 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.811522 ], [ 20.478516, 42.875964 ], [ 20.654297, 43.197167 ], [ 20.830078, 43.261206 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 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": 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": "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": 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.851562, 11.178402 ], [ 22.939453, 10.746969 ], [ 23.554688, 10.055403 ], [ 23.378906, 9.275622 ], [ 23.466797, 8.928487 ], [ 25.136719, 7.798079 ], [ 25.136719, 7.536764 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.246094, 5.528511 ], [ 27.333984, 5.266008 ], [ 27.070312, 5.090944 ], [ 25.664062, 5.266008 ], [ 25.312500, 5.178482 ], [ 25.136719, 4.915833 ], [ 24.785156, 4.915833 ], [ 24.433594, 5.090944 ], [ 23.291016, 4.653080 ], [ 22.851562, 4.740675 ], [ 22.412109, 4.039618 ], [ 20.917969, 4.302591 ], [ 19.511719, 5.003394 ], [ 18.896484, 4.740675 ], [ 18.544922, 4.214943 ], [ 18.457031, 3.513421 ], [ 17.138672, 3.688855 ], [ 16.523438, 3.162456 ], [ 15.996094, 2.284551 ], [ 15.820312, 2.986927 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.501953, 4.740675 ], [ 14.589844, 5.003394 ], [ 14.501953, 5.441022 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.402648 ], [ 15.292969, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.710992 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.885147 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 20.039062, 9.015302 ], [ 21.005859, 9.449062 ], [ 21.708984, 10.574222 ], [ 22.236328, 11.005904 ], [ 22.851562, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "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": 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": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.156250, 9.795678 ], [ 80.859375, 9.275622 ], [ 81.826172, 7.536764 ], [ 81.650391, 6.489983 ], [ 81.210938, 6.227934 ], [ 80.332031, 5.965754 ], [ 79.892578, 6.751896 ], [ 79.716797, 8.233237 ], [ 80.156250, 9.795678 ] ] ] } } +{ "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": "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.158203, 6.926427 ], [ 117.685547, 6.402648 ], [ 117.685547, 5.965754 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.003394 ], [ 118.476562, 5.003394 ], [ 118.652344, 4.477856 ], [ 117.861328, 4.127285 ], [ 116.982422, 4.302591 ], [ 115.839844, 4.302591 ], [ 115.488281, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.609375, 1.406109 ], [ 113.818359, 1.230374 ], [ 112.851562, 1.493971 ], [ 112.412109, 1.406109 ], [ 111.796875, 0.878872 ], [ 111.181641, 0.966751 ], [ 110.478516, 0.790990 ], [ 109.863281, 1.318243 ], [ 109.687500, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.357422, 2.723583 ], [ 113.027344, 3.074695 ], [ 114.169922, 4.565474 ], [ 114.697266, 4.039618 ], [ 114.873047, 4.390229 ], [ 115.312500, 4.302591 ], [ 115.488281, 5.441022 ], [ 116.191406, 6.140555 ], [ 116.718750, 6.926427 ], [ 117.158203, 6.926427 ] ] ], [ [ [ 100.283203, 6.664608 ], [ 101.074219, 6.227934 ], [ 101.162109, 5.703448 ], [ 101.777344, 5.790897 ], [ 102.128906, 6.227934 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.828260 ], [ 103.359375, 3.688855 ], [ 103.535156, 2.811371 ], [ 103.886719, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.238281, 1.318243 ], [ 103.535156, 1.230374 ], [ 101.425781, 2.723583 ], [ 101.250000, 3.250209 ], [ 100.722656, 3.951941 ], [ 100.546875, 4.740675 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.107422, 6.489983 ], [ 100.283203, 6.664608 ] ] ] ] } } +{ "type": "Feature", "properties": { "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": 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.783203, -9.188870 ], [ 33.750000, -9.449062 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.523088 ], [ 34.277344, -12.297068 ], [ 34.541016, -13.581921 ], [ 34.892578, -13.581921 ], [ 35.244141, -13.923404 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.130262 ], [ 35.068359, -16.804541 ], [ 34.365234, -16.214675 ], [ 34.277344, -15.453680 ], [ 34.541016, -15.029686 ], [ 34.453125, -14.604847 ], [ 34.101562, -14.349548 ], [ 33.750000, -14.434680 ], [ 32.695312, -13.752725 ], [ 32.958984, -12.811801 ], [ 33.310547, -12.468760 ], [ 33.134766, -11.609193 ], [ 33.486328, -10.487812 ], [ 33.222656, -9.709057 ], [ 32.783203, -9.188870 ] ] ] } } +{ "type": "Feature", "properties": { "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": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.279297, -10.228437 ], [ 162.158203, -10.487812 ], [ 162.421875, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.279297, -10.228437 ] ] ], [ [ [ 159.697266, -9.275622 ], [ 160.400391, -9.362353 ], [ 160.839844, -9.882275 ], [ 159.873047, -9.795678 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.275622 ] ] ], [ [ [ 160.927734, -8.320212 ], [ 161.279297, -9.102097 ], [ 161.718750, -9.622414 ], [ 161.542969, -9.795678 ], [ 160.751953, -8.928487 ], [ 160.576172, -8.320212 ], [ 160.927734, -8.320212 ] ] ], [ [ [ 158.378906, -7.362467 ], [ 159.609375, -8.059230 ], [ 159.960938, -8.581021 ], [ 158.203125, -7.449624 ], [ 158.378906, -7.362467 ] ] ], [ [ [ 156.533203, -6.577303 ], [ 157.500000, -7.362467 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.188101 ], [ 156.533203, -6.751896 ], [ 156.533203, -6.577303 ] ] ] ] } } +{ "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 ] ] ] ] } } ] } ] } , diff --git a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json index 58fd47bb9..5903177be 100644 --- a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json.check.mbtiles", -"strategies": "[{\"coalesced_as_needed\":528,\"detail_reduced\":2,\"tiny_polygons\":2,\"tile_size_desired\":39195},{\"coalesced_as_needed\":212,\"tile_size_desired\":25155},{\"coalesced_as_needed\":190,\"tiny_polygons\":1,\"tile_size_desired\":21206},{\"coalesced_as_needed\":159,\"tile_size_desired\":10751},{\"coalesced_as_needed\":51,\"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\":212,\"tile_size_desired\":25160},{\"coalesced_as_needed\":190,\"tiny_polygons\":1,\"tile_size_desired\":21223},{\"coalesced_as_needed\":159,\"tile_size_desired\":10749},{\"coalesced_as_needed\":51,\"tile_size_desired\":6591},{\"tiny_polygons\":1}]", "type": "overlay", "version": "2" }, "features": [ 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 cca118ad8..3cccc3d4e 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\":39195},{\"coalesced_as_needed\":217,\"tile_size_desired\":25155},{\"coalesced_as_needed\":219,\"tile_size_desired\":21206},{\"coalesced_as_needed\":226,\"tile_size_desired\":10751},{\"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\":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}]", "type": "overlay", "version": "2" }, "features": [ @@ -83,9 +83,9 @@ , { "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": [ [ [ [ -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.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 ], [ -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 ] ] ], [ [ [ -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 ] ] ], [ [ [ -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 ] ] ], [ [ [ -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 ] ] ], [ [ [ -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": [ [ [ [ -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": 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.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, 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": 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 ] ] ] ] } } ] } ] } , @@ -109,13 +109,13 @@ , { "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": [ [ [ [ -1.757812, 22.938160 ], [ 0.000000, 21.800308 ], [ 1.823730, 20.612220 ], [ 2.065430, 20.138470 ], [ 2.680664, 19.849394 ], [ 3.142090, 19.683970 ], [ 3.164062, 19.062118 ], [ 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, 22.938160 ] ] ], [ [ [ 12.370605, 56.108810 ], [ 12.700195, 55.603178 ], [ 12.084961, 54.800685 ], [ 11.052246, 55.366625 ], [ 10.898438, 55.776573 ], [ 12.370605, 56.108810 ] ] ], [ [ [ -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 ] ] ], [ [ [ 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": [ [ [ [ 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": 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": "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 ], [ 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.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 ] ] ], [ [ [ 42.780762, 37.387617 ], [ 43.945312, 37.247821 ], [ 44.296875, 37.002553 ], [ 44.780273, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.076660, 35.675147 ], [ 46.142578, 35.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 ], [ 36.694336, 36.261992 ], [ 36.738281, 36.809285 ], [ 37.067871, 36.615528 ], [ 38.166504, 36.897194 ], [ 38.693848, 36.703660 ], [ 39.528809, 36.721274 ], [ 40.671387, 37.090240 ], [ 41.220703, 37.072710 ], [ 42.341309, 37.230328 ], [ 42.780762, 37.387617 ] ] ], [ [ [ 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 ], [ 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.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": "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": 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": [ [ [ [ 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 ], [ 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 ], [ 57.106934, 41.327326 ], [ 56.931152, 41.820455 ], [ 57.788086, 42.163403 ], [ 58.623047, 42.747012 ], [ 59.985352, 42.228517 ], [ 60.095215, 41.426253 ], [ 60.468750, 41.211722 ], [ 61.545410, 41.261291 ], [ 61.875000, 41.079351 ], [ 62.380371, 40.044438 ], [ 63.522949, 39.368279 ], [ 64.182129, 38.891033 ], [ 65.214844, 38.393339 ], [ 66.555176, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.225586, 37.387617 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.300275 ], [ 64.753418, 37.107765 ], [ 64.555664, 36.315125 ], [ 63.984375, 36.013561 ], [ 63.193359, 35.853440 ], [ 62.995605, 35.406961 ], [ 62.226562, 35.263562 ], [ 61.215820, 35.657296 ], [ 61.127930, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.405074 ], [ 58.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 ] ] ], [ [ [ 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 ], [ 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 ], [ 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.121094, 39.419221 ], [ 44.428711, 38.272689 ], [ 44.230957, 37.978845 ], [ 44.780273, 37.177826 ], [ 44.296875, 37.002553 ], [ 43.945312, 37.247821 ], [ 42.780762, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.220703, 37.072710 ], [ 40.671387, 37.090240 ], [ 39.528809, 36.721274 ], [ 38.693848, 36.703660 ], [ 38.166504, 36.897194 ], [ 37.067871, 36.615528 ], [ 36.738281, 36.809285 ], [ 36.694336, 36.261992 ], [ 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 ] ] ], [ [ [ 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 ] ] ] ] } } +{ "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": 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": [ [ [ [ 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 ], [ 66.555176, 37.978845 ], [ 65.214844, 38.393339 ], [ 64.182129, 38.891033 ], [ 63.522949, 39.368279 ], [ 62.380371, 40.044438 ], [ 61.875000, 41.079351 ], [ 61.545410, 41.261291 ], [ 60.468750, 41.211722 ], [ 60.095215, 41.426253 ], [ 59.985352, 42.228517 ], [ 58.623047, 42.747012 ], [ 57.788086, 42.163403 ], [ 56.931152, 41.820455 ], [ 57.106934, 41.327326 ], [ 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 ] ] ], [ [ [ 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": 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 ] ] ] ] } } ] } ] } , @@ -255,9 +255,9 @@ , { "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": 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": [ [ [ [ -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": "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": 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 ] ] ] ] } } +{ "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 ] ] ] ] } } ] } ] } , @@ -305,9 +305,7 @@ , { "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": 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.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 ] ] ], [ [ [ 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": "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 ] ] ] ] } } ] } ] } , @@ -361,19 +359,19 @@ , { "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": 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 ], [ 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": 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": 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": "MultiPolygon", "coordinates": [ [ [ [ 9.645996, 2.284551 ], [ 11.282959, 2.262595 ], [ 11.282959, 1.054628 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ], [ [ [ 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": "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": 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": 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": "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 ], [ 29.959717, 4.171115 ], [ 29.718018, 4.598327 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.432617, 4.280680 ], [ 27.982178, 4.412137 ], [ 27.377930, 5.233187 ], [ 27.048340, 5.123772 ], [ 26.400146, 5.145657 ], [ 25.653076, 5.255068 ], [ 25.279541, 5.167541 ], [ 25.125732, 4.926779 ], [ 24.807129, 4.893941 ], [ 24.411621, 5.112830 ], [ 23.302002, 4.609278 ], [ 22.840576, 4.707828 ], [ 22.708740, 4.631179 ], [ 22.401123, 4.028659 ], [ 21.665039, 4.225900 ], [ 20.928955, 4.324501 ], [ 20.291748, 4.685930 ], [ 19.467773, 5.025283 ], [ 18.929443, 4.707828 ], [ 18.544922, 4.203986 ], [ 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": 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": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 25.653076, 5.255068 ], [ 26.400146, 5.145657 ], [ 27.048340, 5.123772 ], [ 27.377930, 5.233187 ], [ 27.982178, 4.412137 ], [ 28.432617, 4.280680 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.718018, 4.598327 ], [ 29.959717, 4.171115 ], [ 30.838623, 3.502455 ], [ 31.245117, 3.776559 ], [ 31.882324, 3.557283 ], [ 32.684326, 3.787522 ], [ 33.387451, 3.787522 ], [ 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.544922, 4.203986 ], [ 18.929443, 4.707828 ], [ 19.467773, 5.025283 ], [ 20.291748, 4.685930 ], [ 20.928955, 4.324501 ], [ 21.665039, 4.225900 ], [ 22.401123, 4.028659 ], [ 22.708740, 4.631179 ], [ 22.840576, 4.707828 ], [ 23.302002, 4.609278 ], [ 24.411621, 5.112830 ], [ 24.807129, 4.893941 ], [ 25.125732, 4.926779 ], [ 25.279541, 5.167541 ], [ 25.653076, 5.255068 ] ] ], [ [ [ 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": 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": 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.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 ] ] ], [ [ [ 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": 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": 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 ] ] ] ] } } ] } @@ -387,17 +385,17 @@ , { "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": 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.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": [ [ [ [ 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": "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": [ [ [ [ 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 ], [ 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": 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": 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": 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": 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 ], [ 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 ] ] ], [ [ [ 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 ], [ 26.608887, 41.557922 ], [ 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.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": 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": 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.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 ], [ 44.978027, 41.244772 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 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 ], [ 26.301270, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.608887, 41.557922 ], [ 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 ], [ 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 ] ] ] } } ] } ] } , @@ -445,9 +443,9 @@ , { "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": 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 ], [ 48.482666, 8.841651 ], [ 48.944092, 9.449062 ], [ 48.944092, 11.404649 ], [ 49.273682, 11.426187 ], [ 49.735107, 11.576907 ], [ 50.262451, 11.673755 ], [ 50.734863, 12.017830 ], [ 51.108398, 12.028576 ] ] ], [ [ [ 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 ] ] ], [ [ [ 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 ] ] ] ] } } +{ "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": 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": "MultiPolygon", "coordinates": [ [ [ [ 48.944092, 11.404649 ], [ 48.944092, 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.404649 ] ] ], [ [ [ 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": "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": "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 ] ] ] ] } } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json index b2b868b24..448ead1de 100644 --- a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json.check.mbtiles", -"strategies": "[{\"coalesced_as_needed\":1271,\"tiny_polygons\":5,\"tile_size_desired\":39195},{\"coalesced_as_needed\":1189,\"tile_size_desired\":25155},{\"coalesced_as_needed\":727,\"tiny_polygons\":1,\"tile_size_desired\":21206},{\"coalesced_as_needed\":179,\"tile_size_desired\":10751},{\"coalesced_as_needed\":73,\"tile_size_desired\":6591},{\"tiny_polygons\":1}]", +"strategies": "[{\"coalesced_as_needed\":1271,\"tiny_polygons\":5,\"tile_size_desired\":39242},{\"coalesced_as_needed\":1189,\"tile_size_desired\":25160},{\"coalesced_as_needed\":727,\"tiny_polygons\":1,\"tile_size_desired\":21223},{\"coalesced_as_needed\":179,\"tile_size_desired\":10749},{\"coalesced_as_needed\":73,\"tile_size_desired\":6591},{\"tiny_polygons\":1}]", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json index efbc99bfd..2bcd7e240 100644 --- a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_as_needed\":174,\"tile_size_desired\":39195},{\"dropped_as_needed\":202,\"tile_size_desired\":25155},{\"dropped_as_needed\":190,\"tile_size_desired\":21206},{\"dropped_as_needed\":155,\"tile_size_desired\":10751},{\"dropped_as_needed\":78,\"tile_size_desired\":6591},{\"tiny_polygons\":1}]", +"strategies": "[{\"dropped_as_needed\":174,\"tile_size_desired\":39242},{\"dropped_as_needed\":202,\"tile_size_desired\":25160},{\"dropped_as_needed\":190,\"tile_size_desired\":21223},{\"dropped_as_needed\":155,\"tile_size_desired\":10749},{\"dropped_as_needed\":78,\"tile_size_desired\":6591},{\"tiny_polygons\":1}]", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-M500_--drop-smallest-as-needed.json b/tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-M500_--drop-smallest-as-needed.json index 084ee72e8..b2e53e24f 100644 --- a/tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-M500_--drop-smallest-as-needed.json +++ b/tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-M500_--drop-smallest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_1_states_provinces_lines/out/-z5_-M500_--drop-smallest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_as_needed\":92,\"tile_size_desired\":1377},{\"dropped_as_needed\":96,\"tile_size_desired\":1738},{\"dropped_as_needed\":115,\"tile_size_desired\":1303},{\"dropped_as_needed\":127,\"tile_size_desired\":1154},{\"dropped_as_needed\":105,\"tile_size_desired\":1228},{\"dropped_as_needed\":106,\"tile_size_desired\":1077}]", +"strategies": "[{\"dropped_as_needed\":92,\"tile_size_desired\":1385},{\"dropped_as_needed\":96,\"tile_size_desired\":1739},{\"dropped_as_needed\":115,\"tile_size_desired\":1304},{\"dropped_as_needed\":127,\"tile_size_desired\":1154},{\"dropped_as_needed\":105,\"tile_size_desired\":1228},{\"dropped_as_needed\":106,\"tile_size_desired\":1077}]", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_populated_places/out/-z0_-M10000_--drop-densest-as-needed_--extend-zooms-if-still-dropping-maximum_2.json b/tests/ne_110m_populated_places/out/-z0_-M10000_--drop-densest-as-needed_--extend-zooms-if-still-dropping-maximum_2.json index 67744c62a..2bacb7f9a 100644 --- a/tests/ne_110m_populated_places/out/-z0_-M10000_--drop-densest-as-needed_--extend-zooms-if-still-dropping-maximum_2.json +++ b/tests/ne_110m_populated_places/out/-z0_-M10000_--drop-densest-as-needed_--extend-zooms-if-still-dropping-maximum_2.json @@ -9,7 +9,7 @@ "maxzoom": "2", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-z0_-M10000_--drop-densest-as-needed_--extend-zooms-if-still-dropping-maximum_2.json.check.mbtiles", -"strategies": "[{\"dropped_as_needed\":219,\"tile_size_desired\":74691},{\"dropped_as_needed\":207,\"tile_size_desired\":44398},{\"dropped_as_needed\":181,\"tile_size_desired\":35126}]", +"strategies": "[{\"dropped_as_needed\":219,\"tile_size_desired\":74734},{\"dropped_as_needed\":207,\"tile_size_desired\":44415},{\"dropped_as_needed\":181,\"tile_size_desired\":35130}]", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_populated_places/out/-z1_-M10000_--coalesce-smallest-as-needed.json b/tests/ne_110m_populated_places/out/-z1_-M10000_--coalesce-smallest-as-needed.json index 8bd312f24..da1b80d93 100644 --- a/tests/ne_110m_populated_places/out/-z1_-M10000_--coalesce-smallest-as-needed.json +++ b/tests/ne_110m_populated_places/out/-z1_-M10000_--coalesce-smallest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "1", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-z1_-M10000_--coalesce-smallest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":145,\"coalesced_as_needed\":74,\"tile_size_desired\":32932},{\"coalesced_as_needed\":226,\"tile_size_desired\":44398}]", +"strategies": "[{\"dropped_by_rate\":145,\"coalesced_as_needed\":74,\"tile_size_desired\":32942},{\"coalesced_as_needed\":226,\"tile_size_desired\":44415}]", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_populated_places/out/-z1_-M10000_--drop-smallest-as-needed.json b/tests/ne_110m_populated_places/out/-z1_-M10000_--drop-smallest-as-needed.json index a8ba0ea80..2e9620e7f 100644 --- a/tests/ne_110m_populated_places/out/-z1_-M10000_--drop-smallest-as-needed.json +++ b/tests/ne_110m_populated_places/out/-z1_-M10000_--drop-smallest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "1", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-z1_-M10000_--drop-smallest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":145,\"dropped_as_needed\":75,\"tile_size_desired\":32932},{\"dropped_as_needed\":204,\"tile_size_desired\":44398}]", +"strategies": "[{\"dropped_by_rate\":145,\"dropped_as_needed\":75,\"tile_size_desired\":32942},{\"dropped_as_needed\":204,\"tile_size_desired\":44415}]", "type": "overlay", "version": "2" }, "features": [ diff --git a/version.hpp b/version.hpp index 2e9ecb852..802557df1 100644 --- a/version.hpp +++ b/version.hpp @@ -1,6 +1,6 @@ #ifndef VERSION_HPP #define VERSION_HPP -#define VERSION "v2.39.0" +#define VERSION "v2.40.0" #endif